2018-04-02 08:29:19 +02:00
< ? php echo template :: formOpen ( 'configForm' ); ?>
2020-05-12 16:28:10 +02:00
< div class = " row " >
< div class = " col2 " >
< ? php echo template :: button ( 'configBack' , [
'class' => 'buttonGrey' ,
'href' => helper :: baseUrl ( false ),
'ico' => 'home' ,
'value' => 'Accueil'
]); ?>
</ div >
< div class = " col2 offset4 " >
< ? php echo template :: button ( 'configManageButton' , [
'href' => helper :: baseUrl () . 'config/backup' ,
'value' => 'Sauvegarder' ,
'ico' => 'download'
]); ?>
</ div >
< div class = " col2 " >
< ? php echo template :: button ( 'configManageButton' , [
'href' => helper :: baseUrl () . 'config/manage' ,
'value' => 'Restaurer' ,
'ico' => 'upload'
]); ?>
</ div >
< div class = " col2 " >
< ? php echo template :: submit ( 'configSubmit' ); ?>
</ div >
</ div >
< div class = " row " >
< div class = " col12 " >
< div class = " block " >
< h4 > Informations générales </ h4 >
< div class = " row " >
< div class = " col4 " >
< ? php
$pages = $this -> getData ([ 'page' ]);
foreach ( $pages as $page => $pageId ) {
if ( $this -> getData ([ 'page' , $page , 'block' ]) === 'bar' ||
$this -> getData ([ 'page' , $page , 'disable' ]) === true ) {
unset ( $pages [ $page ]);
}
}
echo template :: select ( 'configHomePageId' , helper :: arrayCollumn ( $pages , 'title' , 'SORT_ASC' ), [
'label' => 'Page d\'accueil' ,
'selected' => $this -> getData ([ 'config' , 'homePageId' ])
]); ?>
2020-05-07 08:36:24 +02:00
</ div >
2020-05-12 16:28:10 +02:00
< div class = " col8 " >
< ? php echo template :: text ( 'configTitle' , [
'label' => 'Titre du site' ,
'value' => $this -> getData ([ 'config' , 'title' ]),
'help' => 'Il apparaît dans la barre de titre et les partages sur les réseaux sociaux.'
]); ?>
</ div >
</ div >
< ? php echo template :: textarea ( 'configMetaDescription' , [
'label' => 'Description du site' ,
'value' => $this -> getData ([ 'config' , 'metaDescription' ]),
'help' => 'Elle apparaît dans les partages sur les réseaux sociaux.'
2020-05-07 08:36:24 +02:00
]); ?>
</ div >
2020-05-12 16:28:10 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col12 " >
< div class = " block " >
< h4 > Paramètres </ h4 >
< ? php $error = helper :: urlGetContents ( 'http://zwiicms.com/update/' . common :: ZWII_UPDATE_CHANNEL . '/version' ); ?>
< ? php if ( $error !== false ) : ?>
< ? php $error = true ; ?>
< ? php endif ; ?>
< div class = " row " >
< div class = " col3 " >
< ? php echo template :: file ( 'configFavicon' , [
'type' => 1 ,
'help' => 'Pensez à supprimer le cache de votre navigateur si la favicon ne change pas.' ,
'label' => 'Favicon' ,
'value' => $this -> getData ([ 'config' , 'favicon' ])
]); ?>
2020-02-05 18:12:45 +01:00
</ div >
2020-05-12 16:28:10 +02:00
< div class = " col3 " >
< ? php echo template :: file ( 'configFaviconDark' , [
'type' => 1 ,
'help' => 'Sélectionnez une icône adaptée à un thème sombre.<br>Pensez à supprimer le cache de votre navigateur si la favicon ne change pas.' ,
'label' => 'Favicon thème sombre' ,
'value' => $this -> getData ([ 'config' , 'faviconDark' ])
2020-05-07 08:36:24 +02:00
]); ?>
2018-04-02 08:29:19 +02:00
</ div >
2020-05-12 16:28:10 +02:00
< div class = " col6 " >
< ? php echo template :: select ( 'configItemsperPage' , $module :: $ItemsList , [
'label' => 'Articles par page' ,
'selected' => $this -> getData ([ 'config' , 'itemsperPage' ]),
'help' => 'Modules Blog et News'
2020-01-02 19:30:23 +01:00
]); ?>
2019-12-16 17:26:53 +01:00
</ div >
2020-05-12 16:28:10 +02:00
</ div >
< div class = " row " >
< div class = " col6 " >
< ? php echo template :: select ( 'configTimezone' , $module :: $timezones , [
'label' => 'Fuseau horaire' ,
'selected' => $this -> getData ([ 'config' , 'timezone' ]),
'help' => 'Le fuseau horaire est utile au bon référencement'
]); ?>
2019-12-16 17:26:53 +01:00
</ div >
2020-05-12 16:28:10 +02:00
< div class = " col6 " >
< ? php $listePageId = array_merge ([ '' => 'Sélectionner' ] , helper :: arrayCollumn ( $this -> getData ([ 'page' ]), 'title' , 'SORT_ASC' ) );
?>
< ? php echo template :: select ( 'configLegalPageId' , $listePageId , [
'label' => 'Mentions légales' ,
'selected' => $this -> getData ([ 'config' , 'legalPageId' ]),
'help' => 'Les mentions légales sont obligatoires en France'
]); ?>
</ div >
</ div >
< div class = " row " >
< div class = " col6 " >
< ? php echo template :: checkbox ( 'configCookieConsent' , true , 'Message de consentement aux cookies' , [
'checked' => $this -> getData ([ 'config' , 'cookieConsent' ])
]); ?>
</ div >
< div class = " col6 " >
< ? php echo template :: checkbox ( 'rewrite' , true , 'Réécriture d\'URL' , [
'checked' => helper :: checkRewrite (),
'help' => 'Vérifiez d\'abord que votre serveur l\'autorise : ce n\'est pas le cas chez Free.'
]); ?>
</ div >
</ div >
< div class = " row " >
< div class = " col6 " >
< ? php echo template :: checkbox ( 'configExportAutoBackup' , true , 'Sauvegarde automatique quotidienne' , [
'checked' => $this -> getData ([ 'config' , 'autoBackup' ]),
'help' => '<p>Une archive contenant le dossier /site/data est copiée dans le dossier \'site/backup\'. La sauvegarde est conservée pendant 30 jours.</p><p>Les fichiers du site ne sont pas sauvegardés automatiquement.</p>'
2020-05-07 08:36:24 +02:00
]); ?>
2020-05-12 16:28:10 +02:00
</ div >
< div class = " col6 " >
< ? php echo template :: checkbox ( 'configMaintenance' , true , 'Site en maintenance' , [
'checked' => $this -> getData ([ 'config' , 'maintenance' ])
]); ?>
</ div >
</ div >
< div class = " row " >
2020-05-13 18:05:46 +02:00
< div class = " col3 " >
2020-05-12 16:28:10 +02:00
< ? php echo template :: checkbox ( 'configAutoUpdate' , true , 'Mise à jour automatique' , [
'checked' => $this -> getData ([ 'config' , 'autoUpdate' ]),
2020-05-12 18:27:28 +02:00
'help' => 'Vérifie une fois par jour l\'existence d\'une mise à jour.' ,
'disabled' => ! $error
2020-05-07 08:36:24 +02:00
]); ?>
2020-05-12 16:28:10 +02:00
</ div >
< div class = " col3 " >
< ? php echo template :: button ( 'configUpdateForced' , [
2020-05-13 18:00:11 +02:00
'class' => 'buttonRed' ,
'ico' => 'download-cloud' ,
2020-05-12 16:28:10 +02:00
'href' => helper :: baseUrl () . 'install/update' ,
'value' => 'Mise à jour manuelle' ,
'disabled' => ! $error
]); ?>
</ div >
</ div >
</ div >
</ div >
</ div >
< div class = " row " >
< div class = " col6 " >
< div class = " block " >
< h4 > Réseaux sociaux </ h4 >
< div class = " row " >
< div class = " col6 " >
< ? php echo template :: text ( 'configSocialFacebookId' , [
'help' => 'Saisissez votre ID : https://www.facebook.com/[ID].' ,
'label' => 'Facebook' ,
'value' => $this -> getData ([ 'config' , 'social' , 'facebookId' ])
]); ?>
</ div >
< div class = " col6 " >
< ? php echo template :: text ( 'configSocialInstagramId' , [
'help' => 'Saisissez votre ID : https://www.instagram.com/[ID].' ,
'label' => 'Instagram' ,
'value' => $this -> getData ([ 'config' , 'social' , 'instagramId' ])
]); ?>
</ div >
</ div >
< div class = " row " >
< div class = " col6 " >
< ? php echo template :: text ( 'configSocialYoutubeId' , [
'help' => 'ID de la chaîne : https://www.youtube.com/channel/[ID].' ,
'label' => 'Chaîne Youtube' ,
'value' => $this -> getData ([ 'config' , 'social' , 'youtubeId' ])
]); ?>
</ div >
< div class = " col6 " >
< ? php echo template :: text ( 'configSocialYoutubeUserId' , [
'help' => 'Saisissez votre ID Utilisateur : https://www.youtube.com/user/[ID].' ,
'label' => 'Youtube' ,
'value' => $this -> getData ([ 'config' , 'social' , 'youtubeUserId' ])
]); ?>
2019-12-16 17:26:53 +01:00
</ div >
2020-05-12 16:28:10 +02:00
</ div >
< div class = " row " >
< div class = " col6 " >
< ? php echo template :: text ( 'configSocialTwitterId' , [
'help' => 'Saisissez votre ID : https://twitter.com/[ID].' ,
'label' => 'Twitter' ,
'value' => $this -> getData ([ 'config' , 'social' , 'twitterId' ])
]); ?>
</ div >
< div class = " col6 " >
< ? php echo template :: text ( 'configSocialPinterestId' , [
'help' => 'Saisissez votre ID : https://pinterest.com/[ID].' ,
'label' => 'Pinterest' ,
'value' => $this -> getData ([ 'config' , 'social' , 'pinterestId' ])
]); ?>
</ div >
< div class = " col6 " >
< ? php echo template :: text ( 'configSocialLinkedinId' , [
'help' => 'Saisissez votre ID Linkedin : https://fr.linkedin.com/in/[ID].' ,
'label' => 'Linkedin' ,
'value' => $this -> getData ([ 'config' , 'social' , 'linkedinId' ])
]); ?>
</ div >
< div class = " col6 " >
< ? php echo template :: text ( 'configSocialGithubId' , [
'help' => 'Saisissez votre ID Github : https://github.com/[ID].' ,
'label' => 'Github' ,
'value' => $this -> getData ([ 'config' , 'social' , 'githubId' ])
2020-05-07 08:36:24 +02:00
]); ?>
2020-05-12 16:28:10 +02:00
</ div >
</ div >
</ div >
</ div >
<!--</ div >
< div class = " row " >-->
< div class = " col6 " >
< div class = " block " >
< h4 > Référencement </ h4 >
< div class = " row " >
2020-05-13 18:00:11 +02:00
< div class = " col6 " >
2020-05-12 16:28:10 +02:00
< ? php echo template :: button ( 'configMetaImage' , [
'href' => helper :: baseUrl () . 'config/configMetaImage' ,
2020-05-13 18:00:11 +02:00
'value' => 'Capture Open Graph' ,
'ico' => 'pencil'
2020-05-12 16:28:10 +02:00
]); ?>
2019-06-12 09:45:42 +02:00
</ div >
2020-05-13 18:00:11 +02:00
< div class = " col6 " >
2020-05-12 16:28:10 +02:00
< ? php echo template :: button ( 'configSiteMap' , [
'href' => helper :: baseUrl () . 'config/generateFiles' ,
2020-05-13 18:00:11 +02:00
'value' => 'sitemap.xml / robots.txt' ,
'ico' => 'pencil'
2020-05-12 16:28:10 +02:00
]); ?>
2019-12-10 10:53:31 +01:00
</ div >
2020-05-12 16:28:10 +02:00
</ div >
< div class = " row " >
< div class = " col12 textAlignCenter " >
< img src = " <?php echo helper::baseUrl(false) . self::FILE_DIR.'source/screenshot.png';?> " data - tippy - content = " Cette capture d'écran est nécessaire aux partages sur les réseaux sociaux. Elle est régénérée lorsque le fichier 'screenshot.png' est effacé du gestionnaire de fichiers. " />
2020-05-07 08:36:24 +02:00
</ div >
2020-05-12 16:28:10 +02:00
</ div >
</ div >
2019-12-16 17:26:53 +01:00
</ div >
2020-05-12 16:28:10 +02:00
</ div >
< div class = " row " >
< div class = " col12 " >
< div class = " block " >
< h4 > Options avancées </ h4 >
< div class = " row " >
< div class = " col3 " >
< ? php echo template :: text ( 'configAnalyticsId' , [
'help' => 'Saisissez l\'ID de suivi.' ,
'label' => 'Google Analytics' ,
'placeholder' => 'UA-XXXXXXXX-X' ,
'value' => $this -> getData ([ 'config' , 'analyticsId' ])
]); ?>
2020-02-10 16:36:57 +01:00
</ div >
2020-05-13 14:36:05 +02:00
< div class = " col3 offset1 verticalAlignBottom " >
2020-05-12 16:28:10 +02:00
< ? php echo template :: button ( 'configHead' , [
'href' => helper :: baseUrl () . 'config/script/head' ,
2020-05-13 18:00:11 +02:00
'value' => 'Script inséré dans head' ,
'ico' => 'pencil'
2020-05-12 16:28:10 +02:00
]); ?>
</ div >
2020-05-13 14:36:05 +02:00
< div class = " col3 offset1 verticalAlignBottom " >
2020-05-12 16:28:10 +02:00
< ? php echo template :: button ( 'scriptBody' , [
'href' => helper :: baseUrl () . 'config/script/body' ,
2020-05-13 18:00:11 +02:00
'value' => 'Script inséré dans body' ,
'ico' => 'pencil'
2020-05-12 16:28:10 +02:00
]); ?>
2020-03-01 17:18:59 +01:00
</ div >
</ div >
2020-04-23 10:17:40 +02:00
</ div >
2020-05-12 16:28:10 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col12 " >
< div class = " block " >
< h4 > Paramètres réseaux </ h4 >
< div class = " row " >
< div class = " col2 " >
< ? php echo template :: select ( 'configProxyType' , $module :: $proxyType , [
'label' => 'Type de proxy' ,
'selected' => $this -> getData ([ 'config' , 'proxyType' ])
]); ?>
</ div >
< div class = " col8 " >
< ? php echo template :: text ( 'configProxyUrl' , [
'label' => 'Adresse du proxy' ,
'placeholder' => 'cache.proxy.fr' ,
'value' => $this -> getData ([ 'config' , 'proxyUrl' ])
]); ?>
2018-04-02 08:29:19 +02:00
</ div >
2020-05-12 16:28:10 +02:00
< div class = " col2 " >
< ? php echo template :: text ( 'configProxyPort' , [
'label' => 'Port du proxy' ,
'placeholder' => '6060' ,
'value' => $this -> getData ([ 'config' , 'proxyPort' ])
]); ?>
2019-12-04 17:23:03 +01:00
</ div >
2020-05-12 16:28:10 +02:00
</ div >
2019-12-16 17:26:53 +01:00
</ div >
2020-05-07 08:36:24 +02:00
</ div >
2020-05-12 16:28:10 +02:00
</ div >
< div class = " row " >
< div class = " col12 " >
< div class = " block " >
< h4 > Paramètres de messagerie SMTP </ h4 >
< div class = " row " >
< div class = " col12 " >
< ? php echo template :: checkbox ( 'configSmtpEnable' , true , 'Activer STMP' , [
'checked' => $this -> getData ([ 'config' , 'smtp' , 'enable' ]),
'help' => 'Paramètres à utiliser lorsque votre hébergeur ne propose pas la fonctionnalité d\'envoi de mail.'
2020-05-07 08:36:24 +02:00
]); ?>
2020-03-02 13:08:03 +01:00
</ div >
2020-05-07 08:36:24 +02:00
</ div >
2020-05-12 16:28:10 +02:00
< div id = " configSmtpParam " >
< div class = " row " >
< div class = " col8 " >
< ? php echo template :: text ( 'configSmtpHost' , [
'label' => 'Adresse SMTP' ,
'placeholder' => 'smtp.fr' ,
'value' => $this -> getData ([ 'config' , 'smtp' , 'host' ])
]); ?>
</ div >
2020-05-07 08:36:24 +02:00
< div class = " col2 " >
2020-05-12 16:28:10 +02:00
< ? php echo template :: text ( 'configSmtpPort' , [
'label' => 'Port SMTP' ,
'placeholder' => '589' ,
'value' => $this -> getData ([ 'config' , 'smtp' , 'port' ])
]); ?>
2020-05-10 18:06:57 +02:00
</ div >
2020-05-12 16:28:10 +02:00
< div class = " col2 " >
< ? php echo template :: select ( 'configSmtpAuth' , $module :: $SMTPauth , [
'label' => 'Authentification' ,
'selected' => $this -> getData ([ 'config' , 'smtp' , 'auth' ])
]); ?>
</ div >
2020-05-10 18:06:57 +02:00
</ div >
2020-05-12 16:28:10 +02:00
< div id = " configSmtpAuthParam " >
2020-05-11 12:15:51 +02:00
< div class = " row " >
2020-05-12 16:28:10 +02:00
< div class = " col5 " >
< ? php echo template :: text ( 'configSmtpUsername' , [
'label' => 'Nom utilisateur' ,
'value' => $this -> getData ([ 'config' , 'smtp' , 'username' ])
]); ?>
</ div >
< div class = " col5 " >
< ? php echo template :: password ( 'configSmtpPassword' , [
'label' => 'Mot de passe' ,
'autocomplete' => 'off' ,
'value' => $this -> getData ([ 'config' , 'smtp' , 'password' ])
]); ?>
2020-05-11 12:15:51 +02:00
</ div >
< div class = " col2 " >
2020-05-12 16:28:10 +02:00
< ? php echo template :: select ( 'configSmtpSecure' , $module :: $SMTPEnc , [
'label' => 'Sécurité' ,
'selected' => $this -> getData ([ 'config' , 'smtp' , 'secure' ])
]); ?>
</ div >
</ div >
</ div >
</ div >
2020-05-10 18:06:57 +02:00
</ div >
2020-05-12 16:28:10 +02:00
</ div >
</ div >
< div class = " row " >
< div class = " col12 " >
< div class = " block " >
< h4 > Versions système </ h4 >
< div class = " row " >
< div class = " col2 " >
< ? php echo template :: text ( 'configVersion' , [
'label' => 'ZwiiCMS' ,
'readonly' => true ,
'value' => common :: ZWII_VERSION
]); ?>
</ div >
< div class = " col2 " >
< ? php echo template :: text ( 'moduleBlogVersion' , [
'label' => 'Blog' ,
2019-12-16 17:26:53 +01:00
'readonly' => true ,
2020-05-12 16:28:10 +02:00
'value' => blog :: BLOG_VERSION
]); ?>
</ div >
< div class = " col2 " >
< ? php echo template :: text ( 'moduleFormVersion' , [
'label' => 'Form' ,
'readonly' => true ,
'value' => form :: FORM_VERSION
]); ?>
</ div >
< div class = " col2 " >
< ? php echo template :: text ( 'moduleGalleryVersion' , [
'label' => 'Gallery' ,
'readonly' => true ,
'value' => gallery :: GALLERY_VERSION
]); ?>
</ div >
< div class = " col2 " >
< ? php echo template :: text ( 'moduleNewsVersion' , [
'label' => 'News' ,
'readonly' => true ,
'value' => news :: NEWS_VERSION
]); ?>
</ div >
< div class = " col2 " >
< ? php echo template :: text ( 'moduleRedirectionVersion' , [
'label' => 'Redirection' ,
'readonly' => true ,
'value' => redirection :: REDIRECTION_VERSION
]); ?>
</ div >
</ div >
2018-04-02 08:29:19 +02:00
</ div >
</ div >
2019-12-10 10:53:31 +01:00
</ div >
2019-07-04 20:42:23 +02:00
< ? php echo template :: formClose (); ?>