fix up-to-date distrib modules list

master
Jean-Christian Paul Denis 2021-09-12 15:25:52 +02:00
parent ad51a4c4b2
commit 2a3a39d555
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
1 changed files with 5 additions and 31 deletions

View File

@ -162,37 +162,7 @@ class dcTranslater
)
);
# List of default modules of Dotclear
public static $default_dotclear_modules = array(
'plugin' => array(
'aboutConfig',
'akismet',
'antispam',
'attachments',
'blogroll',
'blowupConfig',
'breadcrumb',
'dcCKEditor',
'dclegacy',
'dcLegacyEditor',
'fairTrackbacks',
'importExport',
'maintenance',
'pages',
'pings',
'simpleMenu',
'tags',
'themeEditor',
'userPref',
'widgets'
),
'theme' => array(
'default',
'berlin',
'blueSilence',
'customCSS',
'ductile'
)
);
public static $default_dotclear_modules = ['plugin' => [], 'theme' => []];
# List of modules (from plugins,thems, by dcModule::getModules)
private $modules = array();
@ -202,6 +172,10 @@ class dcTranslater
# Construtor
function __construct($core)
{
self::$default_dotclear_modules = [
'plugin' => explode(',', DC_DISTRIB_PLUGINS),
'theme' => explode(',', DC_DISTRIB_THEMES)
];
$this->core =& $core;
$core->blog->settings->addNamespace('translater');
$this->loadModules();