2018-04-02 08:29:19 +02:00
|
|
|
<?php echo template::formOpen('galleryEditForm'); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('galleryEditBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/config',
|
|
|
|
'ico' => 'left',
|
|
|
|
'value' => 'Retour'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2 offset8">
|
|
|
|
<?php echo template::submit('galleryEditSubmit'); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
|
|
|
<h4>Informations générales</h4>
|
|
|
|
<div class="row">
|
2020-02-28 14:24:46 +01:00
|
|
|
<div class="col4">
|
2018-04-02 08:29:19 +02:00
|
|
|
<?php echo template::text('galleryEditName', [
|
|
|
|
'label' => 'Nom',
|
|
|
|
'value' => $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'config', 'name'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2020-02-28 14:24:46 +01:00
|
|
|
<div class="col4">
|
2018-04-02 08:29:19 +02:00
|
|
|
<?php echo template::hidden('galleryEditDirectoryOld', [
|
|
|
|
'value' => $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'config', 'directory']),
|
|
|
|
'noDirty' => true // Désactivé à cause des modifications en ajax
|
|
|
|
]); ?>
|
|
|
|
<?php echo template::select('galleryEditDirectory', [], [
|
|
|
|
'label' => 'Dossier cible',
|
|
|
|
'noDirty' => true // Désactivé à cause des modifications en ajax
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2020-02-28 14:24:46 +01:00
|
|
|
<div class="col4">
|
2020-02-23 17:32:39 +01:00
|
|
|
<?php echo template::select('galleryEditSort', $module::$sort, [
|
|
|
|
'selected' => $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'config', 'sort']),
|
2020-02-22 22:51:46 +01:00
|
|
|
'label' => 'Tri des images',
|
|
|
|
'help' => 'Les images sont triées par nom de fichier grâce à la méthode naturelle qui donne de meilleurs résultats lorsque les images sont numérotées.'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-02 08:29:19 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php if($module::$pictures): ?>
|
2020-02-22 22:18:49 +01:00
|
|
|
<?php echo template::table([4, 1, 7], $module::$pictures, ['Image', 'Album','Légende']); ?>
|
2018-04-02 08:29:19 +02:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php echo template::formClose(); ?>
|