2018-04-02 08:29:19 +02:00
< ? php echo template :: formOpen ( 'themeHeaderForm' ); ?>
< div class = " row " >
< div class = " col2 " >
< ? php echo template :: button ( 'themeHeaderBack' , [
'class' => 'buttonGrey' ,
'href' => helper :: baseUrl () . 'theme' ,
'ico' => 'left' ,
'value' => 'Retour'
]); ?>
</ div >
< div class = " col2 offset8 " >
< ? php echo template :: submit ( 'themeHeaderSubmit' ); ?>
</ div >
</ div >
< div class = " row " >
< div class = " col6 " >
< div class = " block " >
< h4 > Couleurs </ h4 >
< div class = " row " >
< div class = " col6 " >
< ? php echo template :: text ( 'themeHeaderBackgroundColor' , [
'class' => 'colorPicker' ,
'label' => 'Fond' ,
'value' => $this -> getData ([ 'theme' , 'header' , 'backgroundColor' ])
]); ?>
</ div >
< div class = " col6 " >
< ? php echo template :: text ( 'themeHeaderTextColor' , [
'class' => 'colorPicker' ,
'label' => 'Texte' ,
'value' => $this -> getData ([ 'theme' , 'header' , 'textColor' ])
]); ?>
</ div >
</ div >
</ div >
</ div >
< div class = " col6 " >
< div class = " block " >
< h4 > Image </ h4 >
< ? php echo template :: file ( 'themeHeaderImage' , [
2018-11-13 19:36:52 +01:00
'help' => 'Si vous souhaitez une bannière vraiment responsive, composez une image aux dimensions prévues par Zwii avec titre, logo, slogan, etc. et choisissez la position « Cachée ».' ,
2018-04-02 08:29:19 +02:00
'label' => 'Fond' ,
'type' => 1 ,
'value' => $this -> getData ([ 'theme' , 'header' , 'image' ])
]); ?>
< div id = " themeHeaderImageOptions " class = " displayNone " >
< div class = " row " >
< div class = " col6 " >
< ? php echo template :: select ( 'themeHeaderImageRepeat' , $module :: $repeats , [
'label' => 'Répétition' ,
'selected' => $this -> getData ([ 'theme' , 'header' , 'imageRepeat' ])
]); ?>
</ div >
< div class = " col6 " >
< ? php echo template :: select ( 'themeHeaderImagePosition' , $module :: $imagePositions , [
'label' => 'Position' ,
'selected' => $this -> getData ([ 'theme' , 'header' , 'imagePosition' ])
]); ?>
</ div >
</ div >
2018-08-31 22:35:39 +02:00
< div class = " row " >
< div class = " col6 " >
< ? php echo template :: checkbox ( 'themeHeaderTextHide' , true , 'Cacher le titre du site' , [
'checked' => $this -> getData ([ 'theme' , 'header' , 'textHide' ])
]); ?>
</ div >
< div class = " col6 " >
< ? php echo template :: select ( 'themeHeaderImageContainer' , $module :: $headerWide , [
2018-09-02 19:38:02 +02:00
'label' => 'Taille' ,
2018-08-31 22:35:39 +02:00
'selected' => $this -> getData ([ 'theme' , 'header' , 'imageContainer' ])
]); ?>
</ div >
</ div >
2018-04-02 08:29:19 +02:00
</ div >
</ div >
</ div >
</ div >
< div class = " row " >
< div class = " col12 " >
< div class = " block " >
< h4 > Mise en forme du texte </ h4 >
< div class = " row " >
< div class = " col3 " >
< ? php echo template :: select ( 'themeHeaderTextTransform' , $module :: $textTransforms , [
'label' => 'Caractères' ,
'selected' => $this -> getData ([ 'theme' , 'header' , 'textTransform' ])
]); ?>
</ div >
< div class = " col3 " >
< ? php echo template :: select ( 'themeHeaderFontWeight' , $module :: $fontWeights , [
'label' => 'Style' ,
'selected' => $this -> getData ([ 'theme' , 'header' , 'fontWeight' ])
]); ?>
</ div >
< div class = " col3 " >
< ? php echo template :: select ( 'themeHeaderFontSize' , $module :: $headerFontSizes , [
'label' => 'Taille' ,
'selected' => $this -> getData ([ 'theme' , 'header' , 'fontSize' ])
]); ?>
</ div >
< div class = " col3 " >
< ? php echo template :: select ( 'themeHeaderFont' , $module :: $fonts , [
'label' => 'Police' ,
'selected' => $this -> getData ([ 'theme' , 'header' , 'font' ])
]); ?>
</ div >
</ div >
</ div >
</ div >
</ div >
< div class = " row " >
< div class = " col12 " >
< div class = " block " >
< h4 > Configuration </ h4 >
< div class = " row " >
< div class = " col4 " >
< ? php echo template :: select ( 'themeHeaderPosition' , $module :: $headerPositions , [
'label' => 'Position' ,
'selected' => $this -> getData ([ 'theme' , 'header' , 'position' ])
]); ?>
</ div >
< div class = " col4 " >
< ? php echo template :: select ( 'themeHeaderHeight' , $module :: $headerHeights , [
'label' => 'Hauteur' ,
'selected' => $this -> getData ([ 'theme' , 'header' , 'height' ])
]); ?>
</ div >
< div class = " col4 " >
< ? php echo template :: select ( 'themeHeaderTextAlign' , $module :: $aligns , [
'label' => 'Alignement du contenu' ,
'selected' => $this -> getData ([ 'theme' , 'header' , 'textAlign' ])
]); ?>
</ div >
</ div >
<!-- menu image -->
< div id = " themeHeaderShow " class = " displayNone " >
< ? php echo template :: checkbox ( 'themeHeaderlinkHome' , true , 'Bannière cliquable' , [
'checked' => $this -> getData ([ 'theme' , 'header' , 'linkHome' ])
]); ?>
</ div >
<!-- menu image -->
< div id = " themeHeaderPositionOptions " class = " displayNone " >
< ? php echo template :: checkbox ( 'themeHeaderMargin' , true , 'Aligner la bannière avec le contenu' , [
'checked' => $this -> getData ([ 'theme' , 'header' , 'margin' ])
]); ?>
</ div >
</ div >
</ div >
</ div >
< ? php echo template :: formClose (); ?>