3 * StatusNet, the distributed open-source microblogging tool
5 * Plugins administration panel
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 * @author Brion Vibber <brion@status.net>
25 * @copyright 2010 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET')) {
39 * @author Brion Vibber <brion@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41 * @link http://status.net/
43 class PluginsadminpanelAction extends AdminPanelAction
46 * Returns the page title
48 * @return string page title
52 // TRANS: Tab and title for plugins admin panel.
53 return _m('TITLE','Plugins');
57 * Instructions for using this form.
59 * @return string instructions
61 function getInstructions()
63 // TRANS: Instructions at top of plugin admin page.
64 return _('Additional plugins can be enabled and configured manually. ' .
65 'See the <a href="http://status.net/wiki/Plugins">online plugin ' .
66 'documentation</a> for more details.');
70 * Show the plugins admin panel form
76 $this->elementStart('fieldset', array('id' => 'settings_plugins_default'));
78 // TRANS: Admin form section header
79 $this->element('legend', null, _('Default plugins'), 'default');
81 $this->showDefaultPlugins();
83 $this->elementEnd('fieldset');
87 * Until we have a general plugin metadata infrastructure, for now
88 * we'll just list up the ones we know from the global default
91 protected function showDefaultPlugins()
93 $plugins = array_keys(common_config('plugins', 'default'));
97 $list = new PluginList($plugins, $this);
100 $this->element('p', null,
101 // TRANS: Text displayed on plugin admin page when no plugin are enabled.
102 _('All default plugins have been disabled from the ' .
103 'site\'s configuration file.'));