cinecturlink2/_uninstall.php

86 lines
2.2 KiB
PHP
Raw Normal View History

2021-09-07 12:33:18 +00:00
<?php
2021-09-07 13:21:38 +00:00
/**
* @brief cinecturlink2, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Jean-Christian Denis and Contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-09-07 12:33:18 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
2021-09-07 13:21:38 +00:00
return null;
2021-09-07 12:33:18 +00:00
}
$this->addUserAction(
2021-09-07 13:21:38 +00:00
/* type */ 'settings',
/* action */ 'delete_all',
/* ns */ 'cinecturlink2',
/* desc */ __('delete all settings')
2021-09-07 12:33:18 +00:00
);
$this->addUserAction(
2021-09-07 13:21:38 +00:00
/* type */ 'tables',
/* action */ 'delete',
/* ns */ 'cinecturlink2',
/* desc */ sprintf(__('delete %s table'), 'cinecturlink2')
2021-09-07 12:33:18 +00:00
);
$this->addUserAction(
2021-09-07 13:21:38 +00:00
/* type */ 'tables',
/* action */ 'delete',
/* ns */ 'cinecturlink2_cat',
/* desc */ sprintf(__('delete %s table'), 'cinecturlink2_cat')
2021-09-07 12:33:18 +00:00
);
$this->addUserAction(
2021-09-07 13:21:38 +00:00
/* type */ 'versions',
/* action */ 'delete',
/* ns */ 'cinecturlink2',
/* desc */ __('delete the version number')
2021-09-07 12:33:18 +00:00
);
$this->addUserAction(
2021-09-07 13:21:38 +00:00
/* type */ 'plugins',
/* action */ 'delete',
/* ns */ 'cinecturlink2',
/* desc */ __('delete plugin files')
2021-09-07 12:33:18 +00:00
);
$this->addDirectAction(
2021-09-07 13:21:38 +00:00
/* type */ 'settings',
/* action */ 'delete_all',
/* ns */ 'cinecturlink2',
/* desc */ sprintf(__('delete all %s settings'), 'cinecturlink2')
2021-09-07 12:33:18 +00:00
);
$this->addDirectAction(
2021-09-07 13:21:38 +00:00
/* type */ 'tables',
/* action */ 'delete',
/* ns */ 'cinecturlink2',
/* desc */ sprintf(__('delete %s table'), 'cinecturlink2')
2021-09-07 12:33:18 +00:00
);
$this->addDirectAction(
2021-09-07 13:21:38 +00:00
/* type */ 'tables',
/* action */ 'delete',
/* ns */ 'cinecturlink2_cat',
/* desc */ sprintf(__('delete %s table'), 'cinecturlink2_cat')
2021-09-07 12:33:18 +00:00
);
$this->addDirectAction(
2021-09-07 13:21:38 +00:00
/* type */ 'versions',
/* action */ 'delete',
/* ns */ 'cinecturlink2',
/* desc */ sprintf(__('delete %s version number'), 'cinecturlink2')
2021-09-07 12:33:18 +00:00
);
$this->addDirectAction(
2021-09-07 13:21:38 +00:00
/* type */ 'plugins',
/* action */ 'delete',
/* ns */ 'cinecturlink2',
/* description */ sprintf(__('delete %s plugin files'), 'cinecturlink2')
);