summaryrefslogtreecommitdiffstats
path: root/web/template/header.php
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-06-24 23:22:08 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-06-25 11:33:29 +0200
commit8260111bcce49b73bd4973ae80296c913af2631d (patch)
treea3f7c8b2d4fe8005f632445d1b4c3b2d92b1533b /web/template/header.php
parent48cc8207bf88beaaedd21ef271b1d012f3e18686 (diff)
downloadaur-8260111bcce49b73bd4973ae80296c913af2631d.tar.gz
aur-8260111bcce49b73bd4973ae80296c913af2631d.tar.xz
Add a package request list
Introduce a new navigation point "Requests" that shows a list of pending package requests. This functionality is only available to Trusted Users. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/header.php')
-rw-r--r--web/template/header.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/web/template/header.php b/web/template/header.php
index df839950..03ce536c 100644
--- a/web/template/header.php
+++ b/web/template/header.php
@@ -57,6 +57,9 @@
<li><a href="<?= get_uri('/packages/'); ?>"><?= __("Packages"); ?></a></li>
<?php if (isset($_COOKIE['AURSID'])): ?>
<li><a href="<?= get_uri('/packages/'); ?>?SeB=m&amp;K=<?= username_from_sid($_COOKIE["AURSID"]); ?>"><?= __("My Packages"); ?></a></li>
+ <?php if (check_user_privileges()): ?>
+ <li><a href="<?= get_uri('/requests/') ; ?>"><?= __("Requests"); ?></a></li>
+ <?php endif; ?>
<li><a href="<?= get_uri('/submit/'); ?>"><?= __("Submit"); ?></a></li>
<?php if (check_user_privileges()): ?>
<li><a href="<?= get_uri('/accounts/') ; ?>"><?= __("Accounts"); ?></a></li>