092 Edition des scripts dans une fenêtre dédiée

This commit is contained in:
Fred Tempez 2020-05-12 16:28:10 +02:00
parent 67d2155569
commit b77bdbd08a
9 changed files with 476 additions and 426 deletions

View File

@ -3,7 +3,9 @@
## version 10.0.092 ## version 10.0.092
- Nouveautés : - Nouveautés :
- Masque de configuration : options de réglage d'un serveur SMTP - Configuration :
- Options de réglage d'un serveur SMTP
- Edition des scripts dans une fenêtre dédiée
- Modification : - Modification :
- Masque de configuration : changement de libellés. - Masque de configuration : changement de libellés.
- Scripts externes: - Scripts externes:

View File

@ -719,7 +719,7 @@ class template {
// Attributs par défaut // Attributs par défaut
$attributes = array_merge([ $attributes = array_merge([
'before' => true, 'before' => true,
'class' => '', // editorWysiwyg et editorCss possible pour utiliser le éditeurs (il faut également instancier les librairies) 'class' => '', // editorWysiwyg et editor possible pour utiliser un éditeur (il faut également instancier les librairies)
'classWrapper' => '', 'classWrapper' => '',
'disabled' => false, 'disabled' => false,
'noDirty' => false, 'noDirty' => false,

View File

@ -23,7 +23,8 @@ class config extends common {
'updateRobots' => self::GROUP_ADMIN, 'updateRobots' => self::GROUP_ADMIN,
'index' => self::GROUP_ADMIN, 'index' => self::GROUP_ADMIN,
'manage' => self::GROUP_ADMIN, 'manage' => self::GROUP_ADMIN,
'updateBaseUrl' => self::GROUP_ADMIN 'updateBaseUrl' => self::GROUP_ADMIN,
'script' => self::GROUP_ADMIN
]; ];
public static $timezones = [ public static $timezones = [
@ -165,7 +166,6 @@ class config extends common {
'ssl' => 'SSL/TLS' 'ssl' => 'SSL/TLS'
]; ];
public function generateFiles() { public function generateFiles() {
// Mettre à jour le site map // Mettre à jour le site map
$successSitemap=$this->createSitemap(); $successSitemap=$this->createSitemap();
@ -445,9 +445,6 @@ class config extends common {
]); ]);
if(self::$inputNotices === []) { if(self::$inputNotices === []) {
// Ecrire les fichiers de script
file_put_contents(self::DATA_DIR . 'head.inc.html',$this->getInput('configScriptHead',null));
file_put_contents(self::DATA_DIR . 'body.inc.html',$this->getInput('configScriptBody',null));
// Active la réécriture d'URL // Active la réécriture d'URL
$rewrite = $this->getInput('rewrite', helper::FILTER_BOOLEAN); $rewrite = $this->getInput('rewrite', helper::FILTER_BOOLEAN);
if( if(
@ -504,6 +501,33 @@ class config extends common {
]); ]);
} }
public function script() {
// Soumission du formulaire
if($this->isPost()) {
// Ecrire les fichiers de script
if ($this->getInput('configScriptHead')) {
file_put_contents(self::DATA_DIR . 'head.inc.html',$this->getInput('configScriptHead',null));
}
if ($this->getInput('configScriptBody')) {
file_put_contents(self::DATA_DIR . 'body.inc.html',$this->getInput('configScriptBody',null));
}
// Valeurs en sortie
$this->addOutput([
'notification' => 'Modifications enregistrées',
'redirect' => helper::baseUrl() . 'config/script/'. $this->geturl(2),
'state' => true
]);
}
// Valeurs en sortie
$this->addOutput([
'title' => 'Éditeur de script dans ' . ucfirst($this->geturl(2)) ,
'vendor' => [
'codemirror'
],
'view' => 'script'
]);
}
/** /**
* Met à jour les données de site avec l'adresse trannsmise * Met à jour les données de site avec l'adresse trannsmise
*/ */

View File

@ -1,439 +1,424 @@
<?php echo template::formOpen('configForm'); ?> <?php echo template::formOpen('configForm'); ?>
<div class="notranslate"> <div class="row">
<div class="row"> <div class="col2">
<div class="col2"> <?php echo template::button('configBack', [
<?php echo template::button('configBack', [ 'class' => 'buttonGrey',
'class' => 'buttonGrey', 'href' => helper::baseUrl(false),
'href' => helper::baseUrl(false), 'ico' => 'home',
'ico' => 'home', 'value' => 'Accueil'
'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>
<div class="row"> <div class="col2 offset4">
<div class="col12"> <?php echo template::button('configManageButton', [
<div class="block"> 'href' => helper::baseUrl() . 'config/backup',
<h4>Informations générales</h4> 'value' => 'Sauvegarder',
<div class="row"> 'ico' => 'download'
<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'])
]); ?>
</div>
<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.'
]); ?>
</div> </div>
</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>
<div class="col12"> <div class="row">
<div class="block"> <div class="col12">
<h4>Paramètres</h4> <div class="block">
<?php $error = helper::urlGetContents('http://zwiicms.com/update/' . common::ZWII_UPDATE_CHANNEL . '/version');?> <h4>Informations générales</h4>
<?php if ($error !== false) : ?> <div class="row">
<?php $error = true; ?> <div class="col4">
<?php endif;?> <?php
<div class="row"> $pages = $this->getData(['page']);
<div class="col3"> foreach($pages as $page => $pageId) {
<?php echo template::file('configFavicon', [ if ($this->getData(['page',$page,'block']) === 'bar' ||
'type' => 1, $this->getData(['page',$page,'disable']) === true) {
'help' => 'Pensez à supprimer le cache de votre navigateur si la favicon ne change pas.', unset($pages[$page]);
'label' => 'Favicon', }
'value' => $this->getData(['config', 'favicon']) }
]); ?> echo template::select('configHomePageId', helper::arrayCollumn($pages, 'title', 'SORT_ASC'), [
</div> 'label' => 'Page d\'accueil',
<div class="col3"> 'selected' =>$this->getData(['config', 'homePageId'])
<?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'])
]); ?> ]); ?>
</div> </div>
<div class="col6"> <div class="col8">
<?php echo template::select('configItemsperPage', $module::$ItemsList, [ <?php echo template::text('configTitle', [
'label' => 'Articles par page', 'label' => 'Titre du site',
'selected' => $this->getData(['config', 'itemsperPage']), 'value' => $this->getData(['config', 'title']),
'help' => 'Modules Blog et News' 'help' => 'Il apparaît dans la barre de titre et les partages sur les réseaux sociaux.'
]); ?> ]); ?>
</div> </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.'
]); ?>
</div>
</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'])
]); ?>
</div> </div>
<div class="row"> <div class="col3">
<div class="col6"> <?php echo template::file('configFaviconDark', [
<?php echo template::select('configTimezone', $module::$timezones, [ 'type' => 1,
'label' => 'Fuseau horaire', '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.',
'selected' => $this->getData(['config', 'timezone']), 'label' => 'Favicon thème sombre',
'help' => 'Le fuseau horaire est utile au bon référencement' 'value' => $this->getData(['config', 'faviconDark'])
]); ?> ]); ?>
</div> </div>
<div class="col6"> <div class="col6">
<?php $listePageId = array_merge(['' => 'Sélectionner'] , helper::arrayCollumn($this->getData(['page']), 'title', 'SORT_ASC') ); <?php echo template::select('configItemsperPage', $module::$ItemsList, [
?> 'label' => 'Articles par page',
<?php echo template::select('configLegalPageId', $listePageId , [ 'selected' => $this->getData(['config', 'itemsperPage']),
'label' => 'Mentions légales', 'help' => 'Modules Blog et News'
'selected' => $this->getData(['config', 'legalPageId']), ]); ?>
'help' => 'Les mentions légales sont obligatoires en France' </div>
]); ?> </div>
</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'
]); ?>
</div>
<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>
<div class="col6"> <div class="row">
<?php echo template::checkbox('configCookieConsent', true, 'Message de consentement aux cookies', [ <div class="col6">
'checked' => $this->getData(['config', 'cookieConsent']) <?php echo template::checkbox('configCookieConsent', true, 'Message de consentement aux cookies', [
]); ?> 'checked' => $this->getData(['config', 'cookieConsent'])
</div> ]); ?>
<div class="col6"> </div>
<?php echo template::checkbox('rewrite', true, 'Réécriture d\'URL', [ <div class="col6">
'checked' => helper::checkRewrite(), <?php echo template::checkbox('rewrite', true, 'Réécriture d\'URL', [
'help' => 'Vérifiez d\'abord que votre serveur l\'autorise : ce n\'est pas le cas chez Free.' 'checked' => helper::checkRewrite(),
]); ?> 'help' => 'Vérifiez d\'abord que votre serveur l\'autorise : ce n\'est pas le cas chez Free.'
</div> ]); ?>
</div> </div>
<div class="row"> </div>
<div class="col6"> <div class="row">
<?php echo template::checkbox('configExportAutoBackup', true, 'Sauvegarde automatique quotidienne', [ <div class="col6">
'checked' => $this->getData(['config', 'autoBackup']), <?php echo template::checkbox('configExportAutoBackup', true, 'Sauvegarde automatique quotidienne', [
'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>' '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>'
</div>
<div class="col6">
<?php echo template::checkbox('configMaintenance', true, 'Site en maintenance', [
'checked' => $this->getData(['config', 'maintenance'])
]); ?> ]); ?>
</div> </div>
<div class="col6">
<?php echo template::checkbox('configMaintenance', true, 'Site en maintenance', [
'checked' => $this->getData(['config', 'maintenance'])
]); ?>
</div> </div>
<div class="row"> </div>
<div class="col6"> <div class="row">
<?php echo template::checkbox('configAutoUpdate', true, 'Mise à jour automatique', [ <div class="col6">
'checked' => $this->getData(['config', 'autoUpdate']), <?php echo template::checkbox('configAutoUpdate', true, 'Mise à jour automatique', [
'help' => 'Vérifie une fois par jour l\'existence d\'une mise à jour.' 'checked' => $this->getData(['config', 'autoUpdate']),
]); ?> 'help' => 'Vérifie une fois par jour l\'existence d\'une mise à jour.'
</div>
<div class="col3">
<?php echo template::button('configUpdateForced', [
'href' => helper::baseUrl() . 'install/update',
'value' => 'Mise à jour manuelle',
'disabled' => !$error
]); ?> ]); ?>
</div> </div>
<div class="col3">
<?php echo template::button('configUpdateForced', [
'href' => helper::baseUrl() . 'install/update',
'value' => 'Mise à jour manuelle',
'disabled' => !$error
]); ?>
</div> </div>
</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'])
]); ?>
</div>
</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'])
]); ?>
</div>
</div>
</div> </div>
</div> </div>
<div class="row"> <!--</div>
<div class="col6"> <div class="row">-->
<div class="block"> <div class="col6">
<h4>Réseaux sociaux</h4> <div class="block">
<div class="row"> <h4>Référencement</h4>
<div class="col6"> <div class="row">
<?php echo template::text('configSocialFacebookId', [ <div class="col5">
'help' => 'Saisissez votre ID : https://www.facebook.com/[ID].', <?php echo template::button('configMetaImage', [
'label' => 'Facebook', 'href' => helper::baseUrl() . 'config/configMetaImage',
'value' => $this->getData(['config', 'social', 'facebookId']) 'value' => 'Rafraîchir la capture d\'écran Open Graph'
]); ?> ]); ?>
</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'])
]); ?>
</div>
</div> </div>
<div class="row"> <div class="col5 offset2">
<div class="col6"> <?php echo template::button('configSiteMap', [
<?php echo template::text('configSocialTwitterId', [ 'href' => helper::baseUrl() . 'config/generateFiles',
'help' => 'Saisissez votre ID : https://twitter.com/[ID].', 'value' => 'Générer sitemap.xml et robots.txt'
'label' => 'Twitter', ]); ?>
'value' => $this->getData(['config', 'social', 'twitterId']) </div>
</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." />
</div>
</div>
</div>
</div>
</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'])
]); ?>
</div>
<div class="col3 offset3 verticalAlignBottom">
<?php echo template::button('configHead', [
'href' => helper::baseUrl() . 'config/script/head',
'value' => 'Editer script dans head'
]); ?>
</div>
<div class="col3 verticalAlignBottom">
<?php echo template::button('scriptBody', [
'href' => helper::baseUrl() . 'config/script/body',
'value' => 'Editer script dans body'
]); ?>
</div>
</div>
</div>
</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'])
]); ?>
</div>
<div class="col2">
<?php echo template::text('configProxyPort', [
'label' => 'Port du proxy',
'placeholder' => '6060',
'value' => $this->getData(['config', 'proxyPort'])
]); ?>
</div>
</div>
</div>
</div>
</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.'
]); ?> ]); ?>
</div>
</div>
<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>
<div class="col2">
<?php echo template::text('configSmtpPort', [
'label' => 'Port SMTP',
'placeholder' => '589',
'value' => $this->getData(['config', 'smtp','port'])
]); ?>
</div> </div>
<div class="col6"> <div class="col2">
<?php echo template::text('configSocialPinterestId', [ <?php echo template::select('configSmtpAuth', $module::$SMTPauth, [
'help' => 'Saisissez votre ID : https://pinterest.com/[ID].', 'label' => 'Authentification',
'label' => 'Pinterest', 'selected' => $this->getData(['config', 'smtp','auth'])
'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'])
]); ?>
</div> </div>
</div> </div>
</div> <div id="configSmtpAuthParam">
</div>
<!--</div>
<div class="row">-->
<div class="col6">
<div class="block">
<h4>Référencement</h4>
<div class="row">
<div class="col5">
<?php echo template::button('configMetaImage', [
'href' => helper::baseUrl() . 'config/configMetaImage',
'value' => 'Rafraîchir la capture d\'écran Open Graph'
]); ?>
</div>
<div class="col5 offset2">
<?php echo template::button('configSiteMap', [
'href' => helper::baseUrl() . 'config/generateFiles',
'value' => 'Générer sitemap.xml et robots.txt'
]); ?>
</div>
</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." />
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col12">
<?php
// Lire le contenu des fichiers de script
$headerFile = "";
if (file_exists( self::DATA_DIR . 'head.inc.html')) {
$headerFile = file_get_contents (self::DATA_DIR . 'head.inc.html');
}
$bodyFile = "";
if (file_exists( self::DATA_DIR . 'body.inc.html')) {
$bodyFile = file_get_contents (self::DATA_DIR . 'body.inc.html');
}
?>
<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'])
]); ?>
</div>
</div>
<div class="row">
<div class="col6">
<?php echo template::textarea('configScriptHead', [
'label' => 'Insérer un script dans "Head"',
'value' => $headerFile
]); ?>
</div>
<div class="col6">
<?php echo template::textarea('configScriptBody', [
'label' => 'Insérer un script dans "Body"',
'value' => $bodyFile
]); ?>
</div>
</div>
</div>
</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'])
]); ?>
</div>
<div class="col2">
<?php echo template::text('configProxyPort', [
'label' => 'Port du proxy',
'placeholder' => '6060',
'value' => $this->getData(['config', 'proxyPort'])
]); ?>
</div>
</div>
</div>
</div>
</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.'
]); ?>
</div>
</div>
<div id="configSmtpParam">
<div class="row"> <div class="row">
<div class="col8"> <div class="col5">
<?php echo template::text('configSmtpHost', [ <?php echo template::text('configSmtpUsername', [
'label' => 'Adresse SMTP', 'label' => 'Nom utilisateur',
'placeholder' => 'smtp.fr', 'value' => $this->getData(['config', 'smtp','username' ])
'value' => $this->getData(['config', 'smtp','host']) ]); ?>
]); ?> </div>
</div> <div class="col5">
<div class="col2"> <?php echo template::password('configSmtpPassword', [
<?php echo template::text('configSmtpPort', [ 'label' => 'Mot de passe',
'label' => 'Port SMTP', 'autocomplete' => 'off',
'placeholder' => '589', 'value' => $this->getData(['config','smtp','password'])
'value' => $this->getData(['config', 'smtp','port']) ]); ?>
]); ?>
</div> </div>
<div class="col2"> <div class="col2">
<?php echo template::select('configSmtpAuth', $module::$SMTPauth, [ <?php echo template::select('configSmtpSecure', $module::$SMTPEnc , [
'label' => 'Authentification', 'label' => 'Sécurité',
'selected' => $this->getData(['config', 'smtp','auth']) 'selected' => $this->getData(['config', 'smtp','secure'])
]); ?> ]); ?>
</div> </div>
</div> </div>
<div id="configSmtpAuthParam"> </div>
<div class="row"> </div>
<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'])
]); ?>
</div>
<div class="col2">
<?php echo template::select('configSmtpSecure', $module::$SMTPEnc , [
'label' => 'Sécurité',
'selected' => $this->getData(['config', 'smtp','secure'])
]); ?>
</div>
</div>
</div>
</div>
</div>
</div> </div>
</div> </div>
<div class="row"> </div>
<div class="col12"> <div class="row">
<div class="block"> <div class="col12">
<h4>Versions système</h4> <div class="block">
<div class="row"> <h4>Versions système</h4>
<div class="col2"> <div class="row">
<?php echo template::text('configVersion', [ <div class="col2">
'label' => 'ZwiiCMS', <?php echo template::text('configVersion', [
'label' => 'ZwiiCMS',
'readonly' => true,
'value' => common::ZWII_VERSION
]); ?>
</div>
<div class="col2">
<?php echo template::text('moduleBlogVersion', [
'label' => 'Blog',
'readonly' => true, 'readonly' => true,
'value' => common::ZWII_VERSION 'value' => blog::BLOG_VERSION
]); ?> ]); ?>
</div> </div>
<div class="col2"> <div class="col2">
<?php echo template::text('moduleBlogVersion', [ <?php echo template::text('moduleFormVersion', [
'label' => 'Blog', 'label' => 'Form',
'readonly' => true, 'readonly' => true,
'value' => blog::BLOG_VERSION 'value' => form::FORM_VERSION
]); ?> ]); ?>
</div> </div>
<div class="col2"> <div class="col2">
<?php echo template::text('moduleFormVersion', [ <?php echo template::text('moduleGalleryVersion', [
'label' => 'Form', 'label' => 'Gallery',
'readonly' => true, 'readonly' => true,
'value' => form::FORM_VERSION 'value' => gallery::GALLERY_VERSION
]); ?> ]); ?>
</div> </div>
<div class="col2"> <div class="col2">
<?php echo template::text('moduleGalleryVersion', [ <?php echo template::text('moduleNewsVersion', [
'label' => 'Gallery', 'label' => 'News',
'readonly' => true, 'readonly' => true,
'value' => gallery::GALLERY_VERSION 'value' => news::NEWS_VERSION
]); ?> ]); ?>
</div> </div>
<div class="col2"> <div class="col2">
<?php echo template::text('moduleNewsVersion', [ <?php echo template::text('moduleRedirectionVersion', [
'label' => 'News', 'label' => 'Redirection',
'readonly' => true, 'readonly' => true,
'value' => news::NEWS_VERSION 'value' => redirection::REDIRECTION_VERSION
]); ?> ]); ?>
</div> </div>
<div class="col2"> </div>
<?php echo template::text('moduleRedirectionVersion', [
'label' => 'Redirection',
'readonly' => true,
'value' => redirection::REDIRECTION_VERSION
]); ?>
</div>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>

View File

@ -9,11 +9,11 @@
]); ?> ]); ?>
</div> </div>
<div class="col2 offset8"> <div class="col2 offset8">
<?php echo template::submit('configManageSubmit',[ <?php echo template::submit('configManageSubmit',[
'value' => 'valider', 'value' => 'valider',
'ico' => 'check' 'ico' => 'check'
]); ?> ]); ?>
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="col12"> <div class="col12">

View File

@ -0,0 +1 @@

View File

@ -0,0 +1,38 @@
<?php echo template::formOpen('configScript'); ?>
<div class="row">
<div class="col2">
<?php echo template::button('configManageBack', [
'class' => 'buttonGrey',
'href' => helper::baseUrl() . 'config',
'ico' => 'left',
'value' => 'Retour'
]); ?>
</div>
<div class="col2 offset8">
<?php echo template::submit('configManageSubmit',[
'value' => 'valider',
'ico' => 'check'
]); ?>
</div>
</div>
<?php if ($this->geturl(2) === 'head'): ?>
<div class="row">
<div class="col12">
<?php echo template::textarea('configScriptHead', [
'value' => file_exists( self::DATA_DIR . 'head.inc.html') ? file_get_contents (self::DATA_DIR . 'head.inc.html') : '' ,
'class' => 'editor'
]); ?>
</div>
</div>
<?php endif ?>
<?php if ($this->geturl(2) === 'body'): ?>
<div class="row">
<div class="col12">
<?php echo template::textarea('configScriptBody', [
'value' => file_exists( self::DATA_DIR . 'body.inc.html') ? file_get_contents (self::DATA_DIR . 'body.inc.html') : '' ,
'class' => 'editor'
]); ?>
</div>
</div>
<?php endif ?>
<?php echo template::formClose(); ?>

View File

@ -24,7 +24,7 @@
<div class="col12"> <div class="col12">
<?php echo template::textarea('themeAdvancedCss', [ <?php echo template::textarea('themeAdvancedCss', [
'value' => file_get_contents(self::DATA_DIR.'custom.css'), 'value' => file_get_contents(self::DATA_DIR.'custom.css'),
'class' => 'editorCss' 'class' => 'editor'
]); ?> ]); ?>
</div> </div>
</div> </div>

View File

@ -2,7 +2,7 @@
* Initialisation de CodeMirror * Initialisation de CodeMirror
*/ */
$(function() { $(function() {
$(".editorCss").each(function() { $(".editor").each(function() {
var _this = this; var _this = this;
// Initialisation de CodeMirror // Initialisation de CodeMirror
var codeMirror = CodeMirror.fromTextArea(_this, { var codeMirror = CodeMirror.fromTextArea(_this, {