Mercurial > owls
comparison Nav.inc.php @ 13:3e3fa7725abb
reorganized filesystem strukture
author | meillo@marmaro.de |
---|---|
date | Sun, 27 May 2007 02:37:55 +0200 |
parents | Includes/Nav.inc.php@144bc36a6c27 |
children |
comparison
equal
deleted
inserted
replaced
12:682b4a24469c | 13:3e3fa7725abb |
---|---|
1 <!-- Nav --> | |
2 <ul id="nav"> | |
3 | |
4 <?php | |
5 // all nodes that are displayed in the nav | |
6 global $nodesDisplayed; | |
7 $nodesDisplayed = ''; | |
8 | |
9 | |
10 // build nav tree | |
11 echo ' '. navtree(0) ."\n"; | |
12 | |
13 | |
14 // find nodes without existing parent (orphans) | |
15 $sql = sprintf(" | |
16 select distinct | |
17 idParent | |
18 from %sOwls | |
19 where | |
20 idParent not in (select id from %sOwls) | |
21 and idParent != 0 -- not the real root | |
22 order by name asc | |
23 ", | |
24 DB_PREFIX, | |
25 DB_PREFIX | |
26 ); | |
27 $result = mysql_query($sql) or die(mysql_error()); | |
28 unset($sql); | |
29 | |
30 // output only if there are orphans | |
31 if (mysql_num_rows($result)) { | |
32 echo ' <li id="orphans">orphans<ul>'; | |
33 // output subtree for every orphan | |
34 while($row = mysql_fetch_array($result)) { | |
35 echo navtree($row['idParent']); | |
36 } | |
37 unset($row); | |
38 mysql_free_result($result); | |
39 | |
40 echo '</ul></li>'."\n"; | |
41 } | |
42 | |
43 | |
44 | |
45 // find broken nodes - nodes not displayed in nav or orphans (i.e. rings) | |
46 $sql = sprintf(" | |
47 select | |
48 id, name | |
49 from %sOwls | |
50 where | |
51 id not in ( %s ) | |
52 order by name asc | |
53 ", | |
54 DB_PREFIX, | |
55 substr($nodesDisplayed, 2) | |
56 ); | |
57 $result = mysql_query($sql) or die(mysql_error()); | |
58 unset($sql); | |
59 | |
60 // output only if there are broken nodes | |
61 if (mysql_num_rows($result)) { | |
62 echo ' <li id="broken">broken<ul>'; | |
63 // output list of nodes (no tree, cause there may be rings!) | |
64 while($row = mysql_fetch_array($result)) { | |
65 echo '<li><a href="'. $row['id'] .'"'. (($_GET['id'] == $row['id']) ? ' id="selected"' : '') .'>'. $row['name'] .'</a></li>'; | |
66 } | |
67 unset($row); | |
68 mysql_free_result($result); | |
69 | |
70 echo '</ul></li>'."\n"; | |
71 } | |
72 | |
73 ?> | |
74 | |
75 | |
76 </ul> | |
77 | |
78 <?php | |
79 | |
80 | |
81 /** | |
82 * recursive function creates the output for the nav tree | |
83 * | |
84 * @param $root the id of the parent of the root node | |
85 * @return string HTML output that shows the nav tree | |
86 */ | |
87 function navtree($root) { | |
88 // fetch subcategories | |
89 $sql = sprintf(" | |
90 select | |
91 id, idParent, name | |
92 from %sOwls | |
93 where | |
94 idParent = $root | |
95 order by name asc | |
96 ", | |
97 DB_PREFIX | |
98 ); | |
99 $result = mysql_query($sql) or die(mysql_error()); | |
100 unset($sql); | |
101 | |
102 $return = ''; | |
103 while($row = mysql_fetch_array($result)) { | |
104 // add to list of displayed nodes | |
105 global $nodesDisplayed; | |
106 $nodesDisplayed .= ', '. $row['id']; | |
107 | |
108 $return .= '<li><a href="'. $row['id'] .'"'. (($_GET['id'] == $row['id']) ? ' id="selected"' : '') .'>'. $row['name'] .'</a>'; | |
109 if ($row['id'] != $row['idParent']) { | |
110 $subtree = navtree($row['id']); | |
111 if (!empty($subtree)) { | |
112 #$return .= ' <a href="javascript:toggleVisibility(\''. $row['id'] .'\')" id="ctrl'. $row['id'] .'" style="display: none;">-</a>'; | |
113 $return .= '<ul id="node'. $row['id'] .'">'. $subtree .'</ul>'; | |
114 } | |
115 unset($subtree); | |
116 } | |
117 $return .= '</li>'; | |
118 } | |
119 unset($row); | |
120 mysql_free_result($result); | |
121 | |
122 // return | |
123 return $return; | |
124 } | |
125 | |
126 ?> | |
127 | |
128 <!-- Content --> |