2020-11-11 19:48:07 +01:00
< ? php
/**
* 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
2021-02-17 13:49:58 +01:00
* @ author Frédéric Tempez < frederic . tempez @ outlook . com >
2021-12-18 10:25:33 +01:00
* @ copyright Copyright ( C ) 2018 - 2022 , Frédéric Tempez
2020-11-11 19:48:07 +01:00
* @ license GNU General Public License , version 3
* @ link http :// zwiicms . fr /
*/
2022-09-29 08:45:59 +02:00
class translate extends common
{
2020-11-11 19:48:07 +01:00
public static $actions = [
2021-06-04 13:57:44 +02:00
'index' => self :: GROUP_ADMIN ,
'copy' => self :: GROUP_ADMIN ,
2022-09-26 14:54:15 +02:00
'add' => self :: GROUP_ADMIN , // Ajouter une langue de contenu
2022-10-14 19:18:48 +02:00
'ui' => self :: GROUP_ADMIN , // Éditer une langue de l'UI
'locale' => self :: GROUP_ADMIN , // Éditer une langue de contenu
2022-12-26 12:05:01 +01:00
'delete' => self :: GROUP_ADMIN , // Effacer une langue de contenu ou de l'interface
2022-09-29 19:08:32 +02:00
'content' => self :: GROUP_VISITOR ,
2022-12-20 15:24:52 +01:00
'update' => self :: GROUP_ADMIN ,
2020-11-11 19:48:07 +01:00
];
2020-11-26 08:59:04 +01:00
2022-10-15 09:00:53 +02:00
const PAGINATION = '20' ;
2022-09-27 11:25:05 +02:00
// Language contents
2021-06-04 13:57:44 +02:00
public static $translateOptions = [];
2022-10-15 09:00:53 +02:00
2022-09-24 17:27:15 +02:00
// Page pour la configuration dans la langue
2022-08-29 22:04:57 +02:00
public static $pagesList = [];
public static $orphansList = [];
2022-10-15 09:00:53 +02:00
public static $pages = '' ;
2021-06-04 13:57:44 +02:00
// Liste des langues installées
2022-10-14 19:18:48 +02:00
public static $languagesUiInstalled = [];
2021-06-04 13:57:44 +02:00
public static $languagesInstalled = [];
2022-10-15 09:00:53 +02:00
2021-06-04 13:57:44 +02:00
// Liste des langues cibles
public static $languagesTarget = [];
2022-10-15 09:00:53 +02:00
2021-06-04 13:57:44 +02:00
// Activation du bouton de copie
2022-09-28 15:58:35 +02:00
public static $siteCopy = true ;
2022-10-15 09:00:53 +02:00
2022-09-27 11:25:05 +02:00
// Localisation en cours d'édition
public static $locales = [];
2021-06-04 13:57:44 +02:00
2022-09-24 17:27:15 +02:00
//UI
2022-09-21 09:53:50 +02:00
// Fichiers des langues de l'interface
public static $i18nFiles = [];
2022-09-19 11:40:39 +02:00
2022-12-20 15:24:52 +01:00
/**
* Met à jour les traduction du site
*/
public function update ()
{
$response = $this -> copyDir ( 'core/module/install/ressource/i18n' , self :: I18N_DIR );
// Valeurs en sortie
$this -> addOutput ([
'redirect' => helper :: baseUrl () . 'translate' ,
'notification' => $response ? helper :: translate ( 'Copie terminée avec succès' ) : 'Copie terminée avec des erreurs' ,
'state' => $response
]);
}
2021-06-04 13:57:44 +02:00
/**
* Configuration avancée des langues
*/
2022-09-29 08:45:59 +02:00
public function copy ()
{
2021-06-04 13:57:44 +02:00
// Soumission du formulaire
if ( $this -> isPost ()) {
// Initialisation
$success = false ;
$copyFrom = $this -> getInput ( 'translateFormCopySource' );
$toCreate = $this -> getInput ( 'translateFormCopyTarget' );
if ( $copyFrom !== $toCreate ) {
// Création du dossier
2022-09-29 08:45:59 +02:00
if ( is_dir ( self :: DATA_DIR . $toCreate ) === false ) { // Si le dossier est déjà créé
$success = mkdir ( self :: DATA_DIR . $toCreate , 0755 );
$success = mkdir ( self :: DATA_DIR . $toCreate . '/content' , 0755 );
2021-06-04 13:57:44 +02:00
} else {
$success = true ;
}
2022-09-29 10:55:20 +02:00
// Copier les données par défaut
2022-09-29 08:45:59 +02:00
$success = ( copy ( self :: DATA_DIR . $copyFrom . '/locale.json' , self :: DATA_DIR . $toCreate . '/locale.json' ) === true && $success === true ) ? true : false ;
$success = ( copy ( self :: DATA_DIR . $copyFrom . '/module.json' , self :: DATA_DIR . $toCreate . '/module.json' ) === true && $success === true ) ? true : false ;
$success = ( copy ( self :: DATA_DIR . $copyFrom . '/page.json' , self :: DATA_DIR . $toCreate . '/page.json' ) === true && $success === true ) ? true : false ;
$success = ( $this -> copyDir ( self :: DATA_DIR . $copyFrom . '/content' , self :: DATA_DIR . $toCreate . '/content' ) === true && $success === true ) ? true : false ;
2021-06-04 13:57:44 +02:00
// Enregistrer la langue
if ( $success ) {
2022-10-11 10:33:44 +02:00
$notification = sprintf ( helper :: translate ( 'Données %s copiées vers %s' ), self :: $languages [ $copyFrom ], self :: $languages [ $toCreate ]);
2021-06-04 13:57:44 +02:00
} else {
2022-10-11 10:33:44 +02:00
$notification = helper :: translate ( 'Erreur de copie, vérifiez les permissions' );
2021-06-04 13:57:44 +02:00
}
} else {
$success = false ;
2022-10-11 10:33:44 +02:00
$notification = helper :: translate ( 'Les langues sélectionnées sont identiques' );
2021-06-04 13:57:44 +02:00
}
// Valeurs en sortie
$this -> addOutput ([
'notification' => $notification ,
'title' => 'Utilitaire de copie' ,
'view' => 'index' ,
'state' => $success
]);
}
2022-09-29 10:55:20 +02:00
2021-06-04 13:57:44 +02:00
// Tableau des langues installées
2022-09-26 14:54:15 +02:00
foreach ( self :: $languages as $key => $value ) {
2022-09-29 10:55:20 +02:00
// tableau des langues installées
if ( is_dir ( self :: DATA_DIR . $key )) {
2022-09-29 19:08:32 +02:00
self :: $languagesTarget [ $key ] = self :: $languages [ $key ];
2021-06-04 13:57:44 +02:00
}
}
2022-09-29 10:55:20 +02:00
2021-06-04 13:57:44 +02:00
// Langues cibles fr en plus
2022-09-29 10:55:20 +02:00
self :: $languagesInstalled = self :: $languagesTarget ;
2021-06-04 13:57:44 +02:00
// Valeurs en sortie
$this -> addOutput ([
2022-10-02 10:59:42 +02:00
'title' => helper :: translate ( 'Copie de contenus localisés' ),
2021-06-04 13:57:44 +02:00
'view' => 'copy'
]);
}
2020-11-11 19:48:07 +01:00
/**
* Configuration
*/
2022-09-29 08:45:59 +02:00
public function index ()
{
2020-11-25 08:21:52 +01:00
2022-09-26 14:54:15 +02:00
// Préparation du formulaire
// -------------------------
2022-09-26 16:30:40 +02:00
// Onglet des langues de contenu
2022-09-29 10:55:20 +02:00
foreach ( self :: $languages as $key => $value ) {
2022-09-26 14:54:15 +02:00
// tableau des langues installées
2022-09-29 10:55:20 +02:00
if ( is_dir ( self :: DATA_DIR . $key )) {
2022-10-26 15:53:26 +02:00
if ( self :: $i18nUI === $key ) {
2022-12-26 12:05:01 +01:00
$messageLocale = helper :: translate ( 'Langue par défaut' );
2022-10-26 15:53:26 +02:00
} elseif ( isset ( $_COOKIE [ 'ZWII_CONTENT' ]) && $_COOKIE [ 'ZWII_CONTENT' ] === $key ) {
2022-12-26 12:05:01 +01:00
$messageLocale = helper :: translate ( 'Langue du site sélectionnée' );
2022-10-26 15:53:26 +02:00
} else {
2022-12-26 12:05:01 +01:00
$messageLocale = '' ;
2022-10-26 15:53:26 +02:00
}
2022-09-29 08:45:59 +02:00
self :: $languagesInstalled [] = [
2022-09-30 11:43:14 +02:00
template :: flag ( $key , '20 %' ),
2022-09-29 10:55:20 +02:00
$value . ' (' . $key . ')' ,
2022-12-26 12:05:01 +01:00
$messageLocale ,
template :: button ( 'translateContentLanguageLocaleEdit' . $key , [
2022-10-15 09:00:53 +02:00
'href' => helper :: baseUrl () . $this -> getUrl ( 0 ) . '/locale/' . $key ,
2022-10-14 19:18:48 +02:00
'value' => template :: ico ( 'pencil' ),
2022-10-02 10:59:42 +02:00
'help' => 'Éditer'
2022-09-26 14:54:15 +02:00
]),
2022-12-26 12:05:01 +01:00
template :: button ( 'translateContentLanguageLocaleDelete' . $key , [
'class' => 'translateDeleteLocale buttonRed' . ( $messageLocale ? ' disabled' : '' ),
'href' => helper :: baseUrl () . $this -> getUrl ( 0 ) . '/delete/locale/' . $key . '/' . $_SESSION [ 'csrf' ],
2022-09-26 14:54:15 +02:00
'value' => template :: ico ( 'trash' ),
2022-10-26 15:53:26 +02:00
'help' => 'Supprimer' ,
2022-09-26 14:54:15 +02:00
])
];
}
2022-09-26 16:30:40 +02:00
}
2022-09-28 15:58:35 +02:00
// Activation du bouton de copie
self :: $siteCopy = count ( self :: $languagesInstalled ) > 1 ? false : true ;
2022-12-18 11:34:06 +01:00
2022-10-14 19:18:48 +02:00
// Onglet des langues de l'interface
2022-09-26 14:54:15 +02:00
if ( is_dir ( self :: I18N_DIR )) {
$dir = getcwd ();
chdir ( self :: I18N_DIR );
$files = glob ( '*.json' );
chdir ( $dir );
}
2022-12-18 11:34:06 +01:00
2022-10-14 19:18:48 +02:00
// Construit le tableau des langues de l'UI
2022-12-26 12:05:01 +01:00
$usersUI = [];
$users = $this -> getData ([ 'user' ]);
foreach ( $users as $key => $value ) {
array_push ( $usersUI , $this -> getData ([ 'user' , $key , 'language' ]));
}
// Construction du tableau
2022-10-14 19:18:48 +02:00
foreach ( $files as $file ) {
2022-12-26 12:05:01 +01:00
2022-10-14 19:18:48 +02:00
// La langue est-elle référencée ?
if ( array_key_exists ( basename ( $file , '.json' ), self :: $languages )) {
2022-12-26 12:05:01 +01:00
2022-10-14 19:18:48 +02:00
//self::$i18nFiles[basename($file, '.json')] = self::$languages[basename($file, '.json')];
$selected = basename ( $file , '.json' );
self :: $languagesUiInstalled [ $file ] = [
template :: flag ( $selected , '20 %' ),
2022-12-26 12:05:01 +01:00
self :: $languages [ $selected ],
2022-10-14 20:26:37 +02:00
self :: $i18nUI === $selected ? helper :: translate ( 'Interface' ) : '' ,
2022-12-26 12:05:01 +01:00
template :: button ( 'translateContentLanguageUIEdit' . basename ( $file , '.json' ), [
2022-10-15 09:00:53 +02:00
'href' => helper :: baseUrl () . $this -> getUrl ( 0 ) . '/ui/' . $selected ,
2022-10-14 19:18:48 +02:00
'value' => template :: ico ( 'pencil' ),
'help' => 'Éditer' ,
'disabled' => 'fr_FR' === $selected
2022-12-26 12:05:01 +01:00
]),
template :: button ( 'translateContentLanguageUIDelete' . basename ( $file , '.json' ), [
'class' => 'translateDeleteUI buttonRed' . ( in_array ( basename ( $file , '.json' ), $usersUI ) ? ' disabled' : '' ),
'href' => helper :: baseUrl () . $this -> getUrl ( 0 ) . '/delete/ui/' . basename ( $file , '.json' ) . '/' . $_SESSION [ 'csrf' ],
'value' => template :: ico ( 'trash' ),
'help' => 'Supprimer' ,
2022-10-20 20:29:00 +02:00
])
2022-10-14 19:18:48 +02:00
];
}
}
2022-09-26 14:54:15 +02:00
// Valeurs en sortie
$this -> addOutput ([
2022-12-26 11:06:28 +01:00
'title' => helper :: translate ( 'Multilingue' ),
2022-09-26 14:54:15 +02:00
'view' => 'index'
]);
}
2021-06-18 21:10:16 +02:00
2022-09-26 14:54:15 +02:00
/***
2022-09-27 16:42:10 +02:00
* Ajouter une langue de contenu
2022-09-26 14:54:15 +02:00
*/
2022-09-29 08:45:59 +02:00
public function add ()
{
2022-09-26 14:54:15 +02:00
// Soumission du formulaire
2022-09-29 08:45:59 +02:00
if ( $this -> isPost ()) {
2022-08-29 22:04:57 +02:00
2022-09-28 14:15:06 +02:00
// Création du contenu
$lang = $this -> getInput ( 'translateAddContent' );
2022-12-18 11:34:06 +01:00
// Stockage dans un sous-dossier localisé
if ( ! file_exists ( self :: DATA_DIR . $lang )) {
mkdir ( self :: DATA_DIR . $lang , 0755 );
2022-09-28 14:15:06 +02:00
}
2022-08-29 22:04:57 +02:00
2020-11-11 19:48:07 +01:00
// Valeurs en sortie
$this -> addOutput ([
2022-09-28 15:13:42 +02:00
'redirect' => helper :: baseUrl () . 'translate' ,
2022-10-11 10:33:44 +02:00
'notification' => helper :: translate ( 'Modifications enregistrées' ),
2020-11-11 19:48:07 +01:00
'state' => true
]);
}
2022-09-24 17:27:15 +02:00
2022-09-26 14:54:15 +02:00
2022-09-12 22:14:51 +02:00
// Préparation de l'affichage du formulaire
2022-09-24 18:06:32 +02:00
//-----------------------------------------
2022-09-26 14:54:15 +02:00
2022-09-28 14:15:06 +02:00
// Tableau des langues non installées
foreach ( self :: $languages as $key => $value ) {
2022-09-29 08:45:59 +02:00
if ( ! is_dir ( self :: DATA_DIR . $key ))
self :: $i18nFiles [ $key ] = $value ;
2021-06-04 13:57:44 +02:00
}
2022-09-26 14:54:15 +02:00
// Valeurs en sortie
$this -> addOutput ([
2022-10-02 10:59:42 +02:00
'title' => helper :: translate ( 'Nouveau contenu localisé' ),
2022-09-26 14:54:15 +02:00
'view' => 'add'
]);
}
2022-10-14 19:18:48 +02:00
/**
* Edition des paramètres de la langue de contenu
*/
public function locale ()
2022-09-29 08:45:59 +02:00
{
2022-09-27 16:42:10 +02:00
// Jeton incorrect ou URl avec le code langue incorrecte
2022-09-29 08:45:59 +02:00
if (
2022-10-15 09:00:53 +02:00
! array_key_exists ( $this -> getUrl ( 2 ), self :: $languages )
2022-09-27 16:42:10 +02:00
) {
2022-09-27 11:25:05 +02:00
// Valeurs en sortie
$this -> addOutput ([
'redirect' => helper :: baseUrl () . 'translate' ,
'state' => false ,
2022-10-11 10:33:44 +02:00
'notification' => helper :: translate ( 'Action interdite' )
2022-09-27 11:25:05 +02:00
]);
}
2022-09-26 14:54:15 +02:00
// Soumission du formulaire
2022-09-29 08:45:59 +02:00
if ( $this -> isPost ()) {
2022-09-26 14:54:15 +02:00
2022-09-28 10:18:58 +02:00
// Sauvegarder les locales
2022-09-29 08:45:59 +02:00
$data = [
'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 ))
]
2022-09-28 10:18:58 +02:00
]
];
2022-09-28 14:15:06 +02:00
2022-09-28 10:18:58 +02:00
// Sauvegarde hors méthodes si la langue n'est pas celle de l'UI
2022-09-29 08:45:59 +02:00
if ( $this -> getUrl ( 2 ) === self :: $i18nUI ) {
2022-09-27 16:42:10 +02:00
// Enregistrer les données par lecture directe du formulaire
2022-09-29 08:45:59 +02:00
$this -> setData ([ 'locale' , $data [ 'locale' ]]);
2022-09-27 16:42:10 +02:00
} else {
// Sauver sur le disque
2022-10-14 20:26:37 +02:00
file_put_contents ( self :: DATA_DIR . $this -> getUrl ( 2 ) . '/locale.json' , json_encode ( $data , JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT ), LOCK_EX );
2022-09-27 16:42:10 +02:00
}
2022-09-26 14:54:15 +02:00
// Valeurs en sortie
$this -> addOutput ([
'redirect' => helper :: baseUrl () . $this -> getUrl (),
2022-10-11 10:33:44 +02:00
'notification' => helper :: translate ( 'Modifications enregistrées' ),
2022-09-26 14:54:15 +02:00
'state' => true
]);
}
// Préparation de l'affichage du formulaire
//-----------------------------------------
2022-09-27 11:25:05 +02:00
// Récupération des locales de la langue sélectionnée
// Vérifier la conformité de l'URL
2022-09-29 08:45:59 +02:00
if ( ! array_key_exists ( $this -> getUrl ( 2 ), self :: $languages )) {
2022-09-27 11:25:05 +02:00
// Bidouillage de l'URL, on sort
// Valeurs en sortie
$this -> addOutput ([
'redirect' => helper :: baseUrl () . 'translate' ,
2022-10-11 10:33:44 +02:00
'notification' => helper :: translate ( 'Erreur d\'URL' ),
2022-09-27 11:25:05 +02:00
'state' => false
]);
}
2022-09-27 16:42:10 +02:00
//Lecture des données pour transmission au formulaire
// La locale est-elle celle de la langue de l'UI ?
2022-09-29 08:45:59 +02:00
if ( $this -> getUrl ( 2 ) === self :: $i18nUI ) {
self :: $locales [ $this -> getUrl ( 2 )][ 'locale' ] = $this -> getData ([ 'locale' ]);
2022-09-27 16:42:10 +02:00
} else {
// Lire les locales sans passer par les méthodes
2022-09-29 08:45:59 +02:00
self :: $locales [ $this -> getUrl ( 2 )] = json_decode ( file_get_contents ( self :: DATA_DIR . $this -> getUrl ( 2 ) . '/locale.json' ), true );
2022-09-27 16:42:10 +02:00
}
2022-09-27 11:25:05 +02:00
2022-09-21 15:09:13 +02:00
// Générer la liste des pages disponibles
2022-08-29 22:04:57 +02:00
self :: $pagesList = $this -> getData ([ 'page' ]);
2022-09-29 08:45:59 +02:00
foreach ( self :: $pagesList as $page => $pageId ) {
if (
$this -> getData ([ 'page' , $page , 'block' ]) === 'bar' ||
$this -> getData ([ 'page' , $page , 'disable' ]) === true
) {
2022-08-29 22:04:57 +02:00
unset ( self :: $pagesList [ $page ]);
}
}
self :: $orphansList = $this -> getData ([ 'page' ]);
2022-09-29 08:45:59 +02:00
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
) {
2022-08-29 22:04:57 +02:00
unset ( self :: $orphansList [ $page ]);
}
}
2022-09-26 14:54:15 +02:00
2020-11-11 19:48:07 +01:00
// Valeurs en sortie
$this -> addOutput ([
2022-10-02 10:59:42 +02:00
'title' => helper :: translate ( 'Paramètres de la localisation' ) . ' ' . template :: flag ( $this -> getUrl ( 2 ), '20 %' ),
2022-10-14 19:18:48 +02:00
'view' => 'locale'
]);
}
/**
* Edition de la langue de l ' interface
*/
public function ui ()
{
// Jeton incorrect ou URl avec le code langue incorrecte
if (
2022-10-15 09:00:53 +02:00
! array_key_exists ( $this -> getUrl ( 2 ), self :: $languages )
2022-10-14 19:18:48 +02:00
) {
// Valeurs en sortie
$this -> addOutput ([
'redirect' => helper :: baseUrl () . 'translate' ,
'state' => false ,
'notification' => helper :: translate ( 'Action interdite' )
]);
}
// Soumission du formulaire
if ( $this -> isPost ()) {
$data = json_decode ( file_get_contents ( self :: I18N_DIR . $this -> getUrl ( 2 ) . '.json' ), true );
foreach ( $data as $key => $value ) {
2022-10-15 08:16:41 +02:00
$data [ $key ] = $this -> getInput ( 'translateString' . array_search ( $key , array_keys ( $data )), false , null );
2022-10-14 19:18:48 +02:00
}
2022-10-14 20:26:37 +02:00
file_put_contents ( self :: I18N_DIR . $this -> getUrl ( 2 ) . '.json' , json_encode ( $data , JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT ), LOCK_EX );
2022-10-14 19:18:48 +02:00
// Valeurs en sortie
$this -> addOutput ([
'notification' => helper :: translate ( 'Modifications enregistrées' ),
2022-10-14 20:26:37 +02:00
'redirect' => helper :: baseUrl () . 'translate' ,
2022-10-14 19:18:48 +02:00
'state' => true
]);
}
// Construction du formulaire
2022-10-14 19:34:34 +02:00
// Chargement des dialogue de la langue cible
if ( ! isset ( $data )) {
$data = json_decode ( file_get_contents ( self :: I18N_DIR . $this -> getUrl ( 2 ) . '.json' ), true );
}
2022-10-14 19:18:48 +02:00
// Ajout des champs absents selon la langue de référence
$dataFr = json_decode ( file_get_contents ( self :: I18N_DIR . 'fr_FR.json' ), true );
2022-10-14 20:26:37 +02:00
foreach ( $dataFr as $key => $value ) {
2022-10-14 19:18:48 +02:00
if ( ! array_key_exists ( $key , $data )) {
$data [ $key ] = '' ;
}
}
2022-10-14 20:26:37 +02:00
file_put_contents ( self :: I18N_DIR . $this -> getUrl ( 2 ) . '.json' , json_encode ( $data , JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT ), LOCK_EX );
2022-10-14 19:18:48 +02:00
// Tableau des chaines à traduire dans la langue sélectionnée
foreach ( $data as $key => $value ) {
2022-10-15 09:00:53 +02:00
$dialogues [] = [ 'source' => $key , 'target' => $value ];
}
// Pagination
$pagination = helper :: pagination ( $dialogues , $this -> getUrl (), self :: PAGINATION );
// Liste des pages
self :: $pages = $pagination [ 'pages' ];
// Articles en fonction de la pagination
for ( $i = $pagination [ 'first' ]; $i < $pagination [ 'last' ]; $i ++ ) {
self :: $languagesUiInstalled [ $i ] = $dialogues [ $i ];
2022-10-14 19:18:48 +02:00
}
// Valeurs en sortie
$this -> addOutput ([
2022-10-15 08:20:02 +02:00
'title' => helper :: translate ( 'Éditer les dialogues' ) . ' ' . template :: flag ( $this -> getUrl ( 2 ), '20 %' ),
2022-10-14 19:18:48 +02:00
'view' => 'ui'
2020-11-11 19:48:07 +01:00
]);
2020-11-22 13:32:20 +01:00
}
2022-09-26 14:54:15 +02:00
/***
2022-09-26 16:30:40 +02:00
* Effacer une langue de contenu
2022-09-26 14:54:15 +02:00
*/
2022-09-29 08:45:59 +02:00
public function delete ()
{
2022-09-27 16:42:10 +02:00
// Jeton incorrect ou URl avec le code langue incorrecte
2022-12-26 12:05:01 +01:00
$target = $this -> getUrl ( 2 );
$lang = $this -> getUrl ( 3 );
2022-09-29 08:45:59 +02:00
if (
2022-12-26 12:05:01 +01:00
$this -> getUrl ( 4 ) !== $_SESSION [ 'csrf' ]
2022-10-26 15:53:26 +02:00
|| ! array_key_exists ( $lang , self :: $languages )
2022-09-29 08:45:59 +02:00
) {
// Valeurs en sortie
$this -> addOutput ([
'redirect' => helper :: baseUrl () . 'translate' ,
'state' => false ,
2022-10-11 10:33:44 +02:00
'notification' => helper :: translate ( 'Action interdite' )
2022-09-29 08:45:59 +02:00
]);
2022-09-27 16:42:10 +02:00
}
2022-12-26 12:05:01 +01:00
switch ( $target ) {
case 'locale' :
// Effacement d'une site dans une langue
if ( is_dir ( self :: DATA_DIR . $lang ) === true ) {
$success = $this -> removeDir ( self :: DATA_DIR . $lang );
}
// Valeurs en sortie
$this -> addOutput ([
'redirect' => helper :: baseUrl () . 'translate' ,
'notification' => $success ? helper :: translate ( 'Traduction supprimée' ) : helper :: translate ( 'Erreur inconnue' ),
'state' => $success
]);
break ;
case 'ui' :
// Effacement d'une langue de l'interface
if ( file_exists ( self :: I18N_DIR . $lang . '.json' ) === true ) {
$success = unlink ( self :: I18N_DIR . $lang . '.json' );
}
// Valeurs en sortie
$this -> addOutput ([
'redirect' => helper :: baseUrl () . 'translate' ,
'notification' => $success ? helper :: translate ( 'Traduction supprimée' ) : helper :: translate ( 'Erreur inconnue' ),
'state' => $success
]);
break ;
default :
# Do nothing
break ;
2022-09-26 14:54:15 +02:00
}
}
2021-06-04 13:57:44 +02:00
/*
* Traitement du changement de langue
* Fonction utilisée par le noyau
*/
2022-09-29 19:08:32 +02:00
public function content ()
2022-09-29 08:45:59 +02:00
{
2021-06-18 19:50:41 +02:00
// Activation du drapeau
2022-09-29 19:08:32 +02:00
$lang = $this -> getUrl ( 2 );
// Changement ?
if ( $this -> getInput ( 'ZWII_CONTENT' ) !== $lang ) {
// Nettoyer le cookie
helper :: deleteCookie ( 'ZWII_CONTENT' );
// Stocker le choix
setcookie ( 'ZWII_CONTENT' , $lang , time () + 3600 , helper :: baseUrl ( false , false ), '' , helper :: isHttps (), true );
2021-06-04 13:57:44 +02:00
}
2022-09-29 19:08:32 +02:00
2021-06-04 13:57:44 +02:00
// Valeurs en sortie
2020-11-24 11:12:33 +01:00
$this -> addOutput ([
2022-09-29 08:45:59 +02:00
'redirect' => helper :: baseUrl () . $this -> getData ([ 'locale' , $this -> getUrl ( 2 ), 'homePageId' ])
2020-11-24 11:12:33 +01:00
]);
2020-11-22 13:32:20 +01:00
}
2022-09-29 08:45:59 +02:00
}