26 lines
527 B
PHP
26 lines
527 B
PHP
<?php
|
|
/**
|
|
* @brief themeEditor, a plugin for Dotclear 2
|
|
*
|
|
* @package Dotclear
|
|
* @subpackage Plugins
|
|
*
|
|
* @copyright Olivier Meunier & Association Dotclear
|
|
* @copyright GPL-2.0-only
|
|
*/
|
|
|
|
if (!defined('DC_RC_PATH')) {return;}
|
|
|
|
$this->registerModule(
|
|
"themeEditor", // Name
|
|
"Theme Editor", // Description
|
|
"Olivier Meunier", // Author
|
|
'1.3', // Version
|
|
[
|
|
'type' => 'plugin',
|
|
'settings' => [
|
|
'pref' => '#user-options.themeEditor_prefs'
|
|
]
|
|
]
|
|
);
|