2021-09-02 22:04:20 +00:00
|
|
|
<?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;
|
|
|
|
}
|
2021-09-02 22:04:20 +00:00
|
|
|
|
|
|
|
$this->addUserAction(
|
2022-11-18 20:24:30 +00:00
|
|
|
/* type */
|
|
|
|
'tables',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'activity',
|
|
|
|
/* description */
|
|
|
|
sprintf(__('delete %s table'), '"activity"')
|
2021-09-02 22:04:20 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2022-11-18 20:24:30 +00:00
|
|
|
/* type */
|
|
|
|
'tables',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'activity_setting',
|
|
|
|
/* description */
|
|
|
|
sprintf(__('delete %s table'), '"activity_setting"')
|
2021-09-02 22:04:20 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2022-11-18 20:24:30 +00:00
|
|
|
/* type */
|
|
|
|
'plugins',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'activityReport',
|
|
|
|
/* description */
|
|
|
|
__('delete plugin files')
|
2021-09-02 22:04:20 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2022-11-18 20:24:30 +00:00
|
|
|
/* type */
|
|
|
|
'versions',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'activityReport',
|
|
|
|
/* description */
|
|
|
|
__('delete the version number')
|
2021-09-02 22:04:20 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2022-11-18 20:24:30 +00:00
|
|
|
/* type */
|
|
|
|
'versions',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'activityReport',
|
|
|
|
/* description */
|
|
|
|
sprintf(__('delete %s version number'), 'activityReport')
|
2021-09-02 22:04:20 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2022-11-18 20:24:30 +00:00
|
|
|
/* type */
|
|
|
|
'plugins',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'activityReport',
|
|
|
|
/* description */
|
|
|
|
sprintf(__('delete %s plugin files'), 'activityReport')
|
|
|
|
);
|