diff options
Diffstat (limited to 'php/inc/admin_nav.php')
-rw-r--r-- | php/inc/admin_nav.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/php/inc/admin_nav.php b/php/inc/admin_nav.php new file mode 100644 index 0000000..073ab0a --- /dev/null +++ b/php/inc/admin_nav.php @@ -0,0 +1,27 @@ +<?php +/** + * Admin navigation. + * @package mirror + * @subpackage inc + */ +?> +<div id="side"> +<ul id="nav"> +<li><a href="<?php echo WEBPATH; ?>/admin/logout.php" class="logout" title="Logout to end your session.">« Logout <?php echo $_SESSION['user']['username']?></a></li> +<li> + <a href="<?php echo WEBPATH; ?>/admin/" title="Manage current mirrors.">Mirrors</a> + <ul> + <li><a href="<?php echo WEBPATH; ?>/admin/regions.php" title="A region is an area that has a set of mirrors.">Regions</a></li> + </ul> +</li> +<li> + <a href="<?php echo WEBPATH; ?>/admin/products.php" title="Products (firefox, thunderbird, etc.)">Products</a> + <ul> + <li><a href="<?php echo WEBPATH; ?>/admin/locations.php" title="Product file locations based on OS.">File Locations</a></li> + <li><a href="<?php echo WEBPATH; ?>/admin/os.php" title="Operating systems.">Operating Systems</a></li> + <li><a href="<?php echo WEBPATH; ?>/admin/lstats.php" title="View location statuses.">Location Statuses</a></li> + </ul> +</li> +<li><a href="<?php echo WEBPATH; ?>/admin/users.php" title="Manage administrator accounts.">Users</a></li> +</ul> +</div> |