2010-03-17 06:18:37 +09:00
|
|
|
<?php
|
2019-08-12 23:03:18 +09:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
2010-03-17 06:18:37 +09:00
|
|
|
|
2019-08-12 23:03:18 +09:00
|
|
|
defined('STATUSNET') || die();
|
2010-03-17 06:18:37 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Plugins settings
|
|
|
|
*
|
|
|
|
* @category Admin
|
2019-08-12 23:03:18 +09:00
|
|
|
* @package GNUsocial
|
2010-03-17 06:18:37 +09:00
|
|
|
* @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
|
2019-08-12 23:03:18 +09:00
|
|
|
* @throws Exception
|
2010-03-17 06:18:37 +09:00
|
|
|
*/
|
|
|
|
function title()
|
|
|
|
{
|
|
|
|
// TRANS: Tab and title for plugins admin panel.
|
2011-03-12 01:07:27 +09:00
|
|
|
return _m('TITLE','Plugins');
|
2010-03-17 06:18:37 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for using this form.
|
|
|
|
*
|
|
|
|
* @return string instructions
|
|
|
|
*/
|
|
|
|
function getInstructions()
|
|
|
|
{
|
|
|
|
// TRANS: Instructions at top of plugin admin page.
|
2019-08-16 23:06:27 +09:00
|
|
|
return _m('Additional plugins can be enabled and configured manually. ' .
|
2019-08-12 23:03:18 +09:00
|
|
|
'See the <a href="https://notabug.org/diogo/gnu-social/src/nightly/plugins/README.md">online plugin ' .
|
2010-03-17 06:18:37 +09:00
|
|
|
'documentation</a> for more details.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the plugins admin panel form
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showForm()
|
|
|
|
{
|
2019-08-16 23:06:27 +09:00
|
|
|
$this->elementStart('fieldset', ['id' => 'settings_plugins_default']);
|
2011-03-12 01:07:27 +09:00
|
|
|
|
2010-03-17 06:18:37 +09:00
|
|
|
// TRANS: Admin form section header
|
2019-08-16 23:06:27 +09:00
|
|
|
$this->element('legend', null, _m('Available Plugins'));
|
2010-03-17 06:18:37 +09:00
|
|
|
|
2019-08-16 23:06:27 +09:00
|
|
|
$this->showPlugins();
|
2010-03-17 06:18:37 +09:00
|
|
|
|
|
|
|
$this->elementEnd('fieldset');
|
|
|
|
}
|
|
|
|
|
2019-08-16 23:06:27 +09:00
|
|
|
protected function showPlugins()
|
2010-03-17 06:18:37 +09:00
|
|
|
{
|
2019-08-16 23:06:27 +09:00
|
|
|
$list = new PluginList($this);
|
|
|
|
$list->show();
|
2010-03-17 06:18:37 +09:00
|
|
|
}
|
|
|
|
}
|