mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-01 01:47:48 -05:00
It allows to modify system configuration from the interface. At the moment, only limits are modifiable. The user limit was removed from the user page and added here along with categories and feeds limits.
94 lines
4.8 KiB
PHTML
94 lines
4.8 KiB
PHTML
<?php
|
|
|
|
if (FreshRSS_Auth::accessNeedsAction()) {
|
|
?><ul class="nav nav-head nav-login"><?php
|
|
if (FreshRSS_Auth::hasAccess()) {
|
|
?><li class="item"><?php echo _i('logout'); ?> <a class="signout" href="<?php echo _url('auth', 'logout'); ?>"><?php echo _t('gen.auth.logout'); ?></a></li><?php
|
|
} else {
|
|
?><li class="item"><?php echo _i('login'); ?> <a class="signin" href="<?php echo _url('auth', 'login'); ?>"><?php echo _t('gen.auth.login'); ?></a></li><?php
|
|
}
|
|
?></ul><?php
|
|
}
|
|
?>
|
|
|
|
<div class="header">
|
|
<div class="item title">
|
|
<h1>
|
|
<a href="<?php echo _url('index', 'index'); ?>">
|
|
<img class="logo" src="<?php echo _i('icon', true); ?>" alt="⊚" />
|
|
<?php echo FreshRSS_Context::$system_conf->title; ?>
|
|
</a>
|
|
</h1>
|
|
</div>
|
|
|
|
<div class="item search">
|
|
<?php if (FreshRSS_Auth::hasAccess() || FreshRSS_Context::$system_conf->allow_anonymous) { ?>
|
|
<form action="<?php echo _url('index', 'index'); ?>" method="get">
|
|
<div class="stick">
|
|
<input type="search" name="search" id="search" class="extend" value="<?php echo FreshRSS_Context::$search; ?>" placeholder="<?php echo _t('gen.menu.search'); ?>" />
|
|
|
|
<?php $get = Minz_Request::param('get', ''); ?>
|
|
<?php if ($get != '') { ?>
|
|
<input type="hidden" name="get" value="<?php echo $get; ?>" />
|
|
<?php } ?>
|
|
|
|
<?php $order = Minz_Request::param('order', ''); ?>
|
|
<?php if ($order != '') { ?>
|
|
<input type="hidden" name="order" value="<?php echo $order; ?>" />
|
|
<?php } ?>
|
|
|
|
<?php $state = Minz_Request::param('state', ''); ?>
|
|
<?php if ($state != '') { ?>
|
|
<input type="hidden" name="state" value="<?php echo $state; ?>" />
|
|
<?php } ?>
|
|
|
|
<button class="btn" type="submit"><?php echo _i('search'); ?></button>
|
|
</div>
|
|
</form>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
<?php if (FreshRSS_Auth::hasAccess()) { ?>
|
|
<div class="item configure">
|
|
<div class="dropdown">
|
|
<div id="dropdown-configure" class="dropdown-target"></div>
|
|
<a class="btn dropdown-toggle" href="#dropdown-configure"><?php echo _i('configure'); ?></a>
|
|
<ul class="dropdown-menu">
|
|
<li class="dropdown-close"><a href="#close">❌</a></li>
|
|
<li class="dropdown-header"><?php echo _t('gen.menu.configuration'); ?></li>
|
|
<li class="item"><a href="<?php echo _url('configure', 'display'); ?>"><?php echo _t('gen.menu.display'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('configure', 'reading'); ?>"><?php echo _t('gen.menu.reading'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('configure', 'archiving'); ?>"><?php echo _t('gen.menu.archiving'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('configure', 'sharing'); ?>"><?php echo _t('gen.menu.sharing'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('configure', 'shortcut'); ?>"><?php echo _t('gen.menu.shortcuts'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('configure', 'queries'); ?>"><?php echo _t('gen.menu.queries'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('user', 'profile'); ?>"><?php echo _t('gen.menu.user_profile'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('extension', 'index'); ?>"><?php echo _t('gen.menu.extensions'); ?></a></li>
|
|
<?php if (FreshRSS_Auth::hasAccess('admin')) { ?>
|
|
<li class="separator"></li>
|
|
<li class="dropdown-header"><?php echo _t('gen.menu.admin'); ?></li>
|
|
<li class="item"><a href="<?php echo _url('configure', 'system'); ?>"><?php echo _t('gen.menu.system'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('user', 'manage'); ?>"><?php echo _t('gen.menu.user_management'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('auth', 'index'); ?>"><?php echo _t('gen.menu.authentication'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('update', 'checkInstall'); ?>"><?php echo _t('gen.menu.check_install'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('update', 'index'); ?>"><?php echo _t('gen.menu.update'); ?></a></li>
|
|
<?php } ?>
|
|
<li class="separator"></li>
|
|
<li class="item"><a href="<?php echo _url('stats', 'index'); ?>"><?php echo _t('gen.menu.stats'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('index', 'logs'); ?>"><?php echo _t('gen.menu.logs'); ?></a></li>
|
|
<li class="item"><a href="<?php echo _url('index', 'about'); ?>"><?php echo _t('gen.menu.about'); ?></a></li>
|
|
<?php
|
|
if (FreshRSS_Auth::accessNeedsAction()) {
|
|
?><li class="separator"></li>
|
|
<li class="item"><a class="signout" href="<?php echo _url('auth', 'logout'); ?>"><?php echo _i('logout'), ' ', _t('gen.auth.logout'); ?></a></li><?php
|
|
} ?>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<?php } elseif (FreshRSS_Auth::accessNeedsAction()) { ?>
|
|
<div class="item configure">
|
|
<?php echo _i('login'); ?><a class="signin" href="<?php echo _url('auth', 'login'); ?>"><?php echo _t('gen.auth.login'); ?></a>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|