fix up-to-date distrib modules list
This commit is contained in:
parent
ad51a4c4b2
commit
2a3a39d555
1 changed files with 5 additions and 31 deletions
|
@ -162,37 +162,7 @@ class dcTranslater
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
# List of default modules of Dotclear
|
# List of default modules of Dotclear
|
||||||
public static $default_dotclear_modules = array(
|
public static $default_dotclear_modules = ['plugin' => [], 'theme' => []];
|
||||||
'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'
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
# List of modules (from plugins,thems, by dcModule::getModules)
|
# List of modules (from plugins,thems, by dcModule::getModules)
|
||||||
private $modules = array();
|
private $modules = array();
|
||||||
|
@ -202,6 +172,10 @@ class dcTranslater
|
||||||
# Construtor
|
# Construtor
|
||||||
function __construct($core)
|
function __construct($core)
|
||||||
{
|
{
|
||||||
|
self::$default_dotclear_modules = [
|
||||||
|
'plugin' => explode(',', DC_DISTRIB_PLUGINS),
|
||||||
|
'theme' => explode(',', DC_DISTRIB_THEMES)
|
||||||
|
];
|
||||||
$this->core =& $core;
|
$this->core =& $core;
|
||||||
$core->blog->settings->addNamespace('translater');
|
$core->blog->settings->addNamespace('translater');
|
||||||
$this->loadModules();
|
$this->loadModules();
|
||||||
|
|
Loading…
Reference in a new issue