Zwii-Modules/geolocation/profil/view/add.inc.php

20 lines
801 B
PHP
Raw Normal View History

2024-08-16 15:57:50 +02:00
<div class="row">
<div class="col12">
<div class="block">
<h4>
<?php echo sprintf('%s %s', helper::translate('Permissions'), helper::translate('Geolocation')); ?>
2024-08-16 15:57:50 +02:00
</h4>
<div class="row">
<div class="col4">
<?php echo template::checkbox('profilAddGeolocationAdd', true, 'Ajouter un point'); ?>
2024-08-16 15:57:50 +02:00
</div>
<div class="col4">
<?php echo template::checkbox('profilAddGeolocationEdit', true, 'Éditer un point'); ?>
2024-08-16 15:57:50 +02:00
</div>
<div class="col4">
<?php echo template::checkbox('profilAddGeolocationDelete', true, 'Effacer un point'); ?>
2024-08-16 15:57:50 +02:00
</div>
</div>
</div>
</div>
</div>