2021-08-16 20:48:26 +00:00
|
|
|
<?php
|
2021-09-02 20:14:32 +00:00
|
|
|
/**
|
|
|
|
* @brief pacKman, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Jean-Christian Denis
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-08-16 20:48:26 +00:00
|
|
|
|
|
|
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
2021-08-17 21:12:33 +00:00
|
|
|
return null;
|
2021-08-16 20:48:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$mod_id = 'pacKman';
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2021-08-17 21:12:33 +00:00
|
|
|
/* type */ 'settings',
|
|
|
|
/* action */ 'delete_all',
|
|
|
|
/* ns */ $mod_id,
|
|
|
|
/* desc */ __('delete all settings')
|
2021-08-16 20:48:26 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2021-08-17 21:12:33 +00:00
|
|
|
/* type */ 'plugins',
|
|
|
|
/* action */ 'delete',
|
|
|
|
/* ns */ $mod_id,
|
|
|
|
/* desc */ __('delete plugin files')
|
2021-08-16 20:48:26 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2021-08-17 21:12:33 +00:00
|
|
|
/* type */ 'versions',
|
|
|
|
/* action */ 'delete',
|
|
|
|
/* ns */ $mod_id,
|
|
|
|
/* desc */ __('delete the version number')
|
2021-08-16 20:48:26 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2021-08-17 21:12:33 +00:00
|
|
|
/* type */ 'settings',
|
|
|
|
/* action */ 'delete_all',
|
|
|
|
/* ns */ $mod_id,
|
|
|
|
/* desc */ sprintf(__('delete all %s settings'), $mod_id)
|
2021-08-16 20:48:26 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2021-08-17 21:12:33 +00:00
|
|
|
/* type */ 'plugins',
|
|
|
|
/* action */ 'delete',
|
|
|
|
/* ns */ $mod_id,
|
|
|
|
/* desc */ sprintf(__('delete %s plugin files'), $mod_id)
|
2021-08-16 20:48:26 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2021-08-17 21:12:33 +00:00
|
|
|
/* type */ 'versions',
|
|
|
|
/* action */ 'delete',
|
|
|
|
/* ns */ $mod_id,
|
|
|
|
/* desc */ sprintf(__('delete %s version number'), $mod_id)
|
|
|
|
);
|