zoneclearFeedServer/_uninstall.php

114 lines
2.1 KiB
PHP
Raw Normal View History

2015-04-25 19:25:03 +00:00
<?php
/**
* @brief zoneclearFeedServer, a plugin for Dotclear 2
2021-11-06 15:30:19 +00:00
*
* @package Dotclear
* @subpackage Plugin
2021-11-06 15:30:19 +00:00
*
* @author Jean-Christian Denis, BG, Pierre Van Glabeke
2021-11-06 15:30:19 +00:00
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2015-04-25 19:25:03 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
return null;
2015-04-25 19:25:03 +00:00
}
$mod_id = 'zoneclearFeedServer';
$this->addUserAction(
2021-11-06 15:30:19 +00:00
/* type */
'settings',
/* action */
'delete_all',
/* ns */
$mod_id,
/* desc */
__('delete all settings')
2015-04-25 19:25:03 +00:00
);
$this->addUserAction(
2021-11-06 15:30:19 +00:00
/* type */
'tables',
/* action */
'delete',
/* ns */
'zc_feed',
/* desc */
__('delete table')
2015-04-25 19:25:03 +00:00
);
$this->addUserAction(
2021-11-06 15:30:19 +00:00
/* type */
'plugins',
/* action */
'delete',
/* ns */
$mod_id,
/* desc */
__('delete plugin files')
2015-04-25 19:25:03 +00:00
);
$this->addUserAction(
2021-11-06 15:30:19 +00:00
/* type */
'versions',
/* action */
'delete',
/* ns */
$mod_id,
/* desc */
__('delete the version number')
2015-04-25 19:25:03 +00:00
);
$this->addDirectAction(
2021-11-06 15:30:19 +00:00
/* type */
'settings',
/* action */
'delete_all',
/* ns */
$mod_id,
/* desc */
sprintf(__('delete all %s settings'), $mod_id)
2015-04-25 19:25:03 +00:00
);
$this->addDirectAction(
2021-11-06 15:30:19 +00:00
/* type */
'tables',
/* action */
'delete',
/* ns */
'zc_feed',
/* desc */
sprintf(__('delete %s table'), $mod_id)
2015-04-25 19:25:03 +00:00
);
$this->addDirectAction(
2021-11-06 15:30:19 +00:00
/* type */
'plugins',
/* action */
'delete',
/* ns */
$mod_id,
/* desc */
sprintf(__('delete %s plugin files'), $mod_id)
2015-04-25 19:25:03 +00:00
);
$this->addDirectAction(
2021-11-06 15:30:19 +00:00
/* type */
'versions',
/* action */
'delete',
/* ns */
$mod_id,
/* desc */
sprintf(__('delete %s version number'), $mod_id)
2015-04-25 19:25:03 +00:00
);
$this->addDirectCallback(
2021-11-06 15:30:19 +00:00
/* function */
'zoneclearfeedServerUninstall',
/* desc */
'delete feeds relations'
2015-04-25 19:25:03 +00:00
);
function zoneclearfeedServerUninstall($core, $id)
{
if ($id != 'zoneclearFeedServer') {
return null;
}
//...
2021-11-06 15:30:19 +00:00
}