Uninstaller/_define.php

37 lines
1.0 KiB
PHP

<?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',
'0.10',
[
'requires' => [
['php', '8.1'],
['core', '2.27'],
],
'permissions' => null,
'type' => 'plugin',
'settings' => [
'self' => false,
],
'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',
]
);