aboutsummaryrefslogtreecommitdiff
path: root/app/layout/header.phtml
blob: 238c664b084be6a729a0ae4ac770ba4c9e522b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?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>