2020-04-01 13:43:15 +02:00
|
|
|
<?php echo template::formOpen('galleryConfigForm'); ?>
|
2022-03-28 18:57:06 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('galleryConfigBack', [
|
|
|
|
'href' => helper::baseUrl() . 'page/edit/' . $this->getUrl(0),
|
|
|
|
'ico' => 'left',
|
|
|
|
'value' => 'Retour'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col1 offset7">
|
|
|
|
<?php echo template::button('galleryConfigOption', [
|
|
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/option/' . $_SESSION['csrf'],
|
|
|
|
'value' => '',
|
|
|
|
'ico' => 'sliders',
|
|
|
|
]); ?>
|
2020-03-27 15:06:35 +01:00
|
|
|
</div>
|
2022-03-28 18:57:06 +02:00
|
|
|
<div class="col1">
|
|
|
|
<?php echo template::button('galleryConfigTheme', [
|
|
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/theme/' . $_SESSION['csrf'],
|
|
|
|
'value' => '',
|
|
|
|
'ico' => 'brush',
|
|
|
|
]); ?>
|
2020-03-27 15:06:35 +01:00
|
|
|
</div>
|
2022-03-28 18:57:06 +02:00
|
|
|
<div class="col1">
|
|
|
|
<?php echo template::button('galleryAdd', [
|
|
|
|
'ico' => '',
|
|
|
|
'value' => template::ico('plus'),
|
|
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/add/',
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-04 09:15:08 +01:00
|
|
|
<?php echo template::formClose(); ?>
|
2020-04-09 22:56:12 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
2022-03-24 08:18:15 +01:00
|
|
|
<?php if($module::$galleries): ?>
|
|
|
|
<?php echo template::table([1, 4, 5, 1, 1], $module::$galleries, ['','Nom', 'Dossier cible', '', ''], ['id' => 'galleryTable'],$module::$galleriesId); ?>
|
|
|
|
<?php echo template::hidden('galleryConfigFilterResponse'); ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?php echo template::speech('Aucune galerie.'); ?>
|
|
|
|
<?php endif; ?>
|
2020-04-09 22:56:12 +02:00
|
|
|
</div>
|
|
|
|
<div class="moduleVersion">Version n°
|
2021-02-09 18:04:24 +01:00
|
|
|
<?php echo $module::VERSION; ?>
|
2018-04-02 08:29:19 +02:00
|
|
|
</div>
|
2020-04-09 22:56:12 +02:00
|
|
|
</div>
|