ZwiiCMS/module/gallery/view/theme/theme.php

144 lines
6.8 KiB
PHP
Raw Normal View History

2020-04-17 19:02:04 +02:00
<?php echo template::formOpen('galleryThemeForm'); ?>
2020-04-17 19:02:04 +02:00
<div class="row">
2022-01-20 13:28:33 +01:00
<div class="col1">
2020-04-17 19:02:04 +02:00
<?php echo template::button('galleryThemeBack', [
'class' => 'buttonGrey',
'href' => helper::baseUrl() . $this->getUrl(0) . '/config',
2022-01-21 10:58:13 +01:00
'value' => template::ico('left')
2020-04-17 19:02:04 +02:00
]); ?>
</div>
2022-01-20 13:28:33 +01:00
<div class="col2 offset9">
2020-04-17 19:02:04 +02:00
<?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-08-20 15:56:48 +02:00
<h4>Vignettes
<?php
echo template::help('Les paramètres du thème sont communs aux modules du même type.');
?>
</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',
2021-04-09 16:42:13 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'theme','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',
2021-04-09 16:42:13 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'theme','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',
2021-04-09 16:42:13 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'theme','thumbAlign'])
2020-04-18 19:18:34 +02:00
]); ?>
</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, [
'label' => 'Marge',
2021-04-09 16:42:13 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'theme','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, [
'label' => 'Bordure',
2021-04-09 16:42:13 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'theme','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',
2021-04-09 16:42:13 +02:00
'value' => $this->getData(['module', $this->getUrl(0), 'theme','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, [
'label' => 'Arrondi des angles',
2021-04-09 16:42:13 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'theme','thumbRadius'])
2020-04-18 19:18:34 +02:00
]); ?>
</div>
2020-04-19 14:58:38 +02:00
</div>
2020-06-16 12:43:54 +02:00
<div class="row">
<div class="col4">
<?php echo template::select('galleryThemeThumbShadows', $module::$galleryThemeShadows, [
'label' => 'Ombre',
2021-04-09 16:42:13 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'theme','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.',
'label' => 'Couleur de l\'ombre',
2021-04-09 16:42:13 +02:00
'value' => $this->getData(['module', $this->getUrl(0), 'theme','thumbShadowsColor'])
]); ?>
2020-06-16 12:43:54 +02:00
</div>
<div class="col4">
2020-04-19 14:58:38 +02:00
<?php echo template::select('galleryThemeThumbOpacity', $module::$galleryThemeOpacity, [
'label' => 'Opacité au survol',
2021-04-09 16:42:13 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'theme','thumbOpacity'])
2020-04-19 14:58:38 +02:00
]); ?>
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-08-20 15:56:48 +02:00
<h4>Légendes
<?php
echo template::help('Les paramètres du thème sont communs aux modules du même type.');
?>
</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',
2021-04-09 16:42:13 +02:00
'value' => $this->getData(['module', $this->getUrl(0), 'theme','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.',
'label' => 'Arrière-plan',
2021-04-09 16:42:13 +02:00
'value' => $this->getData(['module', $this->getUrl(0), 'theme','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',
2021-04-09 16:42:13 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'theme','legendHeight'])
2020-04-18 19:18:34 +02:00
]); ?>
</div>
2020-04-19 14:58:38 +02:00
<div class="col3">
<?php echo template::select('galleryThemeLegendAlign', $module::$galleryThemeAlign, [
'label' => 'Alignement',
2021-04-09 16:42:13 +02:00
'selected' => $this->getData(['module', $this->getUrl(0), 'theme','legendAlign'])
2020-04-19 14:58:38 +02:00
]); ?>
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
2021-02-09 18:04:24 +01:00
<?php echo $module::VERSION; ?>
2020-04-17 19:02:04 +02:00
</div>
</div>
2020-06-16 12:43:54 +02:00
</div>