File: class-tree.php

package info (click to toggle)
knowledgeroot 0.9.7.3-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,368 kB
  • ctags: 23,662
  • sloc: php: 6,113; sql: 171; perl: 133; xml: 132; makefile: 40
file content (432 lines) | stat: -rwxr-xr-x 13,475 bytes parent folder | download
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
<?php
class pathTree {
	var $CLASS;
	var $cache = array(); // cache of tree records indexed by tree id


	function start(&$CLASS) {
		$this->CLASS =& $CLASS;
	}

	function getPath($id = "0", $urlPrefix = '') {
		if($id == "") { $id = "0"; }
		$treeRecord = $this->getTreeRecord($id);

		if($treeRecord != null)  {
			if($treeRecord->belongs_to == "0") {
				return "/ <a href=\"" . $urlPrefix . "index.php?id=".$treeRecord->id."\">".$treeRecord->title."</a>";
			} else {
				$path = $this->getPath($treeRecord->belongs_to, $urlPrefix);
				return $path . " / <a href=\"" . $urlPrefix . "index.php?id=".$treeRecord->id."\">" . $treeRecord->title."</a>";
			}
		} else {
			return "/ ";
		}
	}
	
	function getTextPath($id = "0", $urlPrefix = '') {
		if($id == "") { $id = "0"; }
		$treeRecord = $this->getTreeRecord($id);

		if($treeRecord != null)  {
			if($treeRecord->belongs_to == "0") {
				return "/ ".$treeRecord->title;
			} else {
				$path = $this->getTextPath($treeRecord->belongs_to, $urlPrefix);
				return $path . " / " . $treeRecord->title;
			}
		} else {
			return "/ ";
		}
	}

	function getUnlinkedPath($id = "0") {
		if($id == "") { $id = "0"; }
		$treeRecord = $this->getTreeRecord($id);

		if($treeRecord != null)  {
			if($treeRecord->belongs_to == "0") {

				return "/ ".$treeRecord->title;
			} else {
				$path = $this->getUnlinkedPath($treeRecord->belongs_to);
				return $path . " / " . $treeRecord->title;
			}
		} else {
			return "/ ";
		}
	}

	function getTreePageTitle($id) {

		$treeRecord = $this->getTreeRecord($id);

		if($treeRecord != null)  {
				return $treeRecord->title;
		} else {
			return "";
		}
	}

	function getTreeRecord($id = "0") {
		if($id == "") { $id = "0"; }
		$treeRecord = null;
		$no_rows = false;

		if($this->cache[$id] != null) {
			$treeRecord = $this->cache[$id];
		} else {
			$res = $this->CLASS['db']->query("SELECT * FROM tree WHERE id='$id'");
			$anz = $this->CLASS['db']->num_rows($res);
			if($anz == 1)  {
				$row = $this->CLASS['db']->fetch_object($res);
				$treeRecord = $row;
				$this->cache[$id] = $treeRecord;
			} else {
				return null;
			}
		}
		return $treeRecord;
	}

	function isTree($id) {
		if($this->cache[$id] != null) {
			return TRUE;
		}

		return FALSE;
	}

	// return parent of element in tree
	function getParent($treeid) {
		$res = $this->CLASS['db']->query("SELECT belongs_to FROM tree WHERE id=".$treeid."");
		$anz = $this->CLASS['db']->num_rows($res);

		if($anz == 1) {
			$row = $this->CLASS['db']->fetch_assoc($res);
			return $row['belongs_to'];
		} else {
			return 0;
		}
	}
}

class categoryTree {
	var $out = array();
	var $open = array();
	var $firstrun = 0;
	var $expand = 0;
	var $doexpand = 0;
	var $targetfile = "index.php";
	var $move = False;

	var $CLASS;
	var $category = array();

	var $userid = 0;
	var $groupid = 0;

	var $admin = 0;

	function start(&$CLASS,$move=FALSE,$targetfile="index.php") {
		$this->CLASS =& $CLASS;

		if($_SESSION['firstrun'] == "") {
			$this->doexpand =& $this->CLASS['vars']['menu']['expandall'];
		} else {
			$this->doexpand = 0;
		}

		$this->move = $move;
		$this->targetfile = $targetfile;

		$this->admin = $_SESSION['admin'];
	}

	function readCategories() {
		if($this->category[0] != "") {
			return $this->category;
		}

		//fr mysql umschreiben
		if($this->admin == 1) {
			$query = "SELECT * FROM tree WHERE deleted=0 ORDER BY title ASC";
		} else {
			if($this->CLASS['db']->dbtype == "mysql" || $this->CLASS['db']->dbtype == "mysqli") {
				if($_SESSION['groupid'] == 0) {
					$query = "SELECT * FROM tree WHERE deleted=0 AND ((otherrights > 0) OR (`group`='".$_SESSION['groupid']."' AND grouprights > 0) OR (owner='".$_SESSION['userid']."' AND userrights>0)) ORDER BY title ASC";
				} else {
					$query_part = " OR (`group`='".$_SESSION['groupid']."' AND grouprights > 0)";
					
					$res = $this->CLASS['db']->query("SELECT groupid FROM user_group WHERE userid=".$_SESSION['userid']."");
					while($row = $this->CLASS['db']->fetch_assoc($res)) {
						$query_part .= " OR (`group`='".$row['groupid']."' AND grouprights > 0)";
					}
					
					$query = "SELECT * FROM tree WHERE deleted=0 AND ((otherrights > 0) " . $query_part . " OR (owner='".$_SESSION['userid']."' AND userrights>0)) ORDER BY title ASC";
				}
			} else {
				if($_SESSION['groupid'] == 0) {
					$query = "SELECT * FROM tree WHERE deleted=0 AND ((otherrights > 0) OR (\"group\"='".$_SESSION['groupid']."' AND grouprights > 0) OR (owner='".$_SESSION['userid']."' AND userrights>0)) ORDER BY title ASC";
				} else {
					$query_part = " OR (\"group\"='".$_SESSION['groupid']."' AND grouprights > 0)";
					
					$res = $this->CLASS['db']->query("SELECT groupid FROM user_group WHERE userid=".$_SESSION['userid']."");
					while($row = $this->CLASS['db']->fetch_assoc($res)) {
						$query_part .= " OR (\"group\"='".$row['groupid']."' AND grouprights > 0)";
					}
					
					$query = "SELECT * FROM tree WHERE deleted=0 AND ((otherrights > 0) " . $query_part . " OR (owner='".$_SESSION['userid']."' AND userrights>0)) ORDER BY title ASC";
				}
			}
		}

		$res = $this->CLASS['db']->query($query);

		while ( $var = $this->CLASS['db']->fetch_assoc($res) ) {
			$out[ $var[belongs_to] ][ $var[id] ] = $var[title];
			$this->out[ $var[belongs_to] ][ $var[id] ] = $var[title];
			//$this->visible[ $var[id] ] = $var[visible];
			if($this->firstrun == 1) {
				$this->open[$var[id] ] = 0;
				$_SESSION['open'][$var[id]] = 0;
			}
		}

		return $out;
	}

	function isParentelement($element, $parent) {
		$query = "SELECT belongs_to FROM tree WHERE id='".$element."'";
		$res = $this->CLASS['db']->query($query);
		$anz = $this->CLASS['db']->num_rows($res);
		if($anz != 1) {
			return FALSE;
		}

		$row = $this->CLASS['db']->fetch_assoc($res);

		if($row['belongs_to'] == $parent) {
			return TRUE;
		} else {
			return $this->isParentelement($row['belongs_to'],$parent);
		}
	}

	function buildTree( $rec_id ) {
		echo "<table class=\"tree\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n";
		$cats = $this->readCategories();

		if($this->CLASS['vars']['menu']['ajax'] == "yes") {
			if($this->CLASS['vars']['menu']['type'] == "static") {
				$fixedstyle = "style=\"display:none;\"";
				$slidestyle = "style=\"display:block;\"";
			} else {
				$fixedstyle = "style=\"display:block;\"";
				$slidestyle = "style=\"display:none;\"";
			}
			
			if($this->move == TRUE) {
				$moveparam = "1";
			}
			
			echo '
				<tr><td class="treenavi">
					<div>
						<table width="100%">
							<tr>
								<td><a href="#" border="0" onclick="HideTree();"><img border="0" width="22" src="images/left.gif" title="'.$this->CLASS['language']->get['tree']['hidetree'].'"></a></td>
								<td><a href="#" onclick="TreeExpand('.$moveparam.');" alt="reload"><img border="0" width="22" src="images/plus.gif" title="'.$this->CLASS['language']->get['tree']['expand'].'" /></a></td>
								<td><a href="#" onclick="TreeReload('.$moveparam.');" alt="reload"><img border="0" width="22" src="images/reload.gif" title="'.$this->CLASS['language']->get['tree']['reload'].'" /></a></td>
								<td><a href="#" onclick="TreeCollapse('.$moveparam.');" alt="reload"><img border="0" width="22" src="images/minus.gif" title="'.$this->CLASS['language']->get['tree']['collapse'].'" /></a></td>
								<td>
									<div id="treefixed" '.$fixedstyle.'><a href="#" onclick="TreeFixed();"><img border="0" width="22" src="images/fixed.gif" title="'.$this->CLASS['language']->get['tree']['showmenu'].'" /></a></div>
									<div id="treeslide" '.$slidestyle.'><a href="#" onclick="TreeSlide();"><img border="0" width="22" src="images/close.gif" title="'.$this->CLASS['language']->get['tree']['closemenu'].'" /></a></div>
								</td>
							</tr>
						</table>

					</div>
				</td></tr>
			';
			echo "<tr><td>\n";
			echo "<div id=\"treeelements\">\n";
			//echo "<div id=\"treeanchor\"></div>\n";
			echo "<table id=\"treeelementtable\" class=\"treeelements\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n";
			echo $this->showAjaxTreePart( $this->getTreePart(0) );
			echo "</table>\n";
			echo "</div>\n";
			echo "</td></tr>\n";
		} else {
			echo $this->showTreePart( $this->getTreePart(0) );
		}

		echo "</table>\n";
	}

	function buildAjaxTreePart($id) {
		$this->open = $_SESSION['open'];

		$cats = $this->readCategories();

		if($id == "0") {
			$depth = 0;
		} else {
			$depth = 1;
		}

		$spaces = $this->getDeepPart($id) + $depth;
		return $this->showAjaxTreePart( $this->getTreePart($id), $spaces );
	}

	function showTreePart( $arr, $indent = 0 ) {
		$space = "";
		$open = array();

		for ( $i=0; $i<$indent; $i++ ) {
			$space .= "&nbsp;<img src=\"images/clear.gif\" alt=\"\" />&nbsp;";
		}

		$out = "";

		if( count( $arr ) > 0 ) {
        		foreach( $arr as $id => $title ) {
				if($title == "") {
					$title = "[EMPTY]";
				}
				//if($this->visible[$id] == 1) {
					if($this->move == TRUE) {
						$indexfile = "move.php";
					} else {
						$indexfile = "index.php";
					}
					
					if($this->lastPart($id) == 0) {
						if($_SESSION['open'][$id] == 1 || $this->expand == 1 || $this->doexpand == 1) {
							$spaces = $space . "&nbsp;<a class=\"image\" href=\"".$indexfile."?openid=$id\"><img border=\"0\" alt=\"\" src=\"images/minus.jpg\"></a>&nbsp;";
						} else {
							$spaces = $space . "&nbsp;<a class=\"image\" href=\"".$indexfile."?openid=$id\"><img border=\"0\" alt=\"\" src=\"images/plus.jpg\"></a>&nbsp;";
						}
					} else {
						$spaces = $space . "&nbsp;<img border=\"0\" alt=\"\" src=\"images/black.gif\" />&nbsp;";
					}

					if($this->move == TRUE) {
						$out .= "<tr><td class=\"tree\" nowrap=\"nowrap\">".$spaces . "<a href=\"#\" onclick=\"window.opener.document.forms.move.to.value = '".$id."'; window.opener.document.forms.move.submit(); window.close();\">" .$title . "</a></td></tr>\n";
					} else {
						$out .= "<tr><td class=\"tree\" nowrap=\"nowrap\">".$spaces . "<a href=\"index.php?id=$id\">" .$title . "</a></td></tr>\n";
					}

					if($this->open[$id] == 1 || $this->expand == 1 || $this->doexpand == 1) {
						$_SESSION['open'][$id] = 1;
						$this->open[$id] = 1;
						$out .= $this->showTreePart( $this->getTreePart( $id ), $indent+1 );
					}
				//}
			}
		}

		return $out;
	}

	function showAjaxTreePart( $arr, $indent = 0 ) {
		$space = "";
		$open = array();

		for ( $i=0; $i<$indent; $i++ ) {
			$space .= "&nbsp;<img src=\"images/clear.gif\" alt=\"\" />&nbsp;";
		}

		$out = "";

		if( count( $arr ) > 0 ) {
        		foreach( $arr as $id => $title ) {
				if($title == "") {
					$title = "[EMPTY]";
				}
				
				//if($this->visible[$id] == 1) {
					if($this->lastPart($id) == 0) {
						if($_SESSION['open'][$id] == 1 || $this->expand == 1 || $this->doexpand == 1) {
							
							// check if page is movingpage
							$moveparam = "";
							if($this->move == TRUE) {
								$moveparam = ",1"; 
							}
							
							$spaces = $space . "&nbsp;<a id=\"linkid_".$id."\" class=\"image\" href=\"#\" onclick=\"AjaxMenuClose(".$id.$moveparam.");\"><img id=\"menuimg_".$id."\" border=\"0\" alt=\"\" src=\"images/minus.jpg\"></a>&nbsp;";
						} else {
							$spaces = $space . "&nbsp;<a id=\"linkid_".$id."\" class=\"image\" href=\"#\" onclick=\"AjaxMenuOpen(".$id.$moveparam.");\"><img id=\"menuimg_".$id."\" border=\"0\" alt=\"\" src=\"images/plus.jpg\"></a>&nbsp;";
						}
					} else {
						$spaces = $space . "&nbsp;<img border=\"0\" alt=\"\" src=\"images/black.gif\" />&nbsp;";
					}

					if($this->move == TRUE) {
						$out .= "<tr id=\"menu_".$id."\"><td class=\"tree\" nowrap=\"nowrap\">".$spaces . "<a id=\"alink_".$id."\" href=\"#\" onclick=\"window.opener.document.forms.move.to.value = '".$id."'; window.opener.document.forms.move.submit(); window.close();\">" .$title . "</a></td></tr>\n";
					} else {
						$out .= "<tr id=\"menu_".$id."\"><td class=\"tree\" nowrap=\"nowrap\">".$spaces . "<a id=\"alink_".$id."\" href=\"index.php?id=$id\">" .$title . "</a></td></tr>\n";
					}

					if($this->open[$id] == 1 || $this->expand == 1 || $this->doexpand == 1) {
						$_SESSION['open'][$id] = 1;
						$this->open[$id] = 1;
						$out .= $this->showAjaxTreePart( $this->getTreePart( $id ), $indent+1 );
					}
				//}
			}
		}

		return $out;
	}

	// return number of parents to root
	// needed for tree to show subelements
	function getDeepPart($id) {
		$res = $this->CLASS['db']->query("SELECT belongs_to FROM tree WHERE id=".$id." AND deleted=0");
		$anz = $this->CLASS['db']->num_rows($res);

		if($anz == 1) {
			$row = $this->CLASS['db']->fetch_assoc($res);
			if($row['belongs_to'] == 0) {
				return "0";
			} else {
				return 1 + $this->getDeepPart($row['belongs_to']);
			}
		} else {
			return "0";
		}
	}

	function getTreePart( $belongs_to ) {
        	// WAAH! ueberfluessig haeufiger Aufruf...mir jetzt egal :)
		$cats = $this->out;
		if( count( $cats[ $belongs_to ] ) > 0 ) {
        		foreach ( $cats[ $belongs_to ] as $id => $entry ) {
            			$out[$id] = $entry;
			}
		}

		return $out;
	}

	function lastPart($id) {
		$res = $this->CLASS['db']->query("SELECT * FROM tree WHERE belongs_to='$id' AND deleted=0");
		$anz = $this->CLASS['db']->num_rows($res);

		if($anz >= 1) {
			while($row = $this->CLASS['db']->fetch_assoc($res)) {
				if($this->CLASS['knowledgeroot']->getPageRights($row['id'],$_SESSION['userid']) >= 1) {
					return 0;
				}
			}
			
			return 1;
		} else {
			return 1;
		}
	}
}

?>