2023-07-21 21:48:41 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
|
|
|
<h4>
|
2023-08-11 22:28:31 +02:00
|
|
|
<?php echo sprintf('%s %s', helper::translate('Permissions'), helper::translate('Formulaire')); ?>
|
2023-07-21 21:48:41 +02:00
|
|
|
</h4>
|
|
|
|
<div class="row">
|
2023-08-09 20:19:06 +02:00
|
|
|
<div class="col3">
|
2023-07-21 21:48:41 +02:00
|
|
|
<?php echo template::checkbox('profilEditFormData', true, 'Gérer les données', [
|
|
|
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'form', 'data'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2023-08-09 20:19:06 +02:00
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::checkbox('profilEditFormOption', true, 'Options', [
|
|
|
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'form', 'option'])
|
2023-07-21 21:48:41 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2023-08-09 20:19:06 +02:00
|
|
|
<div class="col2">
|
2023-07-21 21:53:46 +02:00
|
|
|
<?php echo template::checkbox('profilEditFormDelete', true, 'Effacer', [
|
2023-07-21 21:48:41 +02:00
|
|
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'form', 'delete'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2023-08-09 20:19:06 +02:00
|
|
|
<div class="col2">
|
2023-07-21 21:53:46 +02:00
|
|
|
<?php echo template::checkbox('profilEditFormDeleteAll', true, 'Tout Effacer', [
|
2023-07-21 21:48:41 +02:00
|
|
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'form', 'deleteAll'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2023-08-09 20:19:06 +02:00
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::checkbox('profilEditFormExport2csv', true, 'Export CSV', [
|
|
|
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'form', 'export2csv'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2023-07-21 21:48:41 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|