forked from ZwiiCMS-Team/ZwiiCMS
bug copye site
This commit is contained in:
parent
21887439e4
commit
9273e89431
@ -46,6 +46,7 @@ class translate extends common {
|
|||||||
// Création du dossier
|
// Création du dossier
|
||||||
if (is_dir(self::DATA_DIR . $toCreate) === false ) { // Si le dossier est déjà créé
|
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, 0755);
|
||||||
|
$success = mkdir (self::DATA_DIR . $toCreate.'/content', 0755);
|
||||||
} else {
|
} else {
|
||||||
$success = true;
|
$success = true;
|
||||||
}
|
}
|
||||||
@ -53,6 +54,7 @@ class translate extends common {
|
|||||||
$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 . '/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 . '/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 = (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;
|
||||||
// Enregistrer la langue
|
// Enregistrer la langue
|
||||||
if ($success) {
|
if ($success) {
|
||||||
$this->setData(['config', 'i18n', $toCreate, 'site' ]);
|
$this->setData(['config', 'i18n', $toCreate, 'site' ]);
|
||||||
|
Loading…
Reference in New Issue
Block a user