67 lines
1.4 KiB
PHP
67 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Dotclear\Plugin\translater;
|
|
|
|
use Dotclear\Core\Process;
|
|
use Dotclear\Plugin\Uninstaller\Uninstaller;
|
|
|
|
/**
|
|
* @brief translater uninstall class.
|
|
* @ingroup translater
|
|
*
|
|
* @author Jean-Christian Denis
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
*/
|
|
class Uninstall extends Process
|
|
{
|
|
public static function init(): bool
|
|
{
|
|
return self::status(My::checkContext(My::UNINSTALL));
|
|
}
|
|
|
|
public static function process(): bool
|
|
{
|
|
if (!self::status()) {
|
|
return false;
|
|
}
|
|
|
|
Uninstaller::instance()
|
|
->addUserAction(
|
|
'settings',
|
|
'delete_all',
|
|
My::id()
|
|
)
|
|
->addUserAction(
|
|
'plugins',
|
|
'delete',
|
|
My::id()
|
|
)
|
|
->addUserAction(
|
|
'versions',
|
|
'delete',
|
|
My::id()
|
|
)
|
|
->addDirectAction(
|
|
'settings',
|
|
'delete_all',
|
|
My::id()
|
|
)
|
|
->addDirectAction(
|
|
'plugins',
|
|
'delete',
|
|
My::id()
|
|
)
|
|
->addDirectAction(
|
|
'versions',
|
|
'delete',
|
|
My::id()
|
|
)
|
|
;
|
|
|
|
// no custom action
|
|
return false;
|
|
}
|
|
}
|