2010-03-16 21:18:37 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Plugins administration panel
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Settings
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Brion Vibber <brion@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Plugins settings
|
|
|
|
*
|
|
|
|
* @category Admin
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Brion Vibber <brion@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
class PluginsadminpanelAction extends AdminPanelAction
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Returns the page title
|
|
|
|
*
|
|
|
|
* @return string page title
|
|
|
|
*/
|
|
|
|
function title()
|
|
|
|
{
|
|
|
|
// TRANS: Tab and title for plugins admin panel.
|
2011-03-11 16:07:27 +00:00
|
|
|
return _m('TITLE','Plugins');
|
2010-03-16 21:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for using this form.
|
|
|
|
*
|
|
|
|
* @return string instructions
|
|
|
|
*/
|
|
|
|
function getInstructions()
|
|
|
|
{
|
|
|
|
// TRANS: Instructions at top of plugin admin page.
|
2011-03-11 16:07:27 +00:00
|
|
|
return _('Additional plugins can be enabled and configured manually. ' .
|
2015-06-14 16:59:46 +01:00
|
|
|
'See the <a href="https://git.gnu.io/gnu/gnu-social/blob/master/plugins/README.md">online plugin ' .
|
2010-03-16 21:18:37 +00:00
|
|
|
'documentation</a> for more details.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the plugins admin panel form
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showForm()
|
|
|
|
{
|
|
|
|
$this->elementStart('fieldset', array('id' => 'settings_plugins_default'));
|
2011-03-11 16:07:27 +00:00
|
|
|
|
2010-03-16 21:18:37 +00:00
|
|
|
// TRANS: Admin form section header
|
|
|
|
$this->element('legend', null, _('Default plugins'), 'default');
|
|
|
|
|
|
|
|
$this->showDefaultPlugins();
|
|
|
|
|
|
|
|
$this->elementEnd('fieldset');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Until we have a general plugin metadata infrastructure, for now
|
|
|
|
* we'll just list up the ones we know from the global default
|
|
|
|
* plugins list.
|
|
|
|
*/
|
|
|
|
protected function showDefaultPlugins()
|
|
|
|
{
|
|
|
|
$plugins = array_keys(common_config('plugins', 'default'));
|
|
|
|
natsort($plugins);
|
|
|
|
|
|
|
|
if ($plugins) {
|
|
|
|
$list = new PluginList($plugins, $this);
|
|
|
|
$list->show();
|
|
|
|
} else {
|
|
|
|
$this->element('p', null,
|
2011-03-11 16:07:27 +00:00
|
|
|
// TRANS: Text displayed on plugin admin page when no plugin are enabled.
|
2010-03-16 21:18:37 +00:00
|
|
|
_('All default plugins have been disabled from the ' .
|
|
|
|
'site\'s configuration file.'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|