translater/_uninstall.php

59 lines
1.5 KiB
PHP
Raw Normal View History

2021-08-18 19:42:30 +00:00
<?php
# -- BEGIN LICENSE BLOCK ----------------------------------
#
# This file is part of translater, a plugin for Dotclear 2.
#
2021-08-19 21:11:14 +00:00
# Copyright (c) 2009-2021 Jean-Christian Denis and contributors
2021-08-18 19:42:30 +00:00
#
# Licensed under the GPL version 2.0 license.
# A copy of this license is available in LICENSE file or at
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# -- END LICENSE BLOCK ------------------------------------
2021-08-18 22:48:47 +00:00
if (!defined('DC_CONTEXT_ADMIN')) {
return;
}
2021-08-18 19:42:30 +00:00
$this->addUserAction(
2021-08-18 22:48:47 +00:00
/* type */ 'settings',
/* action */ 'delete_all',
/* ns */ 'translater',
/* description */ __('delete all settings')
2021-08-18 19:42:30 +00:00
);
$this->addUserAction(
2021-08-18 22:48:47 +00:00
/* type */ 'plugins',
/* action */ 'delete',
/* ns */ 'translater',
/* description */ __('delete plugin files')
2021-08-18 19:42:30 +00:00
);
$this->addUserAction(
2021-08-18 22:48:47 +00:00
/* type */ 'versions',
/* action */ 'delete',
/* ns */ 'translater',
/* description */ __('delete the version number')
2021-08-18 19:42:30 +00:00
);
$this->addDirectAction(
2021-08-18 22:48:47 +00:00
/* type */ 'settings',
/* action */ 'delete_all',
/* ns */ 'translater',
/* description */ sprintf(__('delete all %s settings'), 'translater')
2021-08-18 19:42:30 +00:00
);
$this->addDirectAction(
2021-08-18 22:48:47 +00:00
/* type */ 'plugins',
/* action */ 'delete',
/* ns */ 'translater',
/* description */ sprintf(__('delete %s plugin files'), 'translater')
2021-08-18 19:42:30 +00:00
);
$this->addDirectAction(
2021-08-18 22:48:47 +00:00
/* type */ 'versions',
/* action */ 'delete',
/* ns */ 'translater',
/* description */ sprintf(__('delete %s version number'), 'translater')
);