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">
|
2020-04-09 23:12:15 +02:00
|
|
|
<h4>Paramètre des images</h4>
|
2018-04-02 08:29:19 +02:00
|
|
|
<div class="row">
|
2020-03-23 17:53:43 +01:00
|
|
|
<div class="col5">
|
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-03-23 17:53:43 +01:00
|
|
|
<div class="col3">
|
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',
|
2020-04-29 16:34:27 +02:00
|
|
|
'help' => 'Tri manuel : déplacez le images dans le tableau ci-dessous. L\'ordre est sauvegardé automatiquement.'
|
2020-02-22 22:51:46 +01:00
|
|
|
]); ?>
|
2020-04-16 22:34:59 +02:00
|
|
|
</div>
|
|
|
|
<div clas="row">
|
|
|
|
<div class="col12">
|
|
|
|
<?php echo template::checkbox('galleryEditFullscreen', true, 'Mode plein écran automatique' , [
|
|
|
|
'checked' => $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'config', 'fullScreen']),
|
|
|
|
'help' => 'A l\'ouverture de la galerie, la première image est affichée en plein écran.'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2020-02-22 22:51:46 +01:00
|
|
|
</div>
|
2020-04-09 23:12:15 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<?php if($module::$pictures): ?>
|
|
|
|
<?php echo template::table([1, 4, 1, 5, 1], $module::$pictures, ['','Image', 'Couverture','Légende',''],['id' => 'galleryTable'], $module::$picturesId ); ?>
|
|
|
|
<?php echo template::hidden('galleryEditFormResponse'); ?>
|
2020-04-28 19:29:24 +02:00
|
|
|
<?php echo template::hidden('galleryEditFormGalleryName',['value' => $this->getUrl(2)]); ?>
|
2020-04-09 23:12:15 +02:00
|
|
|
<?php else: ?>
|
2020-04-11 20:03:29 +02:00
|
|
|
<?php echo template::speech('Aucune image.'); ?>
|
2020-04-09 23:12:15 +02:00
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-02 08:29:19 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-09 23:12:15 +02:00
|
|
|
|
2020-04-08 21:10:13 +02:00
|
|
|
<div class="moduleVersion">Version n°
|
|
|
|
<?php echo $module::GALLERY_VERSION; ?>
|
|
|
|
</div>
|
2020-04-07 19:08:24 +02:00
|
|
|
<?php echo template::formClose(); ?>
|