2019-10-29 14:57:13 +01:00
|
|
|
<?php
|
|
|
|
//Template dashboard
|
|
|
|
|
|
|
|
$this->render('incs/head', ['title' => 'Groupes - Edit'])
|
|
|
|
?>
|
|
|
|
<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">
|
|
|
|
Modification groupes
|
|
|
|
</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>
|
2019-11-09 03:35:12 +01:00
|
|
|
<i class="fa fa-group"></i> <a href="<?php echo \descartes\Router::url('Group', 'list'); ?>">Groupes</a>
|
2019-10-29 14:57:13 +01:00
|
|
|
</li>
|
|
|
|
<li class="active">
|
|
|
|
<i class="fa fa-edit"></i> Modifier
|
|
|
|
</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-edit fa-fw"></i> Modification de groupes</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
2019-11-09 03:35:12 +01:00
|
|
|
<form action="<?php echo \descartes\Router::url('Group', 'update', ['csrf' => $_SESSION['csrf']]);?>" method="POST">
|
2019-10-29 14:57:13 +01:00
|
|
|
<?php
|
2019-11-10 00:27:42 +01:00
|
|
|
foreach ($groups as $group)
|
2019-10-29 14:57:13 +01:00
|
|
|
{
|
|
|
|
$contacts = array();
|
2019-11-10 00:27:42 +01:00
|
|
|
foreach ($group['contacts'] as $contact)
|
2019-10-29 14:57:13 +01:00
|
|
|
{
|
|
|
|
$contacts[] = (int)$contact['id'];
|
|
|
|
}
|
|
|
|
$contacts = json_encode($contacts);
|
|
|
|
|
|
|
|
?>
|
2019-11-10 01:02:10 +01:00
|
|
|
<input name="groups[<?php $this->s($group['id']); ?>][group][id]" type="hidden" value="<?php $this->s($group['id']); ?>">
|
2019-10-29 14:57:13 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<label>Nom groupe</label>
|
|
|
|
<div class="form-group input-group">
|
|
|
|
<span class="input-group-addon"><span class="fa fa-user"></span></span>
|
2019-11-10 01:02:10 +01:00
|
|
|
<input name="groups[<?php $this->s($group['id']); ?>][name]" class="form-control" type="text" placeholder="Nom groupe" autofocus required value="<?php $this->s($group['name']); ?>">
|
2019-10-29 14:57:13 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label>Contacts du groupe</label>
|
2019-11-10 01:02:10 +01:00
|
|
|
<input class="add-contacts form-control" name="groups[<?php $this->s($group['id']); ?>][contacts_ids][]" value="<?php $this->s($contacts); ?>"/>
|
2019-10-29 14:57:13 +01:00
|
|
|
</div>
|
|
|
|
<hr/>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2019-11-09 03:35:12 +01:00
|
|
|
<a class="btn btn-danger" href="<?php echo \descartes\Router::url('Group', 'list'); ?>">Annuler</a>
|
2019-10-29 14:57:13 +01:00
|
|
|
<input type="submit" class="btn btn-success" value="Enregistrer le groupe" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
jQuery(document).ready(function()
|
|
|
|
{
|
|
|
|
jQuery('.add-contacts').each(function()
|
|
|
|
{
|
|
|
|
jQuery(this).magicSuggest({
|
2019-11-07 17:52:33 +01:00
|
|
|
data: '<?php echo \descartes\Router::url('Contact', 'json_list'); ?>',
|
2019-10-29 14:57:13 +01:00
|
|
|
valueField: 'id',
|
|
|
|
displayField: 'name',
|
2020-09-02 00:59:45 +02:00
|
|
|
maxSelection: null,
|
2019-10-29 14:57:13 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
$this->render('incs/footer');
|