[9.1.09] Sripts head et body dans la config de Zwii
This commit is contained in:
parent
b88b2debd0
commit
692401b418
@ -3,7 +3,7 @@
|
|||||||
## Version 9.1.09
|
## Version 9.1.09
|
||||||
- Améliorations :
|
- Améliorations :
|
||||||
- Mise en page petits écrans, modification des marges
|
- Mise en page petits écrans, modification des marges
|
||||||
- Appel de scripts dans header et body
|
- Configuration du site : scripts dans header et body
|
||||||
|
|
||||||
## Version 9.1.08
|
## Version 9.1.08
|
||||||
- Corrections :
|
- Corrections :
|
||||||
|
@ -279,6 +279,9 @@ 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(
|
||||||
|
@ -13,15 +13,13 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col6">
|
<div class="col12">
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h4>Informations générales</h4>
|
<h4>Informations générales</h4>
|
||||||
|
|
||||||
<?php echo template::select('configHomePageId', helper::arrayCollumn($this->getData(['page']), 'title', 'SORT_ASC'), [
|
<?php echo template::select('configHomePageId', helper::arrayCollumn($this->getData(['page']), 'title', 'SORT_ASC'), [
|
||||||
'label' => 'Page d\'accueil',
|
'label' => 'Page d\'accueil',
|
||||||
'selected' => $this->getData(['config', 'homePageId'])
|
'selected' => $this->getData(['config', 'homePageId'])
|
||||||
]); ?>
|
]); ?>
|
||||||
|
|
||||||
<?php echo template::text('configTitle', [
|
<?php echo template::text('configTitle', [
|
||||||
'label' => 'Titre du site',
|
'label' => 'Titre du site',
|
||||||
'value' => $this->getData(['config', 'title']),
|
'value' => $this->getData(['config', 'title']),
|
||||||
@ -33,20 +31,30 @@
|
|||||||
'help' => 'Elle apparaît dans les partages sur les réseaux sociaux.'
|
'help' => 'Elle apparaît dans les partages sur les réseaux sociaux.'
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h4>Options avancées</h4>
|
<h4>Options avancées</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
<?php echo template::file('configFavicon', [
|
<?php echo template::file('configFavicon', [
|
||||||
'type' => 1,
|
'type' => 1,
|
||||||
'help' => 'Pensez à supprimer le cache de votre navigateur si la favicon ne change pas.',
|
'help' => 'Pensez à supprimer le cache de votre navigateur si la favicon ne change pas.',
|
||||||
'label' => 'Favicon',
|
'label' => 'Favicon',
|
||||||
'value' => $this->getData(['config', 'favicon'])
|
'value' => $this->getData(['config', 'favicon'])
|
||||||
]); ?>
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
<?php echo template::text('configAnalyticsId', [
|
<?php echo template::text('configAnalyticsId', [
|
||||||
'help' => 'Saisissez l\'ID de suivi.',
|
'help' => 'Saisissez l\'ID de suivi.',
|
||||||
'label' => 'Google Analytics',
|
'label' => 'Google Analytics',
|
||||||
'placeholder' => 'UA-XXXXXXXX-X',
|
'placeholder' => 'UA-XXXXXXXX-X',
|
||||||
'value' => $this->getData(['config', 'analyticsId'])
|
'value' => $this->getData(['config', 'analyticsId'])
|
||||||
]); ?>
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<?php echo template::checkbox('configCookieConsent', true, 'Message de consentement pour l\'utilisation des cookies', [
|
<?php echo template::checkbox('configCookieConsent', true, 'Message de consentement pour l\'utilisation des cookies', [
|
||||||
'checked' => $this->getData(['config', 'cookieConsent'])
|
'checked' => $this->getData(['config', 'cookieConsent'])
|
||||||
]); ?>
|
]); ?>
|
||||||
@ -59,23 +67,6 @@
|
|||||||
'selected' => $this->getData(['config', 'itemsperPage'])
|
'selected' => $this->getData(['config', 'itemsperPage'])
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="block">
|
|
||||||
<h4>Copie d'écran OpenGraph</h4>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col8 offset2">
|
|
||||||
<img src='<?php echo helper::baseUrl(false) . self::FILE_DIR.'source/screenshot.png';?>' />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col10 offset1">
|
|
||||||
<?php echo template::button('configMetaImage', [
|
|
||||||
'href' => helper::baseUrl() . 'config/configMetaImage',
|
|
||||||
'value' => 'Rafraîchir la capture d\'écran'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p>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.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col6">
|
<div class="col6">
|
||||||
<div class="block">
|
<div class="block">
|
||||||
@ -97,7 +88,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
<div class="col6">
|
<div class="col6">
|
||||||
<?php echo template::text('configSocialYoutubeId', [
|
<?php echo template::text('configSocialYoutubeId', [
|
||||||
'help' => 'Saisissez votre ID : https://www.youtube.com/channel/[ID].',
|
'help' => 'Saisissez votre ID : https://www.youtube.com/channel/[ID].',
|
||||||
@ -130,56 +120,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
<div class="block">
|
<div class="block">
|
||||||
<h4>Système</h4>
|
<h4>Système</h4>
|
||||||
<div class="row">
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('configVersion', [
|
|
||||||
'label' => 'ZwiiCMS',
|
|
||||||
'readonly' => true,
|
|
||||||
'value' => common::ZWII_VERSION
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('moduleRedirectionVersion', [
|
|
||||||
'label' => 'Module "Redirection"',
|
|
||||||
'readonly' => true,
|
|
||||||
'value' => redirection::REDIRECTION_VERSION
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('moduleFormVersion', [
|
|
||||||
'label' => 'Module "Form"',
|
|
||||||
'readonly' => true,
|
|
||||||
'value' => form::FORM_VERSION
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('moduleGalleryVersion', [
|
|
||||||
'label' => 'Module "Gallery"',
|
|
||||||
'readonly' => true,
|
|
||||||
'value' => gallery::GALLERY_VERSION
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('moduleNewsVersion', [
|
|
||||||
'label' => 'Module "News"',
|
|
||||||
'readonly' => true,
|
|
||||||
'value' => news::NEWS_VERSION
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('moduleBlogVersion', [
|
|
||||||
'label' => 'Module "Blog"',
|
|
||||||
'readonly' => true,
|
|
||||||
'value' => blog::BLOG_VERSION
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<?php echo template::select('configTimezone', $module::$timezones, [
|
<?php echo template::select('configTimezone', $module::$timezones, [
|
||||||
'label' => 'Fuseau horaire',
|
'label' => 'Fuseau horaire',
|
||||||
'selected' => $this->getData(['config', 'timezone'])
|
'selected' => $this->getData(['config', 'timezone'])
|
||||||
@ -209,5 +155,106 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Copie d'écran OpenGraph</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col8 offset2">
|
||||||
|
<img src='<?php echo helper::baseUrl(false) . self::FILE_DIR.'source/screenshot.png';?>' />
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col10 offset1">
|
||||||
|
<?php echo template::button('configMetaImage', [
|
||||||
|
'href' => helper::baseUrl() . 'config/configMetaImage',
|
||||||
|
'value' => 'Rafraîchir la capture d\'écran'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p>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.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<?php
|
||||||
|
// Lire le contenu du fichier script sinon le créer
|
||||||
|
if (file_exists( self::DATA_DIR . 'head.inc.html')) {
|
||||||
|
$headerFile = file_get_contents (self::DATA_DIR . 'head.inc.html');
|
||||||
|
} else {
|
||||||
|
$headerFile = "";
|
||||||
|
touch (self::DATA_DIR . 'head.inc.html');
|
||||||
|
}
|
||||||
|
if (file_exists( self::DATA_DIR . 'body.inc.html')) {
|
||||||
|
$bodyFile = file_get_contents (self::DATA_DIR . 'body.inc.html');
|
||||||
|
} else {
|
||||||
|
$bodyFile = "";
|
||||||
|
touch (self::DATA_DIR . 'body.inc.html');
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<div class="block">
|
||||||
|
<h4>Scripts HTML à insérer dans la page</h4>
|
||||||
|
<?php echo template::textarea('configScriptHead', [
|
||||||
|
'label' => 'Head',
|
||||||
|
'value' => $headerFile
|
||||||
|
]); ?>
|
||||||
|
<?php echo template::textarea('configScriptBody', [
|
||||||
|
'label' => 'Body',
|
||||||
|
'value' => $bodyFile
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Information sur les versions</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::text('configVersion', [
|
||||||
|
'label' => 'ZwiiCMS',
|
||||||
|
'readonly' => true,
|
||||||
|
'value' => common::ZWII_VERSION
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::text('moduleRedirectionVersion', [
|
||||||
|
'label' => 'Module "Redirection"',
|
||||||
|
'readonly' => true,
|
||||||
|
'value' => redirection::REDIRECTION_VERSION
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::text('moduleFormVersion', [
|
||||||
|
'label' => 'Module "Form"',
|
||||||
|
'readonly' => true,
|
||||||
|
'value' => form::FORM_VERSION
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::text('moduleGalleryVersion', [
|
||||||
|
'label' => 'Module "Gallery"',
|
||||||
|
'readonly' => true,
|
||||||
|
'value' => gallery::GALLERY_VERSION
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::text('moduleNewsVersion', [
|
||||||
|
'label' => 'Module "News"',
|
||||||
|
'readonly' => true,
|
||||||
|
'value' => news::NEWS_VERSION
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::text('moduleBlogVersion', [
|
||||||
|
'label' => 'Module "Blog"',
|
||||||
|
'readonly' => true,
|
||||||
|
'value' => blog::BLOG_VERSION
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php echo template::formClose(); ?>
|
<?php echo template::formClose(); ?>
|
Loading…
Reference in New Issue
Block a user