2019-10-29 14:57:13 +01:00
|
|
|
<?php
|
|
|
|
//Template dashboard
|
|
|
|
|
|
|
|
$this->render('incs/head', ['title' => 'Groupes - Show All'])
|
|
|
|
?>
|
|
|
|
<div id="wrapper">
|
|
|
|
<?php
|
|
|
|
$this->render('incs/nav', ['page' => 'groupes'])
|
|
|
|
?>
|
|
|
|
<div id="page-wrapper">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<!-- Page Heading -->
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<h1 class="page-header">
|
|
|
|
Dashboard <small>Groupes</small>
|
|
|
|
</h1>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<li>
|
2019-11-07 17:52:33 +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">
|
|
|
|
<i class="fa fa-group"></i> Groupes
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- /.row -->
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title"><i class="fa fa-group fa-fw"></i> Liste des groupes</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<form method="GET">
|
2020-09-23 03:02:13 +02:00
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-bordered table-hover table-striped datatable" id="table-groupes">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Nom</th>
|
|
|
|
<th>Nombre de contacts</th>
|
2021-04-23 22:56:27 +02:00
|
|
|
<th>Date de création</th>
|
|
|
|
<th>Dernière modification</th>
|
2023-02-17 05:18:57 +01:00
|
|
|
<th>Preview</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-11-09 03:35:12 +01:00
|
|
|
<a class="btn btn-success" href="<?php echo \descartes\Router::url('Group', 'add'); ?>"><span class="fa fa-plus"></span> Ajouter un groupe</a>
|
2019-10-29 14:57:13 +01:00
|
|
|
</div>
|
2020-09-23 03:02:13 +02:00
|
|
|
<div class="text-right col-xs-6 no-padding">
|
|
|
|
<strong>Action pour la séléction :</strong>
|
2021-01-14 04:30:28 +01:00
|
|
|
<button class="btn btn-default" type="submit" formaction="<?php echo \descartes\Router::url('Scheduled', 'add'); ?>"><span class="fa fa-send"></span> Envoyer un message</button>
|
2020-09-23 03:02:13 +02:00
|
|
|
<button class="btn btn-default" type="submit" formaction="<?php echo \descartes\Router::url('Group', 'edit'); ?>"><span class="fa fa-edit"></span> Modifier</button>
|
|
|
|
<button class="btn btn-default btn-confirm" type="submit" formaction="<?php echo \descartes\Router::url('Group', 'delete', ['csrf' => $_SESSION['csrf']]); ?>"><span class="fa fa-trash-o"></span> Supprimer</button>
|
|
|
|
</div>
|
2019-10-29 14:57:13 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-02-17 05:18:57 +01:00
|
|
|
<div class="modal fade" tabindex="-1" id="preview-text-modal">
|
|
|
|
<div class="modal-dialog modal-lg">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
|
|
<h4 class="modal-title">Prévisualisation des contacts</h4>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-29 14:57:13 +01:00
|
|
|
<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('Group', 'list_json'); ?>',
|
|
|
|
'dataSrc': 'data',
|
|
|
|
},
|
|
|
|
"columns" : [
|
|
|
|
{data: 'name', render: jQuery.fn.dataTable.render.text()},
|
|
|
|
{data: 'nb_contact', render: jQuery.fn.dataTable.render.text()},
|
2021-04-23 22:56:27 +02:00
|
|
|
{data: 'created_at'},
|
|
|
|
{data: 'updated_at'},
|
2023-02-17 05:18:57 +01:00
|
|
|
{
|
|
|
|
data: '_',
|
|
|
|
render: function (data, type, row, meta) {
|
|
|
|
return '<a class="btn btn-info preview-button" href="#" data-id-group="' + jQuery.fn.dataTable.render.text().display(row.id) + '"><span class="fa fa-eye"></span></a>';
|
|
|
|
},
|
|
|
|
},
|
2020-09-23 03:02:13 +02:00
|
|
|
{
|
|
|
|
data: 'id',
|
|
|
|
render: function (data, type, row, meta) {
|
2021-01-14 04:30:28 +01:00
|
|
|
return '<input name="group_ids[]" type="checkbox" value="' + data + '">';
|
2020-09-23 03:02:13 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"deferRender": true
|
|
|
|
});
|
|
|
|
|
2023-02-17 05:18:57 +01:00
|
|
|
jQuery('body').on('click', '.preview-button', function (e)
|
|
|
|
{
|
|
|
|
e.preventDefault();
|
|
|
|
var group_id = jQuery(this).attr('data-id-group');
|
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
type: "GET",
|
|
|
|
url: HTTP_PWD + '/group/preview/' + group_id + '/',
|
|
|
|
success: function (data) {
|
|
|
|
if (!data.success) {
|
|
|
|
jQuery('#preview-text-modal').find('.modal-body').text(data.result);
|
|
|
|
} else {
|
|
|
|
html = '';
|
|
|
|
|
|
|
|
for (contact of data.result)
|
|
|
|
{
|
|
|
|
html += '<div class="preview-contact well">';
|
|
|
|
html += ' <div class="preview-contact-name">' + jQuery.fn.dataTable.render.text().display(contact.name) + '</div>'
|
|
|
|
html += ' <div class="preview-contact-number">' + jQuery.fn.dataTable.render.text().display(contact.number) + '</div>'
|
|
|
|
html += ' <code class="preview-contact-data">' + jQuery.fn.dataTable.render.text().display(contact.data) + '</code>'
|
|
|
|
html += '</div>';
|
|
|
|
console.log(contact);
|
|
|
|
}
|
|
|
|
|
|
|
|
jQuery('#preview-text-modal').find('.modal-body').html(html);
|
|
|
|
}
|
|
|
|
jQuery('#preview-text-modal').modal({'keyboard': true});
|
|
|
|
},
|
|
|
|
dataType: 'json'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-09-23 03:02:13 +02:00
|
|
|
});
|
2019-10-29 14:57:13 +01:00
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
$this->render('incs/footer');
|