forked from ZwiiCMS-Team/ZwiiCMS
Modifications helper.class.php, addon.php export import
This commit is contained in:
parent
31d3320f19
commit
20d5c4d221
@ -176,7 +176,7 @@ class helper {
|
||||
) {
|
||||
$dataDirectory = $value::DATADIRECTORY;
|
||||
} else {
|
||||
$dataDirectory = ['fr/module.json'];
|
||||
$dataDirectory = [];
|
||||
}
|
||||
// Affection
|
||||
$modules [$value] = [
|
||||
|
@ -289,13 +289,10 @@ class addon extends common {
|
||||
$inPages = helper::arrayCollumn($this->getData(['page']),'moduleId', 'SORT_DESC');
|
||||
// Parcourir les pages utilisant le module
|
||||
foreach (array_keys($inPages,$this->getUrl(2)) as $pageId) {
|
||||
foreach ($infoModules[$this->getUrl(2)]['dataDirectory'] as $moduleId) {
|
||||
// Export des pages hébergeant le module
|
||||
$pageContent[$pageId] = $this->getData(['page',$pageId]);
|
||||
/**
|
||||
* Données module.json ?
|
||||
*/
|
||||
if (strpos($moduleId,'module.json')) {
|
||||
// Export de fr/module.json
|
||||
$moduleId = 'fr/module.json';
|
||||
// Création de l'arborescence des langues
|
||||
// Pas de nom dossier de langue - dossier par défaut
|
||||
$t = explode ('/',$moduleId);
|
||||
@ -313,18 +310,14 @@ class addon extends common {
|
||||
if ($tmpData [$pageId] !== null) {
|
||||
file_put_contents($tmpFolder . '/' . $moduleId, json_encode($tmpData));
|
||||
}
|
||||
} else {
|
||||
/**
|
||||
* Données dans un json personnalisé, le sauvegarder
|
||||
* Dossier non localisé
|
||||
*/
|
||||
// Export des données localisées dans des dossiers
|
||||
foreach ($infoModules[$this->getUrl(2)]['dataDirectory'] as $moduleId) {
|
||||
if ( file_exists(self::DATA_DIR . '/' . $moduleId)
|
||||
&& !file_exists($tmpFolder . '/' . $moduleId ) ) {
|
||||
$this->custom_copy ( self::DATA_DIR . '/' . $moduleId, $tmpFolder . '/' . $moduleId );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Enregistrement des pages dans le dossier de langue identique à module
|
||||
|
||||
if (!file_exists($tmpFolder . '/' . $lang . '/page.json')) {
|
||||
@ -376,7 +369,7 @@ class addon extends common {
|
||||
$dataSource = array();
|
||||
foreach (self::$i18nList as $key=>$value) {
|
||||
// Les Pages et les modules
|
||||
foreach (['page','module'] as $fileTarget)
|
||||
foreach (['page','module'] as $fileTarget){
|
||||
if (file_exists(self::TEMP_DIR . $tempFolder . '/' .$key . '/' . $fileTarget . '.json')) {
|
||||
// Le dossier de langue existe
|
||||
// faire la fusion
|
||||
@ -386,7 +379,7 @@ class addon extends common {
|
||||
file_put_contents(self::DATA_DIR . '/' .$key . '/' . $fileTarget . '.json', json_encode( $data ,JSON_UNESCAPED_UNICODE|JSON_PRETTY_PRINT|LOCK_EX) );
|
||||
// Supprimer les fichiers importés
|
||||
unlink (self::TEMP_DIR . $tempFolder . '/' .$key . '/' . $fileTarget . '.json');
|
||||
rmdir (self::TEMP_DIR . $tempFolder . '/' .$key);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user