-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMenuContainer.php
64 lines (50 loc) · 1.57 KB
/
MenuContainer.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/* * *********************************************
*
* *Project: phpTransformer.com .
* *File Location : .
* *File Name: .
* *Date Created: 00-00-2007.
* *Last Modified: 00-00-2007.
* *Descriptions:*.
* *Changes:*.
* *TODO:* .
* ****Author: Mohsen Mousawi [email protected] .
*
* ********************************************* */
?>
<?php
if (!isset($project)) {
header("location: ");
}
?>
<?php
global $WebsiteUrl, $CustomHead;
if (DirHtml == "rtl") {
} else {
}//end if
$CustomHead.= '';
$MenuCont = '<div id="pt_menu"><nav><ul>' . getMenu(0) . '</ul></nav></div>';
function getMenu($parentid) {
global $idLang;
$db_menu = new db();
$menu = "";
$res = $db_menu->get_results("SELECT * FROM `pt_menu`, pt_menu_lang WHERE
`pt_menu`.`id`=`pt_menu_lang`.`id`
and `pt_menu_lang`.`IdLang` ='".$idLang."'
and `pt_menu`.`parent_id` = ".$parentid.";");
if ($res) {
foreach ($res as $r) {
$cnt_of_child = $db_menu->get_var("select count(id) from `pt_menu` where parent_id = '" . $r->id . "' ;");
if ($cnt_of_child > 0) {
$menu .= '<li><a href="' . $r->href . '">' . $r->title . '</a>
<ul>' . getMenu($r->id) . '</ul>'
. '</li>';
} else {
$menu .= '<li><a href="' . $r->href . '">' . $r->title . '</a></li>';
}
}
}
return $menu;
}
?>