summaryrefslogtreecommitdiff
path: root/dash/nav.php
blob: bb0153218294e7e2420a9e015bb94840dc06ba7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
if (!defined('ACC_TYPE')) die;
if (ACC_TYPE == 'EMPLOYEE') {
  $navtitles = array('Dashboard', 'Help', 'Rate');
  $navlinks = array('dash/', 'dash/help.php', 'dash/rate.php');
} else if (ACC_TYPE == 'EMPLOYER') {
  $navtitles = array('Dashboard', 'Help', 'Rate', 'Post');
  $navlinks = array('dash/', 'dash/help.php', 'dash/rate.php', 'dash/post.php');
} else if (ACC_TYPE == 'ADMIN') {
  $navtitles = array();
  $navlinks = array();
} else die;
?>