diff options
| author | Bulletin <bulletin@bulletinalpha.tk> | 2016-12-29 16:42:32 -0500 |
|---|---|---|
| committer | Bulletin <bulletin@bulletinalpha.tk> | 2016-12-29 16:42:32 -0500 |
| commit | 1a7fa60f6cb2ee26843ca19e37bb4ff44104ad55 (patch) | |
| tree | 2fa1fbdea9992ab63ba2a7abbac8bbcd633d13f7 /dash/nav.php | |
| download | bulletin-1a7fa60f6cb2ee26843ca19e37bb4ff44104ad55.tar.gz | |
Added existing progress
Diffstat (limited to 'dash/nav.php')
| -rw-r--r-- | dash/nav.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dash/nav.php b/dash/nav.php new file mode 100644 index 0000000..9baf7ad --- /dev/null +++ b/dash/nav.php @@ -0,0 +1,13 @@ +<?php +if (!defined('ACC_TYPE')) die; +if (ACC_TYPE == 'EMPLOYEE') { + $navtitles = array('Dashboard', 'Help'); + $navlinks = array('dash/', 'dash/help.php'); +} else if (ACC_TYPE == 'EMPLOYER') { + $navtitles = array('Dashboard', 'Post an Ad', 'Help'); + $navlinks = array('dash/', 'dash/post.php', 'dash/help.php'); +} else if (ACC_TYPE == 'ADMIN') { + $navtitles = array(); + $navlinks = array(); +} else die; +?> |
