2023-09-05 15:21:01 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
|
|
|
<h4>
|
2023-11-07 11:11:47 +01:00
|
|
|
<?php echo sprintf('%s %s', helper::translate('Permissions'), helper::translate('Galerie')); ?>
|
2023-09-05 15:21:01 +02:00
|
|
|
</h4>
|
|
|
|
<div class="row">
|
2023-11-07 11:11:47 +01:00
|
|
|
<div class="col4">
|
|
|
|
<?php echo template::checkbox('profilEditGalleryAdd', true, 'Ajouter une galerie', [
|
2023-09-05 15:21:01 +02:00
|
|
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'gallery', 'add'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2023-11-07 11:11:47 +01:00
|
|
|
<div class="col4">
|
|
|
|
<?php echo template::checkbox('profilEditGalleryEdit', true, 'Éditer une galerie', [
|
2023-09-05 15:21:01 +02:00
|
|
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'gallery', 'edit'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2023-11-07 11:11:47 +01:00
|
|
|
<div class="col4">
|
|
|
|
<?php echo template::checkbox('profilEditGalleryDelete', true, 'Effacer une galerie', [
|
2023-09-05 15:21:01 +02:00
|
|
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'gallery', 'delete'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2023-11-07 11:11:47 +01:00
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::checkbox('profilEditGalleryOption', true, 'Options des galeries', [
|
2023-09-05 15:21:01 +02:00
|
|
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'gallery', 'option'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2023-11-07 11:11:47 +01:00
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::checkbox('profilEditGalleryTheme', true, 'Thème des galeries', [
|
2023-09-05 15:21:01 +02:00
|
|
|
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'gallery', 'theme'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|