Uninstaller/_define.php

37 lines
1.0 KiB
PHP
Raw Permalink Normal View History

2023-04-15 15:38:25 +00:00
<?php
/**
* @brief Uninstaller, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis 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 null;
}
$this->registerModule(
'Uninstaller',
'Uninstall cleanly plugins and themes',
'Jean-Christian Denis and Contributors',
2023-08-13 15:36:47 +00:00
'0.10',
2023-04-15 15:38:25 +00:00
[
2023-05-13 13:38:35 +00:00
'requires' => [
2023-05-10 07:53:09 +00:00
['php', '8.1'],
2023-07-01 08:42:49 +00:00
['core', '2.27'],
2023-05-10 07:53:09 +00:00
],
2023-04-15 15:38:25 +00:00
'permissions' => null,
'type' => 'plugin',
'settings' => [
2023-04-15 19:26:40 +00:00
'self' => false,
],
2023-08-13 15:36:47 +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',
2023-04-15 15:38:25 +00:00
]
);