activityReport/_uninstall.php

82 lines
1.4 KiB
PHP
Raw Normal View History

<?php
2021-09-02 22:18:08 +00:00
/**
* @brief activityReport, a plugin for Dotclear 2
2022-11-18 20:24:30 +00:00
*
2021-09-02 22:18:08 +00:00
* @package Dotclear
* @subpackage Plugin
2022-11-18 20:24:30 +00:00
*
2021-09-02 22:18:08 +00:00
* @author Jean-Christian Denis and contributors
2022-11-18 20:24:30 +00:00
*
2021-09-02 22:18:08 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-09-02 22:51:23 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
return null;
}
$this->addUserAction(
2022-11-18 20:24:30 +00:00
/* type */
'tables',
/* action */
'delete',
/* ns */
'activity',
/* description */
sprintf(__('delete %s table'), '"activity"')
);
$this->addUserAction(
2022-11-18 20:24:30 +00:00
/* type */
'tables',
/* action */
'delete',
/* ns */
'activity_setting',
/* description */
sprintf(__('delete %s table'), '"activity_setting"')
);
$this->addUserAction(
2022-11-18 20:24:30 +00:00
/* type */
'plugins',
/* action */
'delete',
/* ns */
'activityReport',
/* description */
__('delete plugin files')
);
$this->addUserAction(
2022-11-18 20:24:30 +00:00
/* type */
'versions',
/* action */
'delete',
/* ns */
'activityReport',
/* description */
__('delete the version number')
);
$this->addDirectAction(
2022-11-18 20:24:30 +00:00
/* type */
'versions',
/* action */
'delete',
/* ns */
'activityReport',
/* description */
sprintf(__('delete %s version number'), 'activityReport')
);
$this->addDirectAction(
2022-11-18 20:24:30 +00:00
/* type */
'plugins',
/* action */
'delete',
/* ns */
'activityReport',
/* description */
sprintf(__('delete %s plugin files'), 'activityReport')
);