2021-09-01 23:35:23 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @brief improve, a plugin for Dotclear 2
|
2021-11-01 21:17:44 +00:00
|
|
|
*
|
2021-09-01 23:35:23 +00:00
|
|
|
* @package Dotclear
|
2021-09-06 21:36:50 +00:00
|
|
|
* @subpackage Plugin
|
2021-11-01 21:17:44 +00:00
|
|
|
*
|
2021-09-01 23:35:23 +00:00
|
|
|
* @author Jean-Christian Denis and contributors
|
2021-11-01 21:17:44 +00:00
|
|
|
*
|
2021-09-01 23:35:23 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->registerModule(
|
|
|
|
'improve',
|
|
|
|
'Tiny tools to fix things for module devs',
|
|
|
|
'Jean-Christian Denis and contributors',
|
2023-04-06 21:32:55 +00:00
|
|
|
'1.1.3',
|
2021-09-01 23:35:23 +00:00
|
|
|
[
|
2023-03-05 22:05:33 +00:00
|
|
|
'requires' => [['core', '2.26']],
|
2021-09-01 23:35:23 +00:00
|
|
|
'permissions' => null,
|
2021-10-29 21:14:09 +00:00
|
|
|
'type' => 'plugin',
|
2022-12-21 15:00:45 +00:00
|
|
|
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
|
|
|
'details' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
|
|
|
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
|
2021-09-01 23:35:23 +00:00
|
|
|
]
|
2021-11-01 21:17:44 +00:00
|
|
|
);
|