2021-08-25 23:06:22 +00:00
|
|
|
<?php
|
2021-09-02 12:32:26 +00:00
|
|
|
/**
|
|
|
|
* @brief kUtRL, a plugin for Dotclear 2
|
2021-11-06 15:43:02 +00:00
|
|
|
*
|
2021-09-02 12:32:26 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2021-11-06 15:43:02 +00:00
|
|
|
*
|
2021-09-02 12:32:26 +00:00
|
|
|
* @author Jean-Christian Denis and contributors
|
2021-11-06 15:43:02 +00:00
|
|
|
*
|
2021-09-02 12:32:26 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-08-25 23:48:22 +00:00
|
|
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
|
|
|
return;
|
|
|
|
}
|
2021-08-25 23:06:22 +00:00
|
|
|
|
|
|
|
$this->addUserAction(
|
2021-11-06 15:43:02 +00:00
|
|
|
/* type */
|
|
|
|
'settings',
|
|
|
|
/* action */
|
|
|
|
'delete_all',
|
|
|
|
/* ns */
|
|
|
|
'kUtRL',
|
|
|
|
/* description */
|
|
|
|
__('delete all settings')
|
2021-08-25 23:06:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2021-11-06 15:43:02 +00:00
|
|
|
/* type */
|
|
|
|
'tables',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'kutrl',
|
|
|
|
/* description */
|
|
|
|
__('delete table')
|
2021-08-25 23:06:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2021-11-06 15:43:02 +00:00
|
|
|
/* type */
|
|
|
|
'plugins',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'kUtRL',
|
|
|
|
/* description */
|
|
|
|
__('delete plugin files')
|
2021-08-25 23:06:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2021-11-06 15:43:02 +00:00
|
|
|
/* type */
|
|
|
|
'versions',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'kUtRL',
|
|
|
|
/* description */
|
|
|
|
__('delete the version number')
|
2021-08-25 23:06:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
# Delete only dc version and plugin files from pluginsBeforeDelete
|
|
|
|
# Keep table
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2021-11-06 15:43:02 +00:00
|
|
|
/* type */
|
|
|
|
'settings',
|
|
|
|
/* action */
|
|
|
|
'delete_all',
|
|
|
|
/* ns */
|
|
|
|
'kUtRL',
|
|
|
|
/* description */
|
|
|
|
sprintf(__('delete all %s settings'), 'kUtRL')
|
2021-08-25 23:06:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2021-11-06 15:43:02 +00:00
|
|
|
/* type */
|
|
|
|
'versions',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'kUtRL',
|
|
|
|
/* description */
|
|
|
|
sprintf(__('delete %s version number'), 'kUtRL')
|
2021-08-25 23:06:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2021-11-06 15:43:02 +00:00
|
|
|
/* type */
|
|
|
|
'plugins',
|
|
|
|
/* action */
|
|
|
|
'delete',
|
|
|
|
/* ns */
|
|
|
|
'kUtRL',
|
|
|
|
/* description */
|
|
|
|
sprintf(__('delete %s plugin files'), 'kUtRL')
|
|
|
|
);
|