ZwiiCMS/module/gallery/view/edit/edit.php

70 lines
2.7 KiB
PHP
Raw Normal View History

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>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',
2021-04-05 08:59:24 +02:00
'value' => $this->getData(['module', $this->getUrl(0), 'content', $this->getUrl(2), 'config', 'name'])
2018-04-02 08:29:19 +02:00
]); ?>
</div>
<div class="col4">
2018-04-02 08:29:19 +02:00
<?php echo template::hidden('galleryEditDirectoryOld', [
2021-04-05 08:59:24 +02:00
'value' => $this->getData(['module', $this->getUrl(0), 'content', $this->getUrl(2), 'config', 'directory']),
2018-04-02 08:29:19 +02:00
'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">
<?php echo template::select('galleryEditSort', $module::$sort, [
2021-04-05 08:59:24 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'content', $this->getUrl(2), 'config', 'sort']),
'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.'
]); ?>
</div>
<div clas="row">
<div class="col12">
<?php echo template::checkbox('galleryEditFullscreen', true, 'Mode plein écran automatique' , [
2021-04-05 08:59:24 +02:00
'checked' => $this->getData(['module', $this->getUrl(0), 'content', $this->getUrl(2), 'config', 'fullScreen']),
'help' => 'A l\'ouverture de la galerie, la première image est affichée en plein écran.'
]); ?>
</div>
</div>
<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'); ?>
<?php echo template::hidden('galleryEditFormGalleryName',['value' => $this->getUrl(2)]); ?>
<?php else: ?>
<?php echo template::speech('Aucune image.'); ?>
<?php endif; ?>
</div>
</div>
2018-04-02 08:29:19 +02:00
</div>
</div>
</div>
2020-04-08 21:10:13 +02:00
<div class="moduleVersion">Version
2021-02-09 18:04:24 +01:00
<?php echo $module::VERSION; ?>
2020-04-08 21:10:13 +02:00
</div>
2020-04-07 19:08:24 +02:00
<?php echo template::formClose(); ?>