licenseBootstrap/_uninstall.php

46 lines
1.1 KiB
PHP
Raw Normal View History

2021-08-17 21:25:45 +00:00
<?php
# -- BEGIN LICENSE BLOCK ----------------------------------
#
# This file is part of licenseBootstrap, a plugin for Dotclear 2.
#
2021-08-20 23:26:44 +00:00
# Copyright (c) 2009-2021 Jean-Christian Denis and contributors
2021-08-17 21:25:45 +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 ------------------------------------
if (!defined('DC_CONTEXT_ADMIN')) {
2021-08-17 21:46:17 +00:00
return null;
2021-08-17 21:25:45 +00:00
}
$mod_id = 'pacKman';
$this->addUserAction(
2021-08-17 21:46:17 +00:00
/* type */ 'settings',
/* action */ 'delete_all',
/* ns */ $mod_id,
/* desc */ __('delete all settings')
2021-08-17 21:25:45 +00:00
);
$this->addUserAction(
2021-08-17 21:46:17 +00:00
/* type */ 'plugins',
/* action */ 'delete',
/* ns */ $mod_id,
/* desc */ __('delete plugin files')
2021-08-17 21:25:45 +00:00
);
$this->addDirectAction(
2021-08-17 21:46:17 +00:00
/* type */ 'settings',
/* action */ 'delete_all',
/* ns */ $mod_id,
/* desc */ sprintf(__('delete all %s settings'), $mod_id)
2021-08-17 21:25:45 +00:00
);
$this->addDirectAction(
2021-08-17 21:46:17 +00:00
/* type */ 'plugins',
/* action */ 'delete',
/* ns */ $mod_id,
/* desc */ sprintf(__('delete %s plugin files'), $mod_id)
);