2018-02-19 18:10:58 +00:00
|
|
|
<?php
|
2023-10-13 19:23:56 +00:00
|
|
|
|
2021-09-06 22:09:09 +00:00
|
|
|
/**
|
2023-10-13 19:23:56 +00:00
|
|
|
* @file
|
|
|
|
* @brief The plugin dcAdvancedCleaner definition
|
|
|
|
* @ingroup dcAdvancedCleaner
|
2021-11-06 15:19:49 +00:00
|
|
|
*
|
2023-10-13 19:23:56 +00:00
|
|
|
* @defgroup dcAdvancedCleaner Plugin dcAdvancedCleaner.
|
2021-11-06 15:19:49 +00:00
|
|
|
*
|
2023-10-13 19:23:56 +00:00
|
|
|
* Make a huge cleaning of dotclear.
|
2021-11-06 15:19:49 +00:00
|
|
|
*
|
2023-10-13 19:23:56 +00:00
|
|
|
* @author Jean-Christian Denis (author)
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
2021-09-06 22:09:09 +00:00
|
|
|
*/
|
2023-10-13 19:23:56 +00:00
|
|
|
declare(strict_types=1);
|
2018-02-19 18:10:58 +00:00
|
|
|
|
|
|
|
$this->registerModule(
|
2021-09-06 22:09:09 +00:00
|
|
|
'Advanced cleaner',
|
|
|
|
'Make a huge cleaning of dotclear',
|
|
|
|
'Jean-Christian Denis and Contributors',
|
2023-11-04 10:21:36 +00:00
|
|
|
'1.6.1',
|
2021-09-06 22:09:09 +00:00
|
|
|
[
|
2023-04-16 00:49:38 +00:00
|
|
|
'requires' => [
|
2023-10-07 20:35:41 +00:00
|
|
|
['core', '2.28'],
|
|
|
|
['Uninstaller', '1.0'],
|
2023-04-16 00:49:38 +00:00
|
|
|
],
|
2023-10-13 19:23:56 +00:00
|
|
|
'permissions' => 'My',
|
2021-11-06 15:19:49 +00:00
|
|
|
'type' => 'plugin',
|
2023-08-14 21:53:29 +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-06 22:09:09 +00:00
|
|
|
]
|
2021-11-06 15:19:49 +00:00
|
|
|
);
|