add plugin Uninstaller features

master
Jean-Christian Paul Denis 2023-04-27 22:06:11 +02:00
parent 9ebccfd8ba
commit 914d31e2c9
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
1 changed files with 43 additions and 73 deletions

View File

@ -14,89 +14,59 @@ declare(strict_types=1);
namespace Dotclear\Plugin\improve;
class Uninstall
{
private static $pid = '';
protected static $init = false;
use dcCore;
use dcNsProcess;
use Dotclear\Plugin\Uninstaller\Uninstaller;
class Uninstall extends dcNsProcess
{
public static function init(): bool
{
self::$pid = basename(dirname(__DIR__));
self::$init = defined('DC_RC_PATH');
static::$init = defined('DC_CONTEXT_ADMIN');
return self::$init;
return static::$init;
}
public static function process($uninstaller)
public static function process(): bool
{
if (!self::$init) {
if (!static::$init || !dcCore::app()->plugins->moduleExists('Uninstaller')) {
return false;
}
$uninstaller->addUserAction(
/* type */
Uninstaller::instance()
->addUserAction(
'settings',
/* action */
'delete_all',
/* ns */
self::$pid,
/* desc */
__('delete all settings')
);
$uninstaller->addUserAction(
/* type */
My::id()
)
->addUserAction(
'plugins',
/* action */
'delete',
/* ns */
self::$pid,
/* desc */
__('delete plugin files')
);
$uninstaller->addUserAction(
/* type */
My::id()
)
->addUserAction(
'versions',
/* action */
'delete',
/* ns */
self::$pid,
/* desc */
__('delete the version number')
);
$uninstaller->addDirectAction(
/* type */
My::id()
)
->addDirectAction(
'settings',
/* action */
'delete_all',
/* ns */
self::$pid,
/* desc */
sprintf(__('delete all %s settings'), self::$pid)
);
$uninstaller->addDirectAction(
/* type */
My::id()
)
->addDirectAction(
'plugins',
/* action */
'delete',
/* ns */
self::$pid,
/* desc */
sprintf(__('delete %s plugin files'), self::$pid)
);
$uninstaller->addDirectAction(
/* type */
My::id()
)
->addDirectAction(
'versions',
/* action */
'delete',
/* ns */
self::$pid,
/* desc */
sprintf(__('delete %s version number'), self::$pid)
);
My::id()
)
;
// no custom action
return false;
}
}