Uninstaller/_define.php

34 lines
925 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-04-17 07:50:24 +00:00
'0.3',
2023-04-15 15:38:25 +00:00
[
'requires' => [['core', '2.26']],
'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
]
);