diff options
| author | Carson Fleming <cflems@cflems.net> | 2017-03-09 00:28:02 -0500 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2017-03-09 00:28:02 -0500 |
| commit | a44a0e047a7582fe7e31743e1b03a17cf2987f73 (patch) | |
| tree | 1bb28593eb493cac175f2ed42ab108a4248e1ec1 /dash/nav.php | |
| parent | f75fc7b47735ed73535478e4d70e62694247a586 (diff) | |
| download | bulletin-a44a0e047a7582fe7e31743e1b03a17cf2987f73.tar.gz | |
Created the ability to post ads, rating framework
Diffstat (limited to 'dash/nav.php')
| -rw-r--r-- | dash/nav.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dash/nav.php b/dash/nav.php index 9baf7ad..bb01532 100644 --- a/dash/nav.php +++ b/dash/nav.php @@ -1,11 +1,11 @@ <?php if (!defined('ACC_TYPE')) die; if (ACC_TYPE == 'EMPLOYEE') { - $navtitles = array('Dashboard', 'Help'); - $navlinks = array('dash/', 'dash/help.php'); + $navtitles = array('Dashboard', 'Help', 'Rate'); + $navlinks = array('dash/', 'dash/help.php', 'dash/rate.php'); } else if (ACC_TYPE == 'EMPLOYER') { - $navtitles = array('Dashboard', 'Post an Ad', 'Help'); - $navlinks = array('dash/', 'dash/post.php', 'dash/help.php'); + $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(); |
