2021-08-23 23:55:52 +00:00
|
|
|
<?php
|
2021-09-02 18:35:25 +00:00
|
|
|
/**
|
|
|
|
* @brief enhancePostContent, a plugin for Dotclear 2
|
2021-11-01 09:33:43 +00:00
|
|
|
*
|
2021-09-02 18:35:25 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2021-11-01 09:33:43 +00:00
|
|
|
*
|
2021-09-02 18:35:25 +00:00
|
|
|
* @author Jean-Christian Denis and Contributors
|
2021-11-01 09:33:43 +00:00
|
|
|
*
|
2021-09-02 18:35:25 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-11-01 09:33:43 +00:00
|
|
|
if (!defined('DC_CONTEXT_ADMIN')) {
|
2021-08-24 20:05:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2021-08-23 23:55:52 +00:00
|
|
|
|
|
|
|
$this->addUserAction(
|
2021-11-01 21:20:28 +00:00
|
|
|
/* type */
|
2021-11-01 09:33:43 +00:00
|
|
|
'settings',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* action */
|
2021-11-01 09:33:43 +00:00
|
|
|
'delete_all',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* ns */
|
2021-11-01 09:33:43 +00:00
|
|
|
'enhancePostContent',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* description */
|
2021-11-01 09:33:43 +00:00
|
|
|
__('delete all settings')
|
2021-08-23 23:55:52 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2021-11-01 21:20:28 +00:00
|
|
|
/* type */
|
2021-11-01 09:33:43 +00:00
|
|
|
'plugins',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* action */
|
2021-11-01 09:33:43 +00:00
|
|
|
'delete',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* ns */
|
2021-11-01 09:33:43 +00:00
|
|
|
'enhancePostContent',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* description */
|
2021-11-01 09:33:43 +00:00
|
|
|
__('delete plugin files')
|
2021-08-23 23:55:52 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addUserAction(
|
2021-11-01 21:20:28 +00:00
|
|
|
/* type */
|
2021-11-01 09:33:43 +00:00
|
|
|
'versions',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* action */
|
2021-11-01 09:33:43 +00:00
|
|
|
'delete',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* ns */
|
2021-11-01 09:33:43 +00:00
|
|
|
'enhancePostContent',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* description */
|
2021-11-01 09:33:43 +00:00
|
|
|
__('delete the version number')
|
2021-08-23 23:55:52 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2021-11-01 21:20:28 +00:00
|
|
|
/* type */
|
2021-11-01 09:33:43 +00:00
|
|
|
'settings',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* action */
|
2021-11-01 09:33:43 +00:00
|
|
|
'delete_all',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* ns */
|
2021-11-01 09:33:43 +00:00
|
|
|
'enhancePostContent',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* description */
|
2021-11-01 09:33:43 +00:00
|
|
|
sprintf(__('delete all %s settings'), 'enhancePostContent')
|
2021-08-23 23:55:52 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2021-11-01 21:20:28 +00:00
|
|
|
/* type */
|
2021-11-01 09:33:43 +00:00
|
|
|
'plugins',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* action */
|
2021-11-01 09:33:43 +00:00
|
|
|
'delete',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* ns */
|
2021-11-01 09:33:43 +00:00
|
|
|
'enhancePostContent',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* description */
|
2021-11-01 09:33:43 +00:00
|
|
|
sprintf(__('delete %s plugin files'), 'enhancePostContent')
|
2021-08-23 23:55:52 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->addDirectAction(
|
2021-11-01 21:20:28 +00:00
|
|
|
/* type */
|
2021-11-01 09:33:43 +00:00
|
|
|
'versions',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* action */
|
2021-11-01 09:33:43 +00:00
|
|
|
'delete',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* ns */
|
2021-11-01 09:33:43 +00:00
|
|
|
'enhancePostContent',
|
2021-11-01 21:20:28 +00:00
|
|
|
/* description */
|
2021-11-01 09:33:43 +00:00
|
|
|
sprintf(__('delete %s version number'), 'enhancePostContent')
|
|
|
|
);
|