improve/_define.php

30 lines
916 B
PHP
Raw Normal View History

2021-09-01 23:35:23 +00:00
<?php
/**
2023-10-21 20:36:14 +00:00
* @file
* @brief The plugin improve definition
* @ingroup improve
2021-11-01 21:17:44 +00:00
*
2023-10-21 20:36:14 +00:00
* @defgroup improve Plugin improve.
2021-11-01 21:17:44 +00:00
*
2023-10-21 20:36:14 +00:00
* Tiny tools to fix things for module devs.
2021-11-01 21:17:44 +00:00
*
2023-10-21 20:36:14 +00:00
* @author Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
2021-09-01 23:35:23 +00:00
*/
2023-10-21 20:36:14 +00:00
declare(strict_types=1);
2021-09-01 23:35:23 +00:00
$this->registerModule(
'improve',
'Tiny tools to fix things for module devs',
'Jean-Christian Denis and contributors',
2023-10-21 20:36:14 +00:00
'1.5',
2021-09-01 23:35:23 +00:00
[
2023-10-21 20:36:14 +00:00
'requires' => [['core', '2.28']],
'permissions' => 'My',
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
);