ZwiiCMS/module/slider/profil/view/edit.inc.php

22 lines
901 B
PHP
Raw Normal View History

2023-07-24 21:18:56 +02:00
<div class="row">
<div class="col12">
<div class="block">
<h4>
<?php echo helper::translate('Permissions sur le module') . ' ' . helper::translate('Carrousel'); ?>
</h4>
<div class="row">
<div class="col6">
<?php echo template::checkbox('profilEditSliderTheme', true, 'Thème', [
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'slider', 'theme'])
]); ?>
</div>
<div class="col6">
<?php echo template::checkbox('profilEditSliderDelete', true, 'Effacer', [
'checked' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'slider', 'delete'])
]); ?>
</div>
</div>
</div>
</div>
</div>