dcFilterDuplicate/src/Uninstall.php

103 lines
2.2 KiB
PHP
Raw Normal View History

2015-04-22 16:03:40 +00:00
<?php
2021-09-02 14:30:40 +00:00
/**
* @brief dcFilterDuplicate, a plugin for Dotclear 2
2022-11-16 21:48:46 +00:00
*
2021-09-02 14:30:40 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-16 21:48:46 +00:00
*
2021-09-02 14:30:40 +00:00
* @author Jean-Christian Denis, Pierre Van Glabeke
2022-11-16 21:48:46 +00:00
*
2021-09-02 14:30:40 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-03-11 22:11:29 +00:00
declare(strict_types=1);
namespace Dotclear\Plugin\dcFilterDuplicate;
class Uninstall
{
protected static $init = false;
public static function init(): bool
{
2023-03-26 19:15:13 +00:00
static::$init = defined('DC_RC_PATH');
2015-04-22 16:03:40 +00:00
2023-03-26 19:15:13 +00:00
return static::$init;
2023-03-11 22:11:29 +00:00
}
2015-04-22 16:03:40 +00:00
2023-03-11 22:11:29 +00:00
public static function process($uninstaller): ?bool
{
2023-03-26 19:15:13 +00:00
if (!static::$init) {
2023-03-11 22:11:29 +00:00
return false;
}
2015-04-22 16:03:40 +00:00
2023-03-11 22:11:29 +00:00
$uninstaller->addUserAction(
/* type */
'settings',
/* action */
'delete_all',
/* ns */
My::id(),
/* desc */
__('delete all settings')
);
2015-04-22 16:03:40 +00:00
2023-03-11 22:11:29 +00:00
$uninstaller->addUserAction(
/* type */
'plugins',
/* action */
'delete',
/* ns */
My::id(),
/* desc */
__('delete plugin files')
);
2015-04-22 16:03:40 +00:00
2023-03-11 22:11:29 +00:00
$uninstaller->addUserAction(
/* type */
'versions',
/* action */
'delete',
/* ns */
My::id(),
/* desc */
__('delete the version number')
);
2015-04-22 16:03:40 +00:00
2023-03-11 22:11:29 +00:00
$uninstaller->addDirectAction(
/* type */
'settings',
/* action */
'delete_all',
/* ns */
My::id(),
/* desc */
sprintf(__('delete all %s settings'), My::id())
);
2015-04-22 16:03:40 +00:00
2023-03-11 22:11:29 +00:00
$uninstaller->addDirectAction(
/* type */
'versions',
/* action */
'delete',
/* ns */
My::id(),
/* desc */
sprintf(__('delete %s version number'), My::id())
);
$uninstaller->addDirectAction(
/* type */
'plugins',
/* action */
'delete',
/* ns */
My::id(),
/* desc */
sprintf(__('delete %s plugin files'), My::id())
);
return true;
}
}