Move modules dialogues download
This commit is contained in:
parent
946a18a389
commit
1c92141f71
@ -458,18 +458,6 @@ class common
|
|||||||
}
|
}
|
||||||
self::$dialog = json_decode(file_get_contents(self::I18N_DIR . self::$i18nUI . '.json'), true);
|
self::$dialog = json_decode(file_get_contents(self::I18N_DIR . self::$i18nUI . '.json'), true);
|
||||||
|
|
||||||
// Dialogue du module
|
|
||||||
if ($this->getData(['page', $this->getUrl(0), 'moduleId'])) {
|
|
||||||
$moduleId = $this->getData(['page', $this->getUrl(0), 'moduleId']);
|
|
||||||
if (
|
|
||||||
is_dir(self::MODULE_DIR . $moduleId . '/i18n')
|
|
||||||
&& file_exists(self::MODULE_DIR . $moduleId . '/i18n/' . self::$i18nUI . '.json')
|
|
||||||
) {
|
|
||||||
$d = json_decode(file_get_contents(self::MODULE_DIR . $moduleId . '/i18n/' . self::$i18nUI . '.json'), true);
|
|
||||||
self::$dialog = array_merge(self::$dialog, $d);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mise à jour des données core
|
// Mise à jour des données core
|
||||||
if ($this->getData(['core', 'dataVersion']) !== intval(str_replace('.', '', self::ZWII_VERSION))) include('core/include/update.inc.php');
|
if ($this->getData(['core', 'dataVersion']) !== intval(str_replace('.', '', self::ZWII_VERSION))) include('core/include/update.inc.php');
|
||||||
|
|
||||||
@ -3059,6 +3047,14 @@ class core extends common
|
|||||||
if (array_key_exists($action, $module::$actions)) {
|
if (array_key_exists($action, $module::$actions)) {
|
||||||
$module->$action();
|
$module->$action();
|
||||||
$output = $module->output;
|
$output = $module->output;
|
||||||
|
// Dialogues du module
|
||||||
|
if (
|
||||||
|
is_dir(self::MODULE_DIR . $moduleId . '/i18n')
|
||||||
|
&& file_exists(self::MODULE_DIR . $moduleId . '/i18n/' . self::$i18nUI . '.json')
|
||||||
|
) {
|
||||||
|
$d = json_decode(file_get_contents(self::MODULE_DIR . $moduleId . '/i18n/' . self::$i18nUI . '.json'), true);
|
||||||
|
self::$dialog = array_merge(self::$dialog, $d);
|
||||||
|
}
|
||||||
// Check le groupe de l'utilisateur
|
// Check le groupe de l'utilisateur
|
||||||
if (
|
if (
|
||||||
($module::$actions[$action] === self::GROUP_VISITOR
|
($module::$actions[$action] === self::GROUP_VISITOR
|
||||||
|
Loading…
Reference in New Issue
Block a user