improve/_define.php

34 lines
955 B
PHP
Raw Normal View History

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-08-06 22:34:44 +00:00
'1.4',
2021-09-01 23:35:23 +00:00
[
2023-05-10 09:12:47 +00:00
'requires' => [
['php', '8.1'],
2023-07-16 08:27:31 +00:00
['core', '2.27'],
2023-05-10 09:12:47 +00:00
],
2021-09-01 23:35:23 +00:00
'permissions' => null,
2021-10-29 21:14:09 +00:00
'type' => 'plugin',
2023-08-06 22:34:44 +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',
2021-09-01 23:35:23 +00:00
]
2021-11-01 21:17:44 +00:00
);