2019-04-14 11:13:18 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
|
2019-04-14 11:20:44 -04:00
|
|
|
abstract class BaseAdminModule extends BaseModule
|
2019-04-14 11:13:18 -04:00
|
|
|
{
|
|
|
|
public static function post()
|
|
|
|
{
|
|
|
|
if (!is_site_admin()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// do not allow a page manager to access the admin panel at all.
|
|
|
|
if (!empty($_SESSION['submanage'])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function content()
|
|
|
|
{
|
|
|
|
if (!is_site_admin()) {
|
|
|
|
return Login::form();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($_SESSION['submanage'])) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$a = self::getApp();
|
|
|
|
|
|
|
|
// APC deactivated, since there are problems with PHP 5.5
|
|
|
|
//if (function_exists("apc_delete")) {
|
|
|
|
// $toDelete = new APCIterator('user', APC_ITER_VALUE);
|
|
|
|
// apc_delete($toDelete);
|
|
|
|
//}
|
|
|
|
// Header stuff
|
|
|
|
$a->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('admin/settings_head.tpl'), []);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Side bar links
|
|
|
|
*/
|
|
|
|
|
|
|
|
// array(url, name, extra css classes)
|
|
|
|
// not part of $aside to make the template more adjustable
|
|
|
|
$aside_sub = [
|
|
|
|
'information' => [L10n::t('Information'), [
|
|
|
|
'overview' => ['admin' , L10n::t('Overview') , 'overview'],
|
2019-04-14 11:20:44 -04:00
|
|
|
'federation' => ['admin/federation' , L10n::t('Federation Statistics') , 'federation']
|
2019-04-14 11:13:18 -04:00
|
|
|
]],
|
2019-04-14 11:25:27 -04:00
|
|
|
'configuration' => [L10n::t('Configuration'), [
|
2019-04-21 19:14:31 -04:00
|
|
|
'users' => ['admin/users' , L10n::t('Users') , 'users'],
|
2019-04-21 12:20:04 -04:00
|
|
|
'addons' => ['admin/addons' , L10n::t('Addons') , 'addons'],
|
2019-04-15 01:11:46 -04:00
|
|
|
'themes' => ['admin/themes' , L10n::t('Themes') , 'themes'],
|
2019-04-21 20:32:02 -04:00
|
|
|
'features' => ['admin/features' , L10n::t('Additional features') , 'features'],
|
2019-04-14 11:25:27 -04:00
|
|
|
'tos' => ['admin/tos' , L10n::t('Terms of Service') , 'tos'],
|
|
|
|
]],
|
2019-04-21 20:46:37 -04:00
|
|
|
'tools' => [L10n::t('Tools'), [
|
|
|
|
'contactblock' => ['admin/blocklist/contact', L10n::t('Contact Blocklist') , 'contactblock'],
|
|
|
|
]],
|
2019-04-14 11:13:18 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
$addons_admin = [];
|
|
|
|
$addonsAdminStmt = DBA::select('addon', ['name'], ['plugin_admin' => 1], ['order' => ['name']]);
|
|
|
|
foreach (DBA::toArray($addonsAdminStmt) as $addon) {
|
|
|
|
$addons_admin[] = ['admin/addons/' . $addon['name'], $addon['name'], 'addon'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$t = Renderer::getMarkupTemplate('admin/aside.tpl');
|
|
|
|
$a->page['aside'] .= Renderer::replaceMacros($t, [
|
|
|
|
'$admin' => ['addons_admin' => $addons_admin],
|
|
|
|
'$subpages' => $aside_sub,
|
|
|
|
'$admtxt' => L10n::t('Admin'),
|
|
|
|
'$plugadmtxt' => L10n::t('Addon Features'),
|
|
|
|
'$h_pending' => L10n::t('User registrations waiting for confirmation'),
|
|
|
|
'$admurl' => 'admin/'
|
|
|
|
]);
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|