2015-04-22 16:03:40 +00:00
|
|
|
<?php
|
2021-09-02 14:30:40 +00:00
|
|
|
/**
|
|
|
|
* @brief dcFilterDuplicate, a plugin for Dotclear 2
|
2022-11-16 21:48:46 +00:00
|
|
|
*
|
2021-09-02 14:30:40 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2022-11-16 21:48:46 +00:00
|
|
|
*
|
2021-09-02 14:30:40 +00:00
|
|
|
* @author Jean-Christian Denis, Pierre Van Glabeke
|
2022-11-16 21:48:46 +00:00
|
|
|
*
|
2021-09-02 14:30:40 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2015-04-22 16:03:40 +00:00
|
|
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
2021-08-27 15:16:25 +00:00
|
|
|
return null;
|
2015-04-22 16:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$mod_id = 'dcFilterDuplicate';
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2022-11-20 17:08:48 +00:00
|
|
|
/* type */
|
2022-11-16 21:48:46 +00:00
|
|
|
'settings',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* action */
|
2022-11-16 21:48:46 +00:00
|
|
|
'delete_all',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* ns */
|
2022-11-16 21:48:46 +00:00
|
|
|
$mod_id,
|
2022-11-20 17:08:48 +00:00
|
|
|
/* desc */
|
2022-11-16 21:48:46 +00:00
|
|
|
__('delete all settings')
|
2015-04-22 16:03:40 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2022-11-20 17:08:48 +00:00
|
|
|
/* type */
|
2022-11-16 21:48:46 +00:00
|
|
|
'plugins',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* action */
|
2022-11-16 21:48:46 +00:00
|
|
|
'delete',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* ns */
|
2022-11-16 21:48:46 +00:00
|
|
|
$mod_id,
|
2022-11-20 17:08:48 +00:00
|
|
|
/* desc */
|
2022-11-16 21:48:46 +00:00
|
|
|
__('delete plugin files')
|
2015-04-22 16:03:40 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2022-11-20 17:08:48 +00:00
|
|
|
/* type */
|
2022-11-16 21:48:46 +00:00
|
|
|
'versions',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* action */
|
2022-11-16 21:48:46 +00:00
|
|
|
'delete',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* ns */
|
2022-11-16 21:48:46 +00:00
|
|
|
$mod_id,
|
2022-11-20 17:08:48 +00:00
|
|
|
/* desc */
|
2022-11-16 21:48:46 +00:00
|
|
|
__('delete the version number')
|
2015-04-22 16:03:40 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2022-11-20 17:08:48 +00:00
|
|
|
/* type */
|
2022-11-16 21:48:46 +00:00
|
|
|
'settings',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* action */
|
2022-11-16 21:48:46 +00:00
|
|
|
'delete_all',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* ns */
|
2022-11-16 21:48:46 +00:00
|
|
|
$mod_id,
|
2022-11-20 17:08:48 +00:00
|
|
|
/* desc */
|
2022-11-16 21:48:46 +00:00
|
|
|
sprintf(__('delete all %s settings'), $mod_id)
|
2015-04-22 16:03:40 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2022-11-20 17:08:48 +00:00
|
|
|
/* type */
|
2022-11-16 21:48:46 +00:00
|
|
|
'versions',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* action */
|
2022-11-16 21:48:46 +00:00
|
|
|
'delete',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* ns */
|
2022-11-16 21:48:46 +00:00
|
|
|
$mod_id,
|
2022-11-20 17:08:48 +00:00
|
|
|
/* desc */
|
2022-11-16 21:48:46 +00:00
|
|
|
sprintf(__('delete %s version number'), $mod_id)
|
2015-04-22 16:03:40 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2022-11-20 17:08:48 +00:00
|
|
|
/* type */
|
2022-11-16 21:48:46 +00:00
|
|
|
'plugins',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* action */
|
2022-11-16 21:48:46 +00:00
|
|
|
'delete',
|
2022-11-20 17:08:48 +00:00
|
|
|
/* ns */
|
2022-11-16 21:48:46 +00:00
|
|
|
$mod_id,
|
2022-11-20 17:08:48 +00:00
|
|
|
/* desc */
|
2022-11-16 21:48:46 +00:00
|
|
|
sprintf(__('delete %s plugin files'), $mod_id)
|
|
|
|
);
|