-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmenu.php
31 lines (29 loc) · 1.04 KB
/
menu.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/*!
* **************************************************************
**************** ProQuiz V2.0.0b ******************************
***************************************************************/
/* documentation at: http://proquiz.softon.org/documentation/
/* Designed & Maintained by
/* - Softon Technologies
/* Developer
/* - Manzovi
/* For Support Contact @
/* - [email protected]
/* version 2.0.0 beta (2 Feb 2011)
/* Licensed under GPL license:
/* http://www.gnu.org/licenses/gpl.html
*/
?><ul>
<?php
foreach($headMenu as $value){
if(check_level($value) && check_auth($value)){
if(preg_match('/'.$value['link'].'/',$_SERVER['PHP_SELF'],$matches)){
echo '<li><a class="current" href="'.$value['link'].'">'.$value['title'].'</a></li>';
}else{
echo '<li><a href="'.$value['link'].'">'.$value['title'].'</a></li>';
}
}
}
?>
</ul>