2018-04-02 08:29:19 +02:00
|
|
|
<?php echo template::formOpen('themeFooterForm'); ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col2">
|
|
|
|
<?php echo template::button('themeFooterBack', [
|
|
|
|
'class' => 'buttonGrey',
|
|
|
|
'href' => helper::baseUrl() . 'theme',
|
|
|
|
'ico' => 'left',
|
|
|
|
'value' => 'Retour'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col2 offset8">
|
|
|
|
<?php echo template::submit('themeFooterSubmit'); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<div class="block">
|
2019-06-18 20:08:04 +02:00
|
|
|
<h4>Couleurs</h4>
|
2018-04-02 08:29:19 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::text('themeFooterBackgroundColor', [
|
|
|
|
'class' => 'colorPicker',
|
|
|
|
'label' => 'Fond',
|
|
|
|
'value' => $this->getData(['theme', 'footer', 'backgroundColor'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::text('themeFooterTextColor', [
|
|
|
|
'class' => 'colorPicker',
|
|
|
|
'label' => 'Texte',
|
|
|
|
'value' => $this->getData(['theme', 'footer', 'textColor'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col6">
|
|
|
|
<div class="block">
|
|
|
|
<h4>Configuration</h4>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::select('themeFooterPosition', $module::$footerPositions, [
|
|
|
|
'label' => 'Position',
|
|
|
|
'selected' => $this->getData(['theme', 'footer', 'position'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col6">
|
|
|
|
<?php echo template::select('themeFooterHeight', $module::$footerHeights, [
|
2019-06-19 03:28:52 +02:00
|
|
|
'label' => 'Marges verticales',
|
|
|
|
'selected' => $this->getData(['theme', 'footer', 'height']),
|
|
|
|
'help' => 'La hauteur du pied de page est dynmamique selon le contenu.Ces marges sont ajoutées au-dessus et en-dessous.'
|
2018-04-02 08:29:19 +02:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="themeFooterPositionOptions" class="displayNone">
|
|
|
|
<?php echo template::checkbox('themeFooterMargin', true, 'Aligner le bas de page avec le contenu', [
|
|
|
|
'checked' => $this->getData(['theme', 'footer', 'margin'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-03-19 06:59:28 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
|
|
|
<h4>Mise en forme du texte</h4>
|
|
|
|
<div class="row">
|
2019-06-18 23:29:42 +02:00
|
|
|
<div class="col3">
|
2019-03-20 20:05:03 +01:00
|
|
|
<?php echo template::select('themeFooterFont', $module::$fonts, [
|
|
|
|
'label' => 'Police',
|
|
|
|
'selected' => $this->getData(['theme', 'footer', 'font'])
|
2019-03-19 06:59:28 +01:00
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col3">
|
|
|
|
<?php echo template::select('themeFooterFontSize', $module::$footerFontSizes, [
|
|
|
|
'label' => 'Taille',
|
2019-05-02 13:21:48 +02:00
|
|
|
'help' => 'Proportionnelle à celle définie dans le site.',
|
2019-03-19 06:59:28 +01:00
|
|
|
'selected' => $this->getData(['theme', 'footer', 'fontSize'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col3">
|
2019-03-20 20:05:03 +01:00
|
|
|
<?php echo template::select('themeFooterFontWeight', $module::$fontWeights, [
|
|
|
|
'label' => 'Style',
|
|
|
|
'selected' => $this->getData(['theme', 'footer', 'fontWeight'])
|
2019-03-19 06:59:28 +01:00
|
|
|
]); ?>
|
2019-03-20 20:05:03 +01:00
|
|
|
</div>
|
|
|
|
<div class="col3">
|
|
|
|
<?php echo template::select('themeFooterTextTransform', $module::$textTransforms, [
|
|
|
|
'label' => 'Casse',
|
|
|
|
'selected' => $this->getData(['theme', 'footer', 'textTransform'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2019-03-19 06:59:28 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-06-18 20:08:04 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
|
|
|
<h4>Mise en page</h4>
|
2019-06-18 23:29:42 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col4">
|
2019-06-25 19:55:52 +02:00
|
|
|
<?php $footerBlockPosition = $module::$footerblocks [$this->getData(['theme', 'footer', 'template'])]; ?>
|
2019-06-18 23:29:42 +02:00
|
|
|
<?php echo template::select('themeFooterTemplate', $module::$footerTemplate, [
|
2019-06-22 19:44:13 +02:00
|
|
|
'label' => 'Gabarits de mise en page',
|
2019-06-18 23:29:42 +02:00
|
|
|
'selected' => $this->getData(['theme', 'footer', 'template']),
|
|
|
|
'help' => 'Le changement de la mise en page entraîne la réinitalisation de la position des contenus.'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col4">
|
|
|
|
<p><strong>Contenu personnalisé texte ou HTML :</strong></p>
|
2019-06-19 09:35:19 +02:00
|
|
|
<?php echo template::select('themeFooterTextPosition', $footerBlockPosition, [
|
2019-06-18 23:29:42 +02:00
|
|
|
'label' => 'Emplacement',
|
2019-06-19 09:35:19 +02:00
|
|
|
'selected' => $this->getData(['theme', 'footer', 'textPosition']),
|
2019-06-19 21:37:16 +02:00
|
|
|
'class' => 'themeFooterContent'
|
2019-06-18 23:29:42 +02:00
|
|
|
]); ?>
|
|
|
|
<?php echo template::select('themeFooterTextAlign', $module::$aligns, [
|
|
|
|
'label' => 'Alignement',
|
|
|
|
'selected' => $this->getData(['theme', 'footer', 'textAlign'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col4">
|
|
|
|
<p><strong>Réseaux sociaux :</strong></p>
|
2019-06-19 09:35:19 +02:00
|
|
|
<?php echo template::select('themeFooterSocialsPosition', $footerBlockPosition, [
|
2019-06-18 23:29:42 +02:00
|
|
|
'label' => 'Emplacement',
|
2019-06-19 09:35:19 +02:00
|
|
|
'selected' => $this->getData(['theme', 'footer', 'socialsPosition']),
|
2019-06-19 21:37:16 +02:00
|
|
|
'class' => 'themeFooterContent'
|
2019-06-18 23:29:42 +02:00
|
|
|
]); ?>
|
|
|
|
<?php echo template::select('themeFooterSocialsAlign', $module::$aligns, [
|
|
|
|
'label' => 'Alignement',
|
|
|
|
'selected' => $this->getData(['theme', 'footer', 'socialsAlign'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="col4">
|
|
|
|
<p><strong>Info et copyright :</strong></p>
|
2019-06-19 09:35:19 +02:00
|
|
|
<?php echo template::select('themeFooterCopyrightPosition', $footerBlockPosition, [
|
2019-06-18 23:29:42 +02:00
|
|
|
'label' => 'Emplacement',
|
2019-06-19 09:35:19 +02:00
|
|
|
'selected' => $this->getData(['theme', 'footer', 'copyrightPosition']),
|
2019-06-19 21:37:16 +02:00
|
|
|
'class' => 'themeFooterContent'
|
2019-06-18 23:29:42 +02:00
|
|
|
]); ?>
|
|
|
|
<?php echo template::select('themeFooterCopyrightAlign', $module::$aligns, [
|
|
|
|
'label' => 'Alignement',
|
|
|
|
'selected' => $this->getData(['theme', 'footer', 'copyrightAlign'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-06-18 20:08:04 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-02 08:29:19 +02:00
|
|
|
<div class="row">
|
2019-06-18 23:29:42 +02:00
|
|
|
<div class="col12">
|
2018-04-02 08:29:19 +02:00
|
|
|
<div class="block">
|
2019-06-18 23:29:42 +02:00
|
|
|
<h4>Contenu des blocs</h4>
|
2018-04-02 08:29:19 +02:00
|
|
|
<?php echo template::textarea('themeFooterText', [
|
2019-06-18 23:29:42 +02:00
|
|
|
'label' => '<strong>Texte ou HTML personnalisé :</strong>',
|
2019-06-18 20:08:04 +02:00
|
|
|
'value' => $this->getData(['theme', 'footer', 'text']),
|
|
|
|
'class' => 'editorWysiwyg'
|
2018-04-02 08:29:19 +02:00
|
|
|
]); ?>
|
2019-06-18 23:29:42 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col12">
|
|
|
|
<div class="block">
|
|
|
|
<h4>Contenu du bloc "Info et copyright" :</h4>
|
2019-05-02 13:21:48 +02:00
|
|
|
<div class="row">
|
2019-06-18 23:29:42 +02:00
|
|
|
<div class="col6">
|
|
|
|
<div class="row">
|
|
|
|
<?php echo template::checkbox('themefooterDisplayCopyright', true, 'Mention "Motorisé par"', [
|
|
|
|
'checked' => $this->getData(['theme', 'footer','displayCopyright'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<?php echo template::checkbox('themefooterDisplayVersion', true, 'Numéro de version', [
|
|
|
|
'checked' => $this->getData(['theme', 'footer','displayVersion'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col6">
|
|
|
|
<div class="row">
|
|
|
|
<?php echo template::checkbox('themefooterDisplaySiteMap', true, 'Plan du site', [
|
|
|
|
'checked' => $this->getData(['theme', 'footer', 'displaySiteMap']),
|
|
|
|
'help' => 'Un plan du site permet un meilleur référencement.'
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<?php echo template::checkbox('themeFooterLoginLink', true, 'Lien de connexion', [
|
|
|
|
'checked' => $this->getData(['theme', 'footer', 'loginLink'])
|
|
|
|
]); ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-06-22 17:27:49 +02:00
|
|
|
<div class="col3">
|
|
|
|
<div class="row">
|
2019-06-25 19:55:52 +02:00
|
|
|
<?php
|
|
|
|
echo template::checkbox('themeFooterDisplayLegal', true, 'Mentions légales', [
|
|
|
|
'checked' => $this->getData(['config', 'legalPageId']) === '' ? false : $this->getData(['theme', 'footer', 'displayLegal']),
|
|
|
|
'help' => 'Sélectionner une page dans la configuration du site'
|
2019-06-22 17:27:49 +02:00
|
|
|
]); ?>
|
|
|
|
<p></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-05-02 13:21:48 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-06-18 23:29:42 +02:00
|
|
|
</div>
|
2019-06-22 17:27:49 +02:00
|
|
|
</div>
|
2019-06-18 23:29:42 +02:00
|
|
|
</div>
|
2019-05-02 13:21:48 +02:00
|
|
|
</div>
|
2019-06-18 23:29:42 +02:00
|
|
|
</div>
|
2019-05-02 13:21:48 +02:00
|
|
|
<?php echo template::formClose(); ?>
|