forked from ZwiiCMS-Team/ZwiiCMS
Module translate WIP
This commit is contained in:
parent
067a416fd9
commit
45376ce0d7
@ -70,8 +70,8 @@ class install extends common {
|
|||||||
// Ajouter une clé au tableau avec le code de langue
|
// Ajouter une clé au tableau avec le code de langue
|
||||||
foreach( $files as $file) {
|
foreach( $files as $file) {
|
||||||
// La langue est-elle référencée ?
|
// La langue est-elle référencée ?
|
||||||
if (array_key_exists(basename($file, '.json'), self::$languagesUI)) {
|
if (array_key_exists(basename($file, '.json'), self::$languages)) {
|
||||||
self::$i18nFiles[basename($file, '.json')] = self::$languagesUI[basename($file, '.json')];
|
self::$i18nFiles[basename($file, '.json')] = self::$languages[basename($file, '.json')];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
chdir($dir);
|
chdir($dir);
|
||||||
|
@ -408,7 +408,7 @@ class plugin extends common {
|
|||||||
public function index() {
|
public function index() {
|
||||||
|
|
||||||
// Tableau des langues rédigées
|
// Tableau des langues rédigées
|
||||||
foreach (self::$languagesUI as $key => $value) {
|
foreach (self::$languages as $key => $value) {
|
||||||
if ($this->getData(['config','i18n', $key]) === 'site' ||
|
if ($this->getData(['config','i18n', $key]) === 'site' ||
|
||||||
$key === 'fr_FR') {
|
$key === 'fr_FR') {
|
||||||
$i18nSites[$key] = $value;
|
$i18nSites[$key] = $value;
|
||||||
|
@ -16,10 +16,12 @@
|
|||||||
class translate extends common {
|
class translate extends common {
|
||||||
|
|
||||||
public static $actions = [
|
public static $actions = [
|
||||||
/*'config' => self::GROUP_MODERATOR,*/
|
|
||||||
'index' => self::GROUP_ADMIN,
|
'index' => self::GROUP_ADMIN,
|
||||||
'copy' => self::GROUP_ADMIN,
|
'copy' => self::GROUP_ADMIN,
|
||||||
'i18n' => self::GROUP_VISITOR
|
'add' => self::GROUP_ADMIN, // Ajouter une langue de contenu
|
||||||
|
'edit' => self::GROUP_ADMIN, // Editer une langue de contenu
|
||||||
|
'delete' => self::GROUP_ADMIN, // Effacer une langue de contenu
|
||||||
|
'i18n' => self::GROUP_VISITOR,
|
||||||
];
|
];
|
||||||
|
|
||||||
// Language content
|
// Language content
|
||||||
@ -65,7 +67,7 @@ class translate extends common {
|
|||||||
// Enregistrer la langue
|
// Enregistrer la langue
|
||||||
if ($success) {
|
if ($success) {
|
||||||
$this->setData(['config', 'i18n', $toCreate, 'site' ]);
|
$this->setData(['config', 'i18n', $toCreate, 'site' ]);
|
||||||
$notification = 'Données ' . self::$languagesUI[$copyFrom] . ' copiées vers ' . self::$languagesUI[$toCreate];
|
$notification = 'Données ' . self::$languages[$copyFrom] . ' copiées vers ' . self::$languages[$toCreate];
|
||||||
} else {
|
} else {
|
||||||
$notification = "Quelque chose n\'a pas fonctionné, vérifiez les permissions.";
|
$notification = "Quelque chose n\'a pas fonctionné, vérifiez les permissions.";
|
||||||
}
|
}
|
||||||
@ -82,7 +84,7 @@ class translate extends common {
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
// Tableau des langues installées
|
// Tableau des langues installées
|
||||||
foreach (self::$languagesUI as $key => $value) {
|
foreach (self::$languages as $key => $value) {
|
||||||
if ($this->getData(['config','i18n', $key]) === 'site') {
|
if ($this->getData(['config','i18n', $key]) === 'site') {
|
||||||
self::$languagesTarget[$key] = $value;
|
self::$languagesTarget[$key] = $value;
|
||||||
}
|
}
|
||||||
@ -104,39 +106,78 @@ class translate extends common {
|
|||||||
|
|
||||||
// Soumission du formulaire
|
// Soumission du formulaire
|
||||||
if($this->isPost()) {
|
if($this->isPost()) {
|
||||||
// Edition des langues
|
|
||||||
foreach (self::$languagesUI as $keyi18n => $value) {
|
|
||||||
if ($keyi18n === 'fr_FR') continue;
|
|
||||||
|
|
||||||
// Effacement d'une langue installée
|
// Sauvegarder les langues de contenu
|
||||||
if ( is_dir( self::DATA_DIR . $keyi18n ) === true
|
$this->setData(['config', 'i18n','interface', $this->getInput('translateUI')]);
|
||||||
AND $this->getInput('translate' . strtoupper($keyi18n)) === 'delete')
|
|
||||||
{
|
// Valeurs en sortie
|
||||||
$this->removeDir( self::DATA_DIR . $keyi18n);
|
$this->addOutput([
|
||||||
// Au cas ou la langue est sélectionnée
|
'redirect' => helper::baseUrl() . $this->getUrl(),
|
||||||
helper::deleteCookie('ZWII_I18N_SITE');
|
'notification' => 'Modifications enregistrées',
|
||||||
|
'state' => true
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Active le script si une langue est en trad auto
|
// Préparation du formulaire
|
||||||
if ($script === false
|
// -------------------------
|
||||||
AND $this->getInput('translate'. strtoupper($keyi18n)) === 'script') {
|
|
||||||
$script = true;
|
foreach (self::$languages as $keyi18n => $value) {
|
||||||
}
|
// tableau des langues installées
|
||||||
|
if (is_dir(self::DATA_DIR . $keyi18n) ) {
|
||||||
|
self::$languagesInstalled [] = [
|
||||||
|
$value . '(' . $keyi18n . ')' ,
|
||||||
|
template::button('translateContentLanguageEdit' . $keyi18n, [
|
||||||
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/edit/' . $keyi18n. '/' . $_SESSION['csrf'],
|
||||||
|
'value' => template::ico('pencil'),
|
||||||
|
'help' => 'Editer les locales'
|
||||||
|
]),
|
||||||
|
template::button('translateContentLanguageDelete' .$keyi18n, [
|
||||||
|
'class' => 'buttonRed',
|
||||||
|
'href' => helper::baseUrl() . $this->getUrl(0) . '/delete/' . $keyi18n . '/' . $_SESSION['csrf'],
|
||||||
|
'value' => template::ico('trash'),
|
||||||
|
'help' => 'Supprimer cette langue'
|
||||||
|
])
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Enregistrement des données
|
}
|
||||||
/*
|
|
||||||
$this->setData(['config','i18n', [
|
|
||||||
'fr' => $this->getInput('translateFR'),
|
|
||||||
'de' => $this->getInput('translateDE'),
|
// Liste des langues disponibles
|
||||||
'en' => $this->getInput('translateEN'),
|
if (is_dir(self::I18N_DIR)) {
|
||||||
'es' => $this->getInput('translateES'),
|
$dir = getcwd();
|
||||||
'it' => $this->getInput('translateIT'),
|
chdir(self::I18N_DIR);
|
||||||
'nl' => $this->getInput('translateNL'),
|
$files = glob('*.json');
|
||||||
'pt' => $this->getInput('translatePT')
|
// Ajouter une clé au tableau avec le code de langue
|
||||||
]]);
|
foreach( $files as $file) {
|
||||||
|
// La langue est-elle référencée ?
|
||||||
|
if (array_key_exists(basename($file, '.json'), self::$languages)) {
|
||||||
|
self::$i18nFiles[basename($file, '.json')] = self::$languages[basename($file, '.json')];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
chdir($dir);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'title' => 'Multilangues',
|
||||||
|
'view' => 'index'
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***
|
||||||
|
* Ajouter unelangue de contenu
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
public function add() {
|
||||||
|
|
||||||
|
|
||||||
|
// Soumission du formulaire
|
||||||
|
if($this->isPost()) {
|
||||||
|
|
||||||
// Configuration dans des langues spécifiques
|
// Configuration dans des langues spécifiques
|
||||||
// Eviter déconnexion automatique après son activation
|
// Eviter déconnexion automatique après son activation
|
||||||
if ( $this->getData(['config','connect', 'autoDisconnect']) === false
|
if ( $this->getData(['config','connect', 'autoDisconnect']) === false
|
||||||
@ -180,17 +221,6 @@ class translate extends common {
|
|||||||
]
|
]
|
||||||
]
|
]
|
||||||
]);
|
]);
|
||||||
// Sauvegarder les langues de contenu
|
|
||||||
$this->setData(['config', 'i18n', [
|
|
||||||
'interface' => $this->getInput('translateUI'),/*
|
|
||||||
'fr' => $this->getInput('translateFR'),
|
|
||||||
'de' => $this->getInput('translateDE'),
|
|
||||||
'en' => $this->getInput('translateEN'),
|
|
||||||
'es' => $this->getInput('translateES'),
|
|
||||||
'it' => $this->getInput('translateIT'),
|
|
||||||
'nl' => $this->getInput('translateNL'),
|
|
||||||
'pt' => $this->getInput('translatePT')*/
|
|
||||||
]]);
|
|
||||||
|
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
@ -200,39 +230,10 @@ class translate extends common {
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Préparation de l'affichage du formulaire
|
// Préparation de l'affichage du formulaire
|
||||||
//-----------------------------------------
|
//-----------------------------------------
|
||||||
// Liste des langues disponibles
|
|
||||||
if (is_dir(self::I18N_DIR)) {
|
|
||||||
$dir = getcwd();
|
|
||||||
chdir(self::I18N_DIR);
|
|
||||||
$files = glob('*.json');
|
|
||||||
// Ajouter une clé au tableau avec le code de langue
|
|
||||||
foreach( $files as $file) {
|
|
||||||
// La langue est-elle référencée ?
|
|
||||||
if (array_key_exists(basename($file, '.json'), self::$languagesUI)) {
|
|
||||||
self::$i18nFiles[basename($file, '.json')] = self::$languagesUI[basename($file, '.json')];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
chdir($dir);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Modification des options de suppression de la langue installée.
|
|
||||||
foreach (self::$languagesUI as $key => $value) {
|
|
||||||
if ($this->getData(['config','i18n',$key]) === 'site') {
|
|
||||||
self::$translateOptions [$key] = [
|
|
||||||
'none' => 'Drapeau masqué',
|
|
||||||
'site' => 'Traduction rédigée',
|
|
||||||
'delete' => 'Supprimer la traduction'
|
|
||||||
];
|
|
||||||
self::$siteTranslate = $key !== 'fr_FR' ? false : true;
|
|
||||||
} else {
|
|
||||||
self::$translateOptions [$key] = [
|
|
||||||
'none' => 'Drapeau masqué',
|
|
||||||
'site' => 'Traduction rédigée'
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Générer la liste des pages disponibles
|
// Générer la liste des pages disponibles
|
||||||
self::$pagesList = $this->getData(['page']);
|
self::$pagesList = $this->getData(['page']);
|
||||||
foreach(self::$pagesList as $page => $pageId) {
|
foreach(self::$pagesList as $page => $pageId) {
|
||||||
@ -250,13 +251,119 @@ class translate extends common {
|
|||||||
unset(self::$orphansList[$page]);
|
unset(self::$orphansList[$page]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'title' => 'Multilangues',
|
'title' => 'Ajouter',
|
||||||
'view' => 'index'
|
'view' => 'add'
|
||||||
|
]);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function edit() {
|
||||||
|
|
||||||
|
// Soumission du formulaire
|
||||||
|
if($this->isPost()) {
|
||||||
|
|
||||||
|
// Configuration dans des langues spécifiques
|
||||||
|
// Eviter déconnexion automatique après son activation
|
||||||
|
if ( $this->getData(['config','connect', 'autoDisconnect']) === false
|
||||||
|
AND $this->getInput('configAutoDisconnect',helper::FILTER_BOOLEAN) === true ) {
|
||||||
|
$this->setData(['user',$this->getuser('id'),'accessCsrf',$_SESSION['csrf']]);
|
||||||
|
}
|
||||||
|
// Répercuter la suppression de la page dans la configuration du footer
|
||||||
|
if ( $this->getData(['theme','footer','displaySearch']) === true
|
||||||
|
AND $this->getInput('configSearchPageId') === 'none'
|
||||||
|
){
|
||||||
|
$this->setData(['theme', 'footer', 'displaySearch', false]);
|
||||||
|
}
|
||||||
|
if ( $this->getData(['theme','footer','displayLegal']) === true
|
||||||
|
AND $this->getInput('configLegalPageId') === 'none'
|
||||||
|
){
|
||||||
|
$this->setData(['theme', 'footer', 'displayLegal', false]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sauvegarder les locales
|
||||||
|
$this->setData([
|
||||||
|
'locale',
|
||||||
|
[
|
||||||
|
'homePageId' => $this->getInput('localeHomePageId', helper::FILTER_ID, true),
|
||||||
|
'page404' => $this->getInput('localePage404'),
|
||||||
|
'page403' => $this->getInput('localePage403'),
|
||||||
|
'page302' => $this->getInput('localePage302'),
|
||||||
|
'legalPageId' => $this->getInput('localeLegalPageId'),
|
||||||
|
'searchPageId' => $this->getInput('localeSearchPageId'),
|
||||||
|
'searchPageLabel' => empty($this->getInput('localeSearchPageLabel', helper::FILTER_STRING_SHORT)) ? 'Rechercher' : $this->getInput('localeSearchPageLabel', helper::FILTER_STRING_SHORT),
|
||||||
|
'legalPageLabel' => empty($this->getInput('localeLegalPageLabel', helper::FILTER_STRING_SHORT)) ? 'Mentions légales' : $this->getInput('localeLegalPageLabel', helper::FILTER_STRING_SHORT),
|
||||||
|
'sitemapPageLabel' => empty($this->getInput('localeSitemapPageLabel', helper::FILTER_STRING_SHORT)) ? 'Plan du site' : $this->getInput('localeSitemapPageLabel', helper::FILTER_STRING_SHORT),
|
||||||
|
'metaDescription' => $this->getInput('localeMetaDescription', helper::FILTER_STRING_LONG, true),
|
||||||
|
'title' => $this->getInput('localeTitle', helper::FILTER_STRING_SHORT, true),
|
||||||
|
'cookies' => [
|
||||||
|
// Les champs sont obligatoires si l'option consentement des cookies est active
|
||||||
|
'mainLabel' => $this->getInput('localeCookiesZwiiText', helper::FILTER_STRING_LONG, $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN)),
|
||||||
|
'titleLabel' => $this->getInput('localeCookiesTitleText', helper::FILTER_STRING_SHORT, $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN)),
|
||||||
|
'linkLegalLabel' => $this->getInput('localeCookiesLinkMlText', helper::FILTER_STRING_SHORT, $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN)),
|
||||||
|
'cookiesFooterText' => $this->getInput('localeCookiesFooterText', helper::FILTER_STRING_SHORT, $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN)),
|
||||||
|
'buttonValidLabel' =>$this->getInput('localeCookiesButtonText', helper::FILTER_STRING_SHORT, $this->getInput('configCookieConsent', helper::FILTER_BOOLEAN))
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'redirect' => helper::baseUrl() . $this->getUrl(),
|
||||||
|
'notification' => 'Modifications enregistrées',
|
||||||
|
'state' => true
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Préparation de l'affichage du formulaire
|
||||||
|
//-----------------------------------------
|
||||||
|
|
||||||
|
// Générer la liste des pages disponibles
|
||||||
|
self::$pagesList = $this->getData(['page']);
|
||||||
|
foreach(self::$pagesList as $page => $pageId) {
|
||||||
|
if ($this->getData(['page',$page,'block']) === 'bar' ||
|
||||||
|
$this->getData(['page',$page,'disable']) === true) {
|
||||||
|
unset(self::$pagesList[$page]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
self::$orphansList = $this->getData(['page']);
|
||||||
|
foreach(self::$orphansList as $page => $pageId) {
|
||||||
|
if ($this->getData(['page',$page,'block']) === 'bar' ||
|
||||||
|
$this->getData(['page',$page,'disable']) === true ||
|
||||||
|
$this->getdata(['page',$page, 'position']) !== 0) {
|
||||||
|
unset(self::$orphansList[$page]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'title' => 'Edition',
|
||||||
|
'view' => 'edit'
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
/***
|
||||||
|
* Effacer une langue de contenu
|
||||||
|
*/
|
||||||
|
public function delete() {
|
||||||
|
// Edition des langues
|
||||||
|
foreach (self::$languages as $keyi18n => $value) {
|
||||||
|
if ($keyi18n === 'fr_FR') continue;
|
||||||
|
|
||||||
|
// Effacement d'une langue installée
|
||||||
|
if ( is_dir( self::DATA_DIR . $keyi18n ) === true
|
||||||
|
AND $this->getInput('translate' . strtoupper($keyi18n)) === 'delete')
|
||||||
|
{
|
||||||
|
$this->removeDir( self::DATA_DIR . $keyi18n);
|
||||||
|
// Au cas ou la langue est sélectionnée
|
||||||
|
helper::deleteCookie('ZWII_I18N_SITE');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Traitement du changement de langue
|
* Traitement du changement de langue
|
||||||
|
20
core/module/translate/view/add/add.css
Normal file
20
core/module/translate/view/add/add.css
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
/**
|
||||||
|
* This file is part of Zwii.
|
||||||
|
*
|
||||||
|
* For full copyright and license information, please see the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*
|
||||||
|
* @author Rémi Jean <remi.jean@outlook.com>
|
||||||
|
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
||||||
|
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||||
|
* @copyright Copyright (C) 2018-2022, Frédéric Tempez
|
||||||
|
* @license GNU General Public License, version 3
|
||||||
|
* @link http://zwiicms.fr/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/** @import url("site/data/admin.css"); */
|
||||||
|
|
||||||
|
/** NE PAS EFFACER
|
||||||
|
* admin.css
|
||||||
|
*/
|
188
core/module/translate/view/add/add.php
Normal file
188
core/module/translate/view/add/add.php
Normal file
@ -0,0 +1,188 @@
|
|||||||
|
|
||||||
|
<?php echo template::formOpen('translateForm'); ?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Identité du site
|
||||||
|
<span id="localeHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
||||||
|
<a href="https://doc.zwiicms.fr/localisation-et-identite" target="_blank">
|
||||||
|
<?php echo template::ico('help', ['margin' => 'left']);?>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<?php echo template::text('localeTitle', [
|
||||||
|
'label' => 'Titre du site' ,
|
||||||
|
'value' => $this->getData(['locale', 'title']),
|
||||||
|
'help' => 'Il apparaît dans la barre de titre et les partages sur les réseaux sociaux.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<?php echo template::textarea('localeMetaDescription', [
|
||||||
|
'label' => 'Description du site',
|
||||||
|
'value' => $this->getData(['locale', 'metaDescription']),
|
||||||
|
'help' => 'La description d\'une page participe à son référencement, chaque page doit disposer d\'une description différente.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Assignation des pages spéciales
|
||||||
|
<span id="localeHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
||||||
|
<a href="https://doc.zwiicms.fr/localisation-et-identite" target="_blank">
|
||||||
|
<?php echo template::ico('help', ['margin' => 'left']);?>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('localeHomePageId', helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC'), [
|
||||||
|
'label' => 'Accueil du site',
|
||||||
|
'selected' =>$this->getData(['locale', 'homePageId']),
|
||||||
|
'help' => 'La première page que vos visiteurs verront.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('localePage403', array_merge(['none' => 'Page par défaut'],helper::arrayColumn($module::$orphansList, 'title', 'SORT_ASC')), [
|
||||||
|
'label' => 'Accès interdit, erreur 403',
|
||||||
|
'selected' =>$this->getData(['locale', 'page403']),
|
||||||
|
'help' => 'Cette page ne doit pas apparaître dans l\'arborescence du menu. Créez une page orpheline.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('localePage404', array_merge(['none' => 'Page par défaut'],helper::arrayColumn($module::$orphansList, 'title', 'SORT_ASC')), [
|
||||||
|
'label' => 'Page inexistante, erreur 404',
|
||||||
|
'selected' =>$this->getData(['locale', 'page404']),
|
||||||
|
'help' => 'Cette page ne doit pas apparaître dans l\'arborescence du menu. Créez une page orpheline.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('localeLegalPageId', array_merge(['none' => 'Aucune'] , helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC') ) , [
|
||||||
|
'label' => 'Mentions légales',
|
||||||
|
'selected' => $this->getData(['locale', 'legalPageId']),
|
||||||
|
'help' => 'Les mentions légales sont obligatoires en France. Une option du pied de page ajoute un lien discret vers cette page.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('localeSearchPageId', array_merge(['none' => 'Aucune'] , helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC') ) , [
|
||||||
|
'label' => 'Recherche dans le site',
|
||||||
|
'selected' => $this->getData(['locale', 'searchPageId']),
|
||||||
|
'help' => 'Sélectionnez une page contenant le module \'Recherche\'. Une option du pied de page ajoute un lien discret vers cette page.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php
|
||||||
|
echo template::select('localePage302', array_merge(['none' => 'Page par défaut'],helper::arrayColumn($module::$orphansList, 'title', 'SORT_ASC')), [
|
||||||
|
'label' => 'Site en maintenance',
|
||||||
|
'selected' =>$this->getData(['locale', 'page302']),
|
||||||
|
'help' => 'Cette page ne doit pas apparaître dans l\'arborescence du menu. Créez une page orpheline.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Etiquettes des pages spéciales
|
||||||
|
<span id="labelHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
||||||
|
<a href="https://doc.zwiicms.fr/etiquettes-des-pages-speciales" target="_blank">
|
||||||
|
<?php echo template::ico('help', ['margin' => 'left']);?>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeLegalPageLabel', [
|
||||||
|
'label' => 'Mentions légales',
|
||||||
|
'placeholder' => 'Mentions légales',
|
||||||
|
'value' => $this->getData(['locale', 'legalPageLabel'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeSearchPageLabel', [
|
||||||
|
'label' => 'Rechercher',
|
||||||
|
'placeholder' => 'Rechercher',
|
||||||
|
'value' => $this->getData(['locale', 'searchPageLabel'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeSitemapPageLabel', [
|
||||||
|
'label' => 'Plan du site',
|
||||||
|
'placeholder' => 'Plan du site',
|
||||||
|
'value' => $this->getData(['locale', 'sitemapPageLabel']),
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeCookiesFooterText', [
|
||||||
|
'label' => 'Cookies',
|
||||||
|
'value' => $this->getData(['locale', 'cookies', 'cookiesFooterText']),
|
||||||
|
'placeHolder' => 'Cookies'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Message d'acceptation des Cookies
|
||||||
|
<span id="specialeHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
||||||
|
<a href="https://doc.zwiicms.fr/cookies" target="_blank">
|
||||||
|
<?php echo template::ico('help', ['margin' => 'left']);?>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeCookiesTitleText', [
|
||||||
|
'help' => 'Saisissez le titre de la fenêtre de gestion des cookies.',
|
||||||
|
'label' => 'Titre de la fenêtre',
|
||||||
|
'value' => $this->getData(['locale', 'cookies', 'titleLabel']),
|
||||||
|
'placeHolder' => 'Gérer les cookies'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeCookiesButtonText', [
|
||||||
|
'label' => 'Bouton de validation',
|
||||||
|
'value' => $this->getData(['locale', 'cookies', 'buttonValidLabel']),
|
||||||
|
'placeHolder' => 'J\'ai compris'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col8">
|
||||||
|
<?php echo template::textarea('localeCookiesZwiiText', [
|
||||||
|
'help' => 'Saisissez le message pour les cookies déposés par ZwiiCMS, nécessaires au fonctionnement et qui ne nécessitent pas de consentement.',
|
||||||
|
'label' => 'Cookies Zwii',
|
||||||
|
'value' => $this->getData(['locale', 'cookies', 'mainLabel']),
|
||||||
|
'placeHolder' => 'Ce site utilise des cookies nécessaires à son fonctionnement, ils permettent de fluidifier son fonctionnement par exemple en mémorisant les données de connexion, la langue que vous avez choisie ou la validation de ce message.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::text('localeCookiesLinkMlText', [
|
||||||
|
'help' => 'Saisissez le texte du lien vers les mentions légales,la page doit être définie dans la configuration du site.',
|
||||||
|
'label' => 'Lien page des mentions légales.',
|
||||||
|
'value' => $this->getData(['locale', 'cookies', 'linkLegalLabel']),
|
||||||
|
'placeHolder' => 'Consulter les mentions légales'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php echo template::formClose(); ?>
|
20
core/module/translate/view/edit/edit.css
Normal file
20
core/module/translate/view/edit/edit.css
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
/**
|
||||||
|
* This file is part of Zwii.
|
||||||
|
*
|
||||||
|
* For full copyright and license information, please see the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*
|
||||||
|
* @author Rémi Jean <remi.jean@outlook.com>
|
||||||
|
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
||||||
|
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||||
|
* @copyright Copyright (C) 2018-2022, Frédéric Tempez
|
||||||
|
* @license GNU General Public License, version 3
|
||||||
|
* @link http://zwiicms.fr/
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/** @import url("site/data/admin.css"); */
|
||||||
|
|
||||||
|
/** NE PAS EFFACER
|
||||||
|
* admin.css
|
||||||
|
*/
|
188
core/module/translate/view/edit/edit.php
Normal file
188
core/module/translate/view/edit/edit.php
Normal file
@ -0,0 +1,188 @@
|
|||||||
|
|
||||||
|
<?php echo template::formOpen('translateForm'); ?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Identité du site
|
||||||
|
<span id="localeHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
||||||
|
<a href="https://doc.zwiicms.fr/localisation-et-identite" target="_blank">
|
||||||
|
<?php echo template::ico('help', ['margin' => 'left']);?>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<?php echo template::text('localeTitle', [
|
||||||
|
'label' => 'Titre du site' ,
|
||||||
|
'value' => $this->getData(['locale', 'title']),
|
||||||
|
'help' => 'Il apparaît dans la barre de titre et les partages sur les réseaux sociaux.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<?php echo template::textarea('localeMetaDescription', [
|
||||||
|
'label' => 'Description du site',
|
||||||
|
'value' => $this->getData(['locale', 'metaDescription']),
|
||||||
|
'help' => 'La description d\'une page participe à son référencement, chaque page doit disposer d\'une description différente.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Assignation des pages spéciales
|
||||||
|
<span id="localeHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
||||||
|
<a href="https://doc.zwiicms.fr/localisation-et-identite" target="_blank">
|
||||||
|
<?php echo template::ico('help', ['margin' => 'left']);?>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('localeHomePageId', helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC'), [
|
||||||
|
'label' => 'Accueil du site',
|
||||||
|
'selected' =>$this->getData(['locale', 'homePageId']),
|
||||||
|
'help' => 'La première page que vos visiteurs verront.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('localePage403', array_merge(['none' => 'Page par défaut'],helper::arrayColumn($module::$orphansList, 'title', 'SORT_ASC')), [
|
||||||
|
'label' => 'Accès interdit, erreur 403',
|
||||||
|
'selected' =>$this->getData(['locale', 'page403']),
|
||||||
|
'help' => 'Cette page ne doit pas apparaître dans l\'arborescence du menu. Créez une page orpheline.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('localePage404', array_merge(['none' => 'Page par défaut'],helper::arrayColumn($module::$orphansList, 'title', 'SORT_ASC')), [
|
||||||
|
'label' => 'Page inexistante, erreur 404',
|
||||||
|
'selected' =>$this->getData(['locale', 'page404']),
|
||||||
|
'help' => 'Cette page ne doit pas apparaître dans l\'arborescence du menu. Créez une page orpheline.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('localeLegalPageId', array_merge(['none' => 'Aucune'] , helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC') ) , [
|
||||||
|
'label' => 'Mentions légales',
|
||||||
|
'selected' => $this->getData(['locale', 'legalPageId']),
|
||||||
|
'help' => 'Les mentions légales sont obligatoires en France. Une option du pied de page ajoute un lien discret vers cette page.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::select('localeSearchPageId', array_merge(['none' => 'Aucune'] , helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC') ) , [
|
||||||
|
'label' => 'Recherche dans le site',
|
||||||
|
'selected' => $this->getData(['locale', 'searchPageId']),
|
||||||
|
'help' => 'Sélectionnez une page contenant le module \'Recherche\'. Une option du pied de page ajoute un lien discret vers cette page.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col4">
|
||||||
|
<?php
|
||||||
|
echo template::select('localePage302', array_merge(['none' => 'Page par défaut'],helper::arrayColumn($module::$orphansList, 'title', 'SORT_ASC')), [
|
||||||
|
'label' => 'Site en maintenance',
|
||||||
|
'selected' =>$this->getData(['locale', 'page302']),
|
||||||
|
'help' => 'Cette page ne doit pas apparaître dans l\'arborescence du menu. Créez une page orpheline.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Etiquettes des pages spéciales
|
||||||
|
<span id="labelHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
||||||
|
<a href="https://doc.zwiicms.fr/etiquettes-des-pages-speciales" target="_blank">
|
||||||
|
<?php echo template::ico('help', ['margin' => 'left']);?>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeLegalPageLabel', [
|
||||||
|
'label' => 'Mentions légales',
|
||||||
|
'placeholder' => 'Mentions légales',
|
||||||
|
'value' => $this->getData(['locale', 'legalPageLabel'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeSearchPageLabel', [
|
||||||
|
'label' => 'Rechercher',
|
||||||
|
'placeholder' => 'Rechercher',
|
||||||
|
'value' => $this->getData(['locale', 'searchPageLabel'])
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeSitemapPageLabel', [
|
||||||
|
'label' => 'Plan du site',
|
||||||
|
'placeholder' => 'Plan du site',
|
||||||
|
'value' => $this->getData(['locale', 'sitemapPageLabel']),
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeCookiesFooterText', [
|
||||||
|
'label' => 'Cookies',
|
||||||
|
'value' => $this->getData(['locale', 'cookies', 'cookiesFooterText']),
|
||||||
|
'placeHolder' => 'Cookies'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col12">
|
||||||
|
<div class="block">
|
||||||
|
<h4>Message d'acceptation des Cookies
|
||||||
|
<span id="specialeHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
||||||
|
<a href="https://doc.zwiicms.fr/cookies" target="_blank">
|
||||||
|
<?php echo template::ico('help', ['margin' => 'left']);?>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</h4>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeCookiesTitleText', [
|
||||||
|
'help' => 'Saisissez le titre de la fenêtre de gestion des cookies.',
|
||||||
|
'label' => 'Titre de la fenêtre',
|
||||||
|
'value' => $this->getData(['locale', 'cookies', 'titleLabel']),
|
||||||
|
'placeHolder' => 'Gérer les cookies'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
<div class="col6">
|
||||||
|
<?php echo template::text('localeCookiesButtonText', [
|
||||||
|
'label' => 'Bouton de validation',
|
||||||
|
'value' => $this->getData(['locale', 'cookies', 'buttonValidLabel']),
|
||||||
|
'placeHolder' => 'J\'ai compris'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col8">
|
||||||
|
<?php echo template::textarea('localeCookiesZwiiText', [
|
||||||
|
'help' => 'Saisissez le message pour les cookies déposés par ZwiiCMS, nécessaires au fonctionnement et qui ne nécessitent pas de consentement.',
|
||||||
|
'label' => 'Cookies Zwii',
|
||||||
|
'value' => $this->getData(['locale', 'cookies', 'mainLabel']),
|
||||||
|
'placeHolder' => 'Ce site utilise des cookies nécessaires à son fonctionnement, ils permettent de fluidifier son fonctionnement par exemple en mémorisant les données de connexion, la langue que vous avez choisie ou la validation de ce message.'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col4">
|
||||||
|
<?php echo template::text('localeCookiesLinkMlText', [
|
||||||
|
'help' => 'Saisissez le texte du lien vers les mentions légales,la page doit être définie dans la configuration du site.',
|
||||||
|
'label' => 'Lien page des mentions légales.',
|
||||||
|
'value' => $this->getData(['locale', 'cookies', 'linkLegalLabel']),
|
||||||
|
'placeHolder' => 'Consulter les mentions légales'
|
||||||
|
]); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php echo template::formClose(); ?>
|
@ -60,263 +60,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php /** ?>
|
|
||||||
<div id="contentContainer" class="tabContent">
|
<div id="contentContainer" class="tabContent">
|
||||||
<div class="row">
|
<?php if($module::$languagesInstalled): ?>
|
||||||
<div class="col12">
|
<?php echo template::table([10, 1, 1], $module::$languagesInstalled, ['Langue', '', '']); ?>
|
||||||
<div class="block" id="flagsWrapper">
|
<?php else: ?>
|
||||||
<h4>
|
<?php echo template::speech('Aucune news.'); ?>
|
||||||
<?php echo template::topic('Traduction du contenu'); ?>
|
<?php endif; ?>
|
||||||
</h4>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col3">
|
|
||||||
<?php echo template::select('translateFR', ['none'=>'Drapeau masqué','site'=>'Drapeau affiché'], [
|
|
||||||
'label' => template::flag('', '30px'),
|
|
||||||
'selected' => $this->getData(['config', 'i18n' , 'fr']),
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col3">
|
|
||||||
<div class="col12">
|
|
||||||
<?php echo template::select('translateDE', $module::$translateOptions['de'], [
|
|
||||||
'label' => template::flag('de', '30px'),
|
|
||||||
'class' => 'translateFlagSelect',
|
|
||||||
'selected' => $this->getData(['config', 'i18n' , 'de'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col12">
|
|
||||||
<?php echo template::select('translateEN', $module::$translateOptions['en'], [
|
|
||||||
'label' => template::flag('en', '30px'),
|
|
||||||
'class' => 'translateFlagSelect',
|
|
||||||
'selected' => $this->getData(['config', 'i18n' , 'en'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col3">
|
|
||||||
<div class="col12">
|
|
||||||
<?php echo template::select('translateES', $module::$translateOptions['es'], [
|
|
||||||
'label' => template::flag('es', '30px'),
|
|
||||||
'class' => 'translateFlagSelect',
|
|
||||||
'selected' => $this->getData(['config', 'i18n' , 'es'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col12">
|
|
||||||
<?php echo template::select('translateIT', $module::$translateOptions['it'], [
|
|
||||||
'label' => template::flag('it', '30px'),
|
|
||||||
'class' => 'translateFlagSelect',
|
|
||||||
'selected' => $this->getData(['config', 'i18n' , 'it'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col3">
|
|
||||||
<div class="col12">
|
|
||||||
<?php echo template::select('translateNL', $module::$translateOptions['nl'], [
|
|
||||||
'label' => template::flag('nl', '30px'),
|
|
||||||
'class' => 'translateFlagSelect',
|
|
||||||
'selected' => $this->getData(['config', 'i18n' , 'nl'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col12">
|
|
||||||
<?php echo template::select('translatePT', $module::$translateOptions['pt'], [
|
|
||||||
'label' => template::flag('pt', '30px'),
|
|
||||||
'class' => 'translateFlagSelect',
|
|
||||||
'selected' => $this->getData(['config', 'i18n' , 'pt'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col12">
|
|
||||||
<h1>Configuration du contenu du site en <?php echo template::flag('site', '20px');?></h1>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col12">
|
|
||||||
<div class="block">
|
|
||||||
<h4>Identité du site
|
|
||||||
<span id="localeHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
|
||||||
<a href="https://doc.zwiicms.fr/localisation-et-identite" target="_blank">
|
|
||||||
<?php echo template::ico('help', ['margin' => 'left']);?>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</h4>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col12">
|
|
||||||
<?php echo template::text('localeTitle', [
|
|
||||||
'label' => 'Titre du site' ,
|
|
||||||
'value' => $this->getData(['locale', 'title']),
|
|
||||||
'help' => 'Il apparaît dans la barre de titre et les partages sur les réseaux sociaux.'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col12">
|
|
||||||
<?php echo template::textarea('localeMetaDescription', [
|
|
||||||
'label' => 'Description du site',
|
|
||||||
'value' => $this->getData(['locale', 'metaDescription']),
|
|
||||||
'help' => 'La description d\'une page participe à son référencement, chaque page doit disposer d\'une description différente.'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col12">
|
|
||||||
<div class="block">
|
|
||||||
<h4>Assignation des pages spéciales
|
|
||||||
<span id="localeHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
|
||||||
<a href="https://doc.zwiicms.fr/localisation-et-identite" target="_blank">
|
|
||||||
<?php echo template::ico('help', ['margin' => 'left']);?>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</h4>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::select('localeHomePageId', helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC'), [
|
|
||||||
'label' => 'Accueil du site',
|
|
||||||
'selected' =>$this->getData(['locale', 'homePageId']),
|
|
||||||
'help' => 'La première page que vos visiteurs verront.'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::select('localePage403', array_merge(['none' => 'Page par défaut'],helper::arrayColumn($module::$orphansList, 'title', 'SORT_ASC')), [
|
|
||||||
'label' => 'Accès interdit, erreur 403',
|
|
||||||
'selected' =>$this->getData(['locale', 'page403']),
|
|
||||||
'help' => 'Cette page ne doit pas apparaître dans l\'arborescence du menu. Créez une page orpheline.'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::select('localePage404', array_merge(['none' => 'Page par défaut'],helper::arrayColumn($module::$orphansList, 'title', 'SORT_ASC')), [
|
|
||||||
'label' => 'Page inexistante, erreur 404',
|
|
||||||
'selected' =>$this->getData(['locale', 'page404']),
|
|
||||||
'help' => 'Cette page ne doit pas apparaître dans l\'arborescence du menu. Créez une page orpheline.'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::select('localeLegalPageId', array_merge(['none' => 'Aucune'] , helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC') ) , [
|
|
||||||
'label' => 'Mentions légales',
|
|
||||||
'selected' => $this->getData(['locale', 'legalPageId']),
|
|
||||||
'help' => 'Les mentions légales sont obligatoires en France. Une option du pied de page ajoute un lien discret vers cette page.'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::select('localeSearchPageId', array_merge(['none' => 'Aucune'] , helper::arrayColumn($module::$pagesList, 'title', 'SORT_ASC') ) , [
|
|
||||||
'label' => 'Recherche dans le site',
|
|
||||||
'selected' => $this->getData(['locale', 'searchPageId']),
|
|
||||||
'help' => 'Sélectionnez une page contenant le module \'Recherche\'. Une option du pied de page ajoute un lien discret vers cette page.'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col4">
|
|
||||||
<?php
|
|
||||||
echo template::select('localePage302', array_merge(['none' => 'Page par défaut'],helper::arrayColumn($module::$orphansList, 'title', 'SORT_ASC')), [
|
|
||||||
'label' => 'Site en maintenance',
|
|
||||||
'selected' =>$this->getData(['locale', 'page302']),
|
|
||||||
'help' => 'Cette page ne doit pas apparaître dans l\'arborescence du menu. Créez une page orpheline.'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col12">
|
|
||||||
<div class="block">
|
|
||||||
<h4>Etiquettes des pages spéciales
|
|
||||||
<span id="labelHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
|
||||||
<a href="https://doc.zwiicms.fr/etiquettes-des-pages-speciales" target="_blank">
|
|
||||||
<?php echo template::ico('help', ['margin' => 'left']);?>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</h4>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('localeLegalPageLabel', [
|
|
||||||
'label' => 'Mentions légales',
|
|
||||||
'placeholder' => 'Mentions légales',
|
|
||||||
'value' => $this->getData(['locale', 'legalPageLabel'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('localeSearchPageLabel', [
|
|
||||||
'label' => 'Rechercher',
|
|
||||||
'placeholder' => 'Rechercher',
|
|
||||||
'value' => $this->getData(['locale', 'searchPageLabel'])
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('localeSitemapPageLabel', [
|
|
||||||
'label' => 'Plan du site',
|
|
||||||
'placeholder' => 'Plan du site',
|
|
||||||
'value' => $this->getData(['locale', 'sitemapPageLabel']),
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('localeCookiesFooterText', [
|
|
||||||
'label' => 'Cookies',
|
|
||||||
'value' => $this->getData(['locale', 'cookies', 'cookiesFooterText']),
|
|
||||||
'placeHolder' => 'Cookies'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col12">
|
|
||||||
<div class="block">
|
|
||||||
<h4>Message d'acceptation des Cookies
|
|
||||||
<span id="specialeHelpButton" class="helpDisplayButton" title="Cliquer pour consulter l'aide en ligne">
|
|
||||||
<a href="https://doc.zwiicms.fr/cookies" target="_blank">
|
|
||||||
<?php echo template::ico('help', ['margin' => 'left']);?>
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</h4>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('localeCookiesTitleText', [
|
|
||||||
'help' => 'Saisissez le titre de la fenêtre de gestion des cookies.',
|
|
||||||
'label' => 'Titre de la fenêtre',
|
|
||||||
'value' => $this->getData(['locale', 'cookies', 'titleLabel']),
|
|
||||||
'placeHolder' => 'Gérer les cookies'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
<div class="col6">
|
|
||||||
<?php echo template::text('localeCookiesButtonText', [
|
|
||||||
'label' => 'Bouton de validation',
|
|
||||||
'value' => $this->getData(['locale', 'cookies', 'buttonValidLabel']),
|
|
||||||
'placeHolder' => 'J\'ai compris'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col8">
|
|
||||||
<?php echo template::textarea('localeCookiesZwiiText', [
|
|
||||||
'help' => 'Saisissez le message pour les cookies déposés par ZwiiCMS, nécessaires au fonctionnement et qui ne nécessitent pas de consentement.',
|
|
||||||
'label' => 'Cookies Zwii',
|
|
||||||
'value' => $this->getData(['locale', 'cookies', 'mainLabel']),
|
|
||||||
'placeHolder' => 'Ce site utilise des cookies nécessaires à son fonctionnement, ils permettent de fluidifier son fonctionnement par exemple en mémorisant les données de connexion, la langue que vous avez choisie ou la validation de ce message.'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col4">
|
|
||||||
<?php echo template::text('localeCookiesLinkMlText', [
|
|
||||||
'help' => 'Saisissez le texte du lien vers les mentions légales,la page doit être définie dans la configuration du site.',
|
|
||||||
'label' => 'Lien page des mentions légales.',
|
|
||||||
'value' => $this->getData(['locale', 'cookies', 'linkLegalLabel']),
|
|
||||||
'placeHolder' => 'Consulter les mentions légales'
|
|
||||||
]); ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
**/ ?>
|
|
||||||
<?php echo template::formClose(); ?>
|
<?php echo template::formClose(); ?>
|
||||||
|
@ -327,6 +327,7 @@
|
|||||||
"Multilangues": "",
|
"Multilangues": "",
|
||||||
"Langue de l'interface": "",
|
"Langue de l'interface": "",
|
||||||
"Langues du contenu": "",
|
"Langues du contenu": "",
|
||||||
|
"Traduction des messages": "",
|
||||||
"Traductions installées": "",
|
"Traductions installées": "",
|
||||||
"Langue de l'administration": "",
|
"Langue de l'administration": "",
|
||||||
"Langues installées": "",
|
"Langues installées": "",
|
||||||
|
@ -327,6 +327,7 @@
|
|||||||
"Multilangues": "",
|
"Multilangues": "",
|
||||||
"Langue de l'interface": "",
|
"Langue de l'interface": "",
|
||||||
"Langues du contenu": "",
|
"Langues du contenu": "",
|
||||||
|
"Traduction des messages": "",
|
||||||
"Traductions installées": "",
|
"Traductions installées": "",
|
||||||
"Langue de l'administration": "",
|
"Langue de l'administration": "",
|
||||||
"Langues installées": "",
|
"Langues installées": "",
|
||||||
|
Loading…
Reference in New Issue
Block a user