2022-12-30 16:52:56 +00:00
|
|
|
<?php
|
2022-12-31 18:07:05 +00:00
|
|
|
/**
|
|
|
|
* @brief construction, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Osku and contributors
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
|
|
|
return;
|
|
|
|
}
|
2022-12-30 16:52:56 +00:00
|
|
|
|
|
|
|
$this->registerModule(
|
2022-12-31 18:07:05 +00:00
|
|
|
'Construction',
|
|
|
|
'Place your blog maintenance',
|
|
|
|
'Osku and contributors',
|
2023-08-06 19:49:52 +00:00
|
|
|
'1.8',
|
2022-12-31 18:07:05 +00:00
|
|
|
[
|
2023-08-06 19:49:52 +00:00
|
|
|
'requires' => [['core', '2.27']],
|
2022-12-31 18:07:05 +00:00
|
|
|
'permissions' => dcCore::app()->auth->makePermissions([
|
|
|
|
dcAuth::PERMISSION_ADMIN,
|
|
|
|
]),
|
2023-04-10 17:07:13 +00:00
|
|
|
'priority' => 2000,
|
|
|
|
'type' => 'plugin',
|
2023-08-06 19:49:52 +00:00
|
|
|
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
|
|
|
|
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
|
|
|
|
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
|
2022-12-31 18:07:05 +00:00
|
|
|
]
|
|
|
|
);
|