activityReport/src/Uninstall.php

77 lines
1.7 KiB
PHP
Raw Normal View History

<?php
2023-10-17 20:47:35 +00:00
declare(strict_types=1);
namespace Dotclear\Plugin\activityReport;
2023-08-17 14:25:19 +00:00
use Dotclear\Core\Process;
use Dotclear\Plugin\Uninstaller\Uninstaller;
/**
2023-10-17 20:47:35 +00:00
* @brief activityReport uninstall class.
* @ingroup activityReport
*
2023-10-17 20:47:35 +00:00
* @author Jean-Christian Denis (author)
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2023-08-17 14:25:19 +00:00
class Uninstall extends Process
{
public static function init(): bool
{
2023-08-17 14:25:19 +00:00
return self::status(My::checkContext(My::UNINSTALL));
}
public static function process(): bool
{
2023-10-17 20:47:35 +00:00
if (!self::status()) {
return false;
}
Uninstaller::instance()
->addUserAction(
'tables',
'delete',
My::ACTIVITY_TABLE_NAME
)
->addUserAction(
'settings',
'delete_all',
My::id()
)
->addUserAction(
'versions',
'delete',
My::id()
)
->addUserAction(
'plugins',
'delete',
My::id()
)
->addDirectAction(
'tables',
'delete',
My::ACTIVITY_TABLE_NAME
)
->addDirectAction(
'settings',
'delete_all',
My::id()
)
->addDirectAction(
'versions',
'delete',
My::id()
)
->addDirectAction(
'plugins',
'delete',
My::id()
)
;
// no custom action
return false;
}
}