improve/inc/Uninstall.php

103 lines
2.2 KiB
PHP
Raw Normal View History

2021-11-05 21:52:46 +00:00
<?php
/**
* @brief improve, 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
*/
2022-12-21 14:41:27 +00:00
declare(strict_types=1);
namespace Dotclear\Plugin\improve;
class Uninstall
{
private static $pid = '';
protected static $init = false;
2021-11-05 21:52:46 +00:00
2022-12-21 14:41:27 +00:00
public static function init(): bool
{
self::$pid = basename(dirname(__DIR__));
2022-12-21 14:41:27 +00:00
self::$init = defined('DC_RC_PATH');
2021-11-05 21:52:46 +00:00
2022-12-21 14:41:27 +00:00
return self::$init;
}
2021-11-05 21:52:46 +00:00
2022-12-21 14:41:27 +00:00
public static function process($uninstaller)
{
if (!self::$init) {
return false;
}
2021-11-05 21:52:46 +00:00
2022-12-21 14:41:27 +00:00
$uninstaller->addUserAction(
/* type */
'settings',
/* action */
'delete_all',
/* ns */
self::$pid,
2022-12-21 14:41:27 +00:00
/* desc */
__('delete all settings')
);
2021-11-05 21:52:46 +00:00
2022-12-21 14:41:27 +00:00
$uninstaller->addUserAction(
/* type */
'plugins',
/* action */
'delete',
/* ns */
self::$pid,
2022-12-21 14:41:27 +00:00
/* desc */
__('delete plugin files')
);
2021-11-05 21:52:46 +00:00
2022-12-21 14:41:27 +00:00
$uninstaller->addUserAction(
/* type */
'versions',
/* action */
'delete',
/* ns */
self::$pid,
2022-12-21 14:41:27 +00:00
/* desc */
__('delete the version number')
);
2021-11-05 21:52:46 +00:00
2022-12-21 14:41:27 +00:00
$uninstaller->addDirectAction(
/* type */
'settings',
/* action */
'delete_all',
/* ns */
self::$pid,
2022-12-21 14:41:27 +00:00
/* desc */
sprintf(__('delete all %s settings'), self::$pid)
2022-12-21 14:41:27 +00:00
);
$uninstaller->addDirectAction(
/* type */
'plugins',
/* action */
'delete',
/* ns */
self::$pid,
2022-12-21 14:41:27 +00:00
/* desc */
sprintf(__('delete %s plugin files'), self::$pid)
2022-12-21 14:41:27 +00:00
);
$uninstaller->addDirectAction(
/* type */
'versions',
/* action */
'delete',
/* ns */
self::$pid,
2022-12-21 14:41:27 +00:00
/* desc */
sprintf(__('delete %s version number'), self::$pid)
2022-12-21 14:41:27 +00:00
);
}
}