Uninstaller/_define.php

37 lines
975 B
PHP
Raw 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-05-14 14:40:30 +00:00
'0.9.4',
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'],
['core', '2.26'],
],
2023-04-15 15:38:25 +00:00
'permissions' => null,
'type' => 'plugin',
'settings' => [
2023-04-15 19:26:40 +00:00
'self' => false,
],
2023-04-15 19:26:40 +00:00
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
'details' => 'https://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
2023-04-15 15:38:25 +00:00
]
);