2020-04-17 19:02:04 +02:00
|
|
|
<?php echo template::formOpen('galleryThemeForm'); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('galleryThemeBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/config',
|
|
|
|
'ico' => 'left',
|
|
|
|
'value' => 'Retour'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2 offset8">
|
|
|
|
<?php echo template::submit('galleryThemeBack'); ?>
|
2020-06-16 12:43:54 +02:00
|
|
|
</div>
|
2020-04-17 19:02:04 +02:00
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
2020-04-18 19:18:34 +02:00
|
|
|
<h4>Configuration des vignettes</h4>
|
2020-04-17 19:02:04 +02:00
|
|
|
<div class="row">
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col3">
|
2020-06-16 12:43:54 +02:00
|
|
|
<?php echo template::select('galleryThemeThumbWidth', $module::$galleryThemeSizeWidth, [
|
2020-04-18 19:18:34 +02:00
|
|
|
'label' => 'Largeur',
|
2020-04-18 16:33:48 +02:00
|
|
|
'selected' => $this->getData(['theme', $this->getUrl(0),'thumbWidth'])
|
2020-04-17 19:02:04 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col3">
|
2020-06-16 12:43:54 +02:00
|
|
|
<?php echo template::select('galleryThemeThumbHeight', $module::$galleryThemeSizeHeight, [
|
2020-04-18 19:18:34 +02:00
|
|
|
'label' => 'Hauteur',
|
2020-04-18 16:33:48 +02:00
|
|
|
'selected' => $this->getData(['theme', $this->getUrl(0),'thumbHeight'])
|
2020-04-17 19:02:04 +02:00
|
|
|
]); ?>
|
2020-06-16 12:43:54 +02:00
|
|
|
</div>
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col4">
|
2020-04-18 19:18:34 +02:00
|
|
|
<?php echo template::select('galleryThemeThumbAlign', $module::$galleryThemeFlexAlign, [
|
|
|
|
'label' => 'Alignement',
|
|
|
|
'selected' => $this->getData(['theme', $this->getUrl(0),'thumbAlign'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col2">
|
2020-04-17 19:02:04 +02:00
|
|
|
<?php echo template::select('galleryThemeThumbMargin', $module::$galleryThemeMargin, [
|
2020-04-19 19:43:37 +02:00
|
|
|
'label' => 'Marge',
|
2020-04-18 16:33:48 +02:00
|
|
|
'selected' => $this->getData(['theme', $this->getUrl(0),'thumbMargin'])
|
2020-04-17 19:02:04 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2020-04-18 19:18:34 +02:00
|
|
|
</div>
|
|
|
|
<div class="row">
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col4">
|
2020-04-17 19:02:04 +02:00
|
|
|
<?php echo template::select('galleryThemeThumbBorder', $module::$galleryThemeBorder, [
|
2020-04-19 19:43:37 +02:00
|
|
|
'label' => 'Bordure',
|
2020-04-18 16:33:48 +02:00
|
|
|
'selected' => $this->getData(['theme', $this->getUrl(0),'thumbBorder'])
|
2020-04-17 19:02:04 +02:00
|
|
|
]); ?>
|
2020-06-16 12:43:54 +02:00
|
|
|
</div>
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col4">
|
|
|
|
<?php echo template::text('galleryThemeThumbBorderColor', [
|
|
|
|
'class' => 'colorPicker',
|
2020-06-16 12:43:54 +02:00
|
|
|
'help' => 'Le curseur horizontal règle le niveau de transparence.',
|
2020-04-19 14:58:38 +02:00
|
|
|
'label' => 'Couleur de la bordure',
|
|
|
|
'value' => $this->getData(['theme', $this->getUrl(0),'thumbBorderColor'])
|
2020-04-18 19:18:34 +02:00
|
|
|
]); ?>
|
2020-06-16 12:43:54 +02:00
|
|
|
</div>
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col4">
|
2020-04-18 19:18:34 +02:00
|
|
|
<?php echo template::select('galleryThemeThumbRadius', $module::$galleryThemeRadius, [
|
2020-04-19 19:43:37 +02:00
|
|
|
'label' => 'Arrondi des angles',
|
2020-04-18 19:18:34 +02:00
|
|
|
'selected' => $this->getData(['theme', $this->getUrl(0),'thumbRadius'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2020-04-19 14:58:38 +02:00
|
|
|
</div>
|
2020-06-16 12:43:54 +02:00
|
|
|
<div class="row">
|
2020-04-19 19:43:37 +02:00
|
|
|
<div class="col4">
|
|
|
|
<?php echo template::select('galleryThemeThumbShadows', $module::$galleryThemeShadows, [
|
|
|
|
'label' => 'Ombre',
|
|
|
|
'selected' => $this->getData(['theme', $this->getUrl(0),'thumbShadows'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col4">
|
|
|
|
<?php echo template::text('galleryThemeThumbShadowsColor', [
|
|
|
|
'class' => 'colorPicker',
|
2020-06-16 12:43:54 +02:00
|
|
|
'help' => 'Le curseur horizontal règle le niveau de transparence.',
|
2020-04-19 19:43:37 +02:00
|
|
|
'label' => 'Couleur de l\'ombre',
|
|
|
|
'value' => $this->getData(['theme', $this->getUrl(0),'thumbShadowsColor'])
|
|
|
|
]); ?>
|
2020-06-16 12:43:54 +02:00
|
|
|
</div>
|
2020-04-19 19:43:37 +02:00
|
|
|
<div class="col4">
|
2020-04-19 14:58:38 +02:00
|
|
|
<?php echo template::select('galleryThemeThumbOpacity', $module::$galleryThemeOpacity, [
|
|
|
|
'label' => 'Opacité au survol',
|
|
|
|
'selected' => $this->getData(['theme', $this->getUrl(0),'thumbOpacity'])
|
|
|
|
]); ?>
|
2020-06-16 12:43:54 +02:00
|
|
|
</div>
|
2020-04-17 19:02:04 +02:00
|
|
|
</div>
|
2020-06-16 12:43:54 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-17 19:02:04 +02:00
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
2020-04-18 16:33:48 +02:00
|
|
|
<h4>Configuration des légendes</h4>
|
2020-04-17 19:02:04 +02:00
|
|
|
<div class="row">
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col3">
|
2020-04-18 16:33:48 +02:00
|
|
|
<?php echo template::text('galleryThemeLegendTextColor', [
|
2020-04-17 19:02:04 +02:00
|
|
|
'class' => 'colorPicker',
|
2020-06-16 12:43:54 +02:00
|
|
|
'help' => 'Le curseur horizontal règle le niveau de transparence.',
|
2020-04-18 19:18:34 +02:00
|
|
|
'label' => 'Texte',
|
2020-04-18 16:33:48 +02:00
|
|
|
'value' => $this->getData(['theme', $this->getUrl(0),'legendTextColor'])
|
2020-06-16 12:43:54 +02:00
|
|
|
]); ?>
|
2020-04-17 19:02:04 +02:00
|
|
|
</div>
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col3">
|
2020-04-18 16:33:48 +02:00
|
|
|
<?php echo template::text('galleryThemeLegendBgColor', [
|
2020-04-17 19:02:04 +02:00
|
|
|
'class' => 'colorPicker',
|
2020-06-16 12:43:54 +02:00
|
|
|
'help' => 'Le curseur horizontal règle le niveau de transparence.',
|
2020-04-18 19:18:34 +02:00
|
|
|
'label' => 'Fond',
|
2020-04-18 16:33:48 +02:00
|
|
|
'value' => $this->getData(['theme', $this->getUrl(0),'legendBgColor'])
|
2020-06-16 12:43:54 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col3">
|
2020-04-18 19:18:34 +02:00
|
|
|
<?php echo template::select('galleryThemeLegendHeight', $module::$galleryThemeLegendHeight, [
|
|
|
|
'label' => 'Hauteur',
|
|
|
|
'selected' => $this->getData(['theme', $this->getUrl(0),'legendHeight'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2020-04-19 14:58:38 +02:00
|
|
|
<div class="col3">
|
|
|
|
<?php echo template::select('galleryThemeLegendAlign', $module::$galleryThemeAlign, [
|
2020-04-19 19:43:37 +02:00
|
|
|
'label' => 'Alignement',
|
2020-04-19 14:58:38 +02:00
|
|
|
'selected' => $this->getData(['theme', $this->getUrl(0),'legendAlign'])
|
|
|
|
]); ?>
|
2020-04-17 19:02:04 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-06-16 12:43:54 +02:00
|
|
|
<?php echo template::formClose(); ?>
|
2020-04-17 19:02:04 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="moduleVersion">Version n°
|
|
|
|
<?php echo $module::GALLERY_VERSION; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-06-16 12:43:54 +02:00
|
|
|
</div>
|