add plugin Uninstaller features

master
Jean-Christian Paul Denis 2023-04-25 15:14:10 +02:00
parent c45d7f40ec
commit 88ff5412fb
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
1 changed files with 84 additions and 0 deletions

84
src/Uninstall.php 100644
View File

@ -0,0 +1,84 @@
<?php
/**
* @brief postWidgetText, 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
*/
declare(strict_types=1);
namespace Dotclear\Plugin\postWidgetText;
use dcCore;
use dcNsProcess;
use Dotclear\Plugin\Uninstaller\Uninstaller;
class Uninstall extends dcNsProcess
{
public static function init(): bool
{
static::$init = defined('DC_CONTEXT_ADMIN');
return static::$init;
}
public static function process(): bool
{
if (!static::$init || !dcCore::app()->plugins->moduleExists('Uninstaller')) {
return false;
}
Uninstaller::instance()
->addUserAction(
'settings',
'delete_all',
My::id()
)
->addUserAction(
'tables',
'delete',
My::TABLE_NAME
)
->addUserAction(
'plugins',
'delete',
My::id()
)
->addUserAction(
'versions',
'delete',
My::id()
)
/*//
->addDirectAction(
'settings',
'delete_all',
My::id()
)
->addDirectAction(
'tables',
'delete',
My::TABLE_NAME
)
->addDirectAction(
'plugins',
'delete',
My::id()
)
->addDirectAction(
'versions',
'delete',
My::id()
)
//*/
;
// no custom action
return false;
}
}