3 * StatusNet, the distributed open-source microblogging tool
5 * Form for enabling/disabling plugins
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @copyright 2010 StatusNet, Inc.
25 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
26 * @link http://status.net/
29 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 * Form for joining a group
38 * @author Brion Vibber <brion@status.net>
39 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
40 * @link http://status.net/
42 * @see PluginEnableForm
45 class PluginDisableForm extends PluginEnableForm
50 * @return string ID of the form
55 return 'plugin-disable-' . $this->plugin;
61 * @return string of the form class
66 return 'form_plugin_disable';
72 * @return string URL of the action
77 return common_local_url('plugindisable',
78 array('plugin' => $this->plugin));
87 function formActions()
89 // TRANS: Plugin admin panel controls
90 $this->out->submit('submit', _m('plugin', 'Disable'));