forked from ZwiiCMS-Team/ZwiiCMS
Merge branch 'dev' into blog_v3
This commit is contained in:
commit
43f2ccca4f
@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
@import url("site/data/admin.css");
|
@import url("site/data/admin.css");
|
||||||
|
|
||||||
.blockContainer:not(#info) {
|
.blockContainer {
|
||||||
display : none;
|
display : none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ $( document).ready(function() {
|
|||||||
* Initialisation des blocs
|
* Initialisation des blocs
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var i = ["info", "setup", "social", "ceo", "network", "smtp", "login", "logs", "script", "system" ];
|
var i = [ "social", "ceo", "network", "smtp", "login", "logs", "script", "system" ];
|
||||||
$.each(i,function(e) {
|
$.each(i,function(e) {
|
||||||
if (getCookie(i[e]) === "true") {
|
if (getCookie(i[e]) === "true") {
|
||||||
$("#" + i[e]).find(".zwiico-plus").hide();
|
$("#" + i[e]).find(".zwiico-plus").hide();
|
||||||
@ -62,7 +62,7 @@ $( document).ready(function() {
|
|||||||
* true = bloc déplié
|
* true = bloc déplié
|
||||||
*/
|
*/
|
||||||
document.cookie = $(this).attr('id') + "=" + $(this).find(".zwiico-minus").is(":visible");
|
document.cookie = $(this).attr('id') + "=" + $(this).find(".zwiico-minus").is(":visible");
|
||||||
}).on("click", "span > input, input, textarea, label, option, button, a, .blockContainer", function(e) {
|
}).on("click", "span > input, input, textarea, label, option, button, a:not(.inputFile), .blockContainer", function(e) {
|
||||||
// Empêcher les déclenchements dans les blocs
|
// Empêcher les déclenchements dans les blocs
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
});
|
});
|
||||||
|
@ -28,43 +28,38 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col12">
|
<div class="col12">
|
||||||
<div class="block" id="info">
|
<div class="block">
|
||||||
<h4><?php
|
<h4>Informations générales</h4>
|
||||||
echo template::ico('plus','right');
|
<div class="row">
|
||||||
echo template::ico('minus','right');
|
<div class="col4">
|
||||||
?>Informations générales</h4>
|
<?php
|
||||||
<div class="blockContainer" id="info">
|
$pages = $this->getData(['page']);
|
||||||
<div class="row">
|
foreach($pages as $page => $pageId) {
|
||||||
<div class="col4">
|
if ($this->getData(['page',$page,'block']) === 'bar' ||
|
||||||
<?php
|
$this->getData(['page',$page,'disable']) === true) {
|
||||||
$pages = $this->getData(['page']);
|
unset($pages[$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',
|
echo template::select('configHomePageId', helper::arrayCollumn($pages, 'title', 'SORT_ASC'), [
|
||||||
'selected' =>$this->getData(['config', 'homePageId'])
|
'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>
|
</div>
|
||||||
<div class="row">
|
<div class="col8">
|
||||||
<div class="col12">
|
<?php echo template::text('configTitle', [
|
||||||
<?php echo template::textarea('configMetaDescription', [
|
'label' => 'Titre du site',
|
||||||
'label' => 'Description du site',
|
'value' => $this->getData(['config', 'title']),
|
||||||
'value' => $this->getData(['config', 'metaDescription']),
|
'help' => 'Il apparaît dans la barre de titre et les partages sur les réseaux sociaux.'
|
||||||
'help' => 'Elle apparaît dans les partages sur les réseaux sociaux.'
|
]); ?>
|
||||||
]); ?>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<?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>
|
||||||
</div>
|
</div>
|
||||||
@ -72,104 +67,99 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col12">
|
<div class="col12">
|
||||||
<div class="block" id="setup">
|
<div class="block">
|
||||||
<h4><?php
|
<h4>Paramètres</h4>
|
||||||
echo template::ico('plus','right');
|
<?php $error = helper::urlGetContents('http://zwiicms.com/update/' . common::ZWII_UPDATE_CHANNEL . '/version');?>
|
||||||
echo template::ico('minus','right');
|
<div class="row">
|
||||||
?>Paramètres</h4>
|
<div class="col4">
|
||||||
<div class="blockContainer">
|
<?php echo template::file('configFavicon', [
|
||||||
<?php $error = helper::urlGetContents('http://zwiicms.com/update/' . common::ZWII_UPDATE_CHANNEL . '/version');?>
|
'type' => 1,
|
||||||
<div class="row">
|
'help' => 'Pensez à supprimer le cache de votre navigateur si la favicon ne change pas.',
|
||||||
<div class="col4">
|
'label' => 'Favicon',
|
||||||
<?php echo template::file('configFavicon', [
|
'value' => $this->getData(['config', 'favicon'])
|
||||||
'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 class="col4">
|
|
||||||
<?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 class="col4">
|
|
||||||
<?php echo template::select('configItemsperPage', $module::$ItemsList, [
|
|
||||||
'label' => 'Articles par page',
|
|
||||||
'selected' => $this->getData(['config', 'itemsperPage']),
|
|
||||||
'help' => 'Modules Blog et News'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="col4">
|
||||||
<div class="col4">
|
<?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 class="col4">
|
|
||||||
<?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 class="col4 verticalAlignBottom">
|
|
||||||
<?php echo template::checkbox('configCookieConsent', true, 'Message de consentement aux cookies', [
|
|
||||||
'checked' => $this->getData(['config', 'cookieConsent'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="col4">
|
||||||
<div class="col4">
|
<?php echo template::select('configItemsperPage', $module::$ItemsList, [
|
||||||
<?php echo template::checkbox('rewrite', true, 'Réécriture d\'URL', [
|
'label' => 'Articles par page',
|
||||||
'checked' => helper::checkRewrite(),
|
'selected' => $this->getData(['config', 'itemsperPage']),
|
||||||
'help' => 'Vérifiez d\'abord que votre serveur l\'autorise : ce n\'est pas le cas chez Free.'
|
'help' => 'Modules Blog et News'
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::checkbox('configMaintenance', true, 'Site en maintenance', [
|
|
||||||
'checked' => $this->getData(['config', 'maintenance'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::checkbox('configAutoBackup', 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>'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
</div>
|
||||||
<div class="col4">
|
<div class="row">
|
||||||
<?php echo template::checkbox('configAutoUpdate', true, 'Mise à jour en ligne', [
|
<div class="col4">
|
||||||
'checked' => $this->getData(['config', 'autoUpdate']),
|
<?php echo template::select('configTimezone', $module::$timezones, [
|
||||||
'help' => 'Vérifie une fois par jour l\'existence d\'une mise à jour.',
|
'label' => 'Fuseau horaire',
|
||||||
'disabled' => !$error
|
'selected' => $this->getData(['config', 'timezone']),
|
||||||
]); ?>
|
'help' => 'Le fuseau horaire est utile au bon référencement'
|
||||||
</div>
|
]); ?>
|
||||||
<div class="col4 ">
|
</div>
|
||||||
<?php echo template::checkbox('configAutoUpdateHtaccess', true, 'Préserver htaccess', [
|
<div class="col4">
|
||||||
'checked' => $this->getData(['config', 'autoUpdateHtaccess']),
|
<?php $listePageId = array_merge(['' => 'Sélectionner'] , helper::arrayCollumn($this->getData(['page']), 'title', 'SORT_ASC') );
|
||||||
'help' => 'Lors d\'une mise à jour automatique, conserve le fichier htaccess de la racine du site.',
|
?>
|
||||||
'disabled' => !$error
|
<?php echo template::select('configLegalPageId', $listePageId , [
|
||||||
]); ?>
|
'label' => 'Mentions légales',
|
||||||
</div>
|
'selected' => $this->getData(['config', 'legalPageId']),
|
||||||
<div class="col4 ">
|
'help' => 'Les mentions légales sont obligatoires en France'
|
||||||
<?php echo template::button('configUpdateForced', [
|
]); ?>
|
||||||
'ico' => 'download-cloud',
|
</div>
|
||||||
'href' => helper::baseUrl() . 'install/update',
|
<div class="col4 verticalAlignBottom">
|
||||||
'value' => 'Mise à jour manuelle',
|
<?php echo template::checkbox('configCookieConsent', true, 'Message de consentement aux cookies', [
|
||||||
'class' => 'buttonRed',
|
'checked' => $this->getData(['config', 'cookieConsent'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col4">
|
||||||
|
<?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 class="col4">
|
||||||
|
<?php echo template::checkbox('configMaintenance', true, 'Site en maintenance', [
|
||||||
|
'checked' => $this->getData(['config', 'maintenance'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::checkbox('configAutoBackup', 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>'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::checkbox('configAutoUpdate', true, 'Mise à jour en ligne', [
|
||||||
|
'checked' => $this->getData(['config', 'autoUpdate']),
|
||||||
|
'help' => 'Vérifie une fois par jour l\'existence d\'une mise à jour.',
|
||||||
'disabled' => !$error
|
'disabled' => !$error
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col4 ">
|
||||||
|
<?php echo template::checkbox('configAutoUpdateHtaccess', true, 'Préserver htaccess', [
|
||||||
|
'checked' => $this->getData(['config', 'autoUpdateHtaccess']),
|
||||||
|
'help' => 'Lors d\'une mise à jour automatique, conserve le fichier htaccess de la racine du site.',
|
||||||
|
'disabled' => !$error
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4 ">
|
||||||
|
<?php echo template::button('configUpdateForced', [
|
||||||
|
'ico' => 'download-cloud',
|
||||||
|
'href' => helper::baseUrl() . 'install/update',
|
||||||
|
'value' => 'Mise à jour manuelle',
|
||||||
|
'class' => 'buttonRed',
|
||||||
|
'disabled' => !$error
|
||||||
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user