2019-10-29 14:57:13 +01:00
|
|
|
<?php
|
|
|
|
//Template dashboard
|
|
|
|
|
|
|
|
$this->render('incs/head', ['title' => 'Scheduleds - Show All'])
|
|
|
|
?>
|
|
|
|
<div id="wrapper">
|
|
|
|
<?php
|
|
|
|
$this->render('incs/nav', ['page' => 'scheduleds'])
|
|
|
|
?>
|
|
|
|
<div id="page-wrapper">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<!-- Page Heading -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<h1 class="page-header">
|
|
|
|
Dashboard <small>Scheduleds</small>
|
|
|
|
</h1>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li>
|
2019-11-10 00:27:42 +01:00
|
|
|
<i class="fa fa-dashboard"></i> <a href="<?php echo \descartes\Router::url('Dashboard', 'show'); ?>">Dashboard</a>
|
2019-10-29 14:57:13 +01:00
|
|
|
</li>
|
|
|
|
<li class="active">
|
2019-12-20 18:51:13 +01:00
|
|
|
<i class="fa fa-send"></i> Scheduleds
|
2019-10-29 14:57:13 +01:00
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- /.row -->
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
2019-12-20 18:51:13 +01:00
|
|
|
<h3 class="panel-title"><i class="fa fa-send fa-fw"></i> Liste des SMS à envoyer</h3>
|
2019-10-29 14:57:13 +01:00
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<form method="GET">
|
2020-09-23 03:02:13 +02:00
|
|
|
<div class="table-scheduleds">
|
|
|
|
<table class="table table-bordered table-hover table-striped datatable" id="table-scheduleds">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Date</th>
|
|
|
|
<th>Contenu</th>
|
2021-06-29 20:05:56 +02:00
|
|
|
<th class="checkcolumn"><input type="checkbox" id="check-all"/></th>
|
2020-09-23 03:02:13 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2019-10-29 14:57:13 +01:00
|
|
|
<div>
|
|
|
|
<div class="col-xs-6 no-padding">
|
2019-12-20 18:51:13 +01:00
|
|
|
<a class="btn btn-success" href="<?php echo \descartes\Router::url('Scheduled', 'add'); ?>"><span class="fa fa-plus"></span> Créer un nouveau SMS</a>
|
2019-10-29 14:57:13 +01:00
|
|
|
</div>
|
|
|
|
<div class="text-right col-xs-6 no-padding">
|
|
|
|
<strong>Action pour la séléction :</strong>
|
2019-11-07 17:52:33 +01:00
|
|
|
<button class="btn btn-default" type="submit" formaction="<?php echo \descartes\Router::url('Scheduled', 'edit'); ?>"><span class="fa fa-edit"></span> Modifier</button>
|
2019-11-28 19:41:10 +01:00
|
|
|
<button class="btn btn-default btn-confirm" type="submit" formaction="<?php echo \descartes\Router::url('Scheduled', 'delete', ['csrf' => $_SESSION['csrf']]); ?>"><span class="fa fa-trash-o"></span> Supprimer</button>
|
2019-10-29 14:57:13 +01:00
|
|
|
</div>
|
2020-09-23 03:02:13 +02:00
|
|
|
</div>
|
2019-10-29 14:57:13 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
2020-09-23 03:02:13 +02:00
|
|
|
jQuery(document).ready(function ()
|
|
|
|
{
|
|
|
|
jQuery('.datatable').DataTable({
|
|
|
|
"pageLength": 25,
|
2021-04-23 22:56:27 +02:00
|
|
|
"lengthMenu": [[25, 50, 100, 1000, 10000, -1], [25, 50, 100, 1000, 10000, "All"]],
|
2020-09-23 03:02:13 +02:00
|
|
|
"language": {
|
|
|
|
"url": HTTP_PWD + "/assets/js/datatables/french.json",
|
|
|
|
},
|
|
|
|
"columnDefs": [{
|
|
|
|
'targets': 'checkcolumn',
|
|
|
|
'orderable': false,
|
|
|
|
}],
|
|
|
|
|
|
|
|
"ajax": {
|
|
|
|
'url': '<?php echo \descartes\Router::url('Scheduled', 'list_json'); ?>',
|
|
|
|
'dataSrc': 'data',
|
|
|
|
},
|
|
|
|
"columns" : [
|
|
|
|
{data: 'at', render: jQuery.fn.dataTable.render.text()},
|
2021-03-21 18:29:23 +01:00
|
|
|
{
|
|
|
|
data: 'text',
|
|
|
|
render: function (data, type, row, meta) {
|
|
|
|
if (row.mms == 1) {
|
|
|
|
var medias = [];
|
|
|
|
for (i = 0; i < row.medias.length; i++) {
|
2021-03-26 23:32:29 +01:00
|
|
|
medias.push('<a href="' + HTTP_PWD + '/data/public/' + jQuery.fn.dataTable.render.text().display(row.medias[i].path) + '" target="_blank">Fichier ' + (i + 1) + '</a>');
|
2021-03-21 18:29:23 +01:00
|
|
|
}
|
|
|
|
html = data + '<br/>' + medias.join(' - ');
|
|
|
|
return html;
|
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
},
|
|
|
|
},
|
2020-09-23 03:02:13 +02:00
|
|
|
{
|
|
|
|
data: 'id',
|
|
|
|
render: function (data, type, row, meta) {
|
|
|
|
return '<input name="ids[]" type="checkbox" value="' + data + '">';
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"deferRender": true
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
2019-10-29 14:57:13 +01:00
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
$this->render('incs/footer');
|