diff options
| author | deva <deva> | 2008-10-04 10:38:03 +0000 | 
|---|---|---|
| committer | deva <deva> | 2008-10-04 10:38:03 +0000 | 
| commit | cce5e7710295021b41d9aaecc503a60fb99256be (patch) | |
| tree | 660235be91fb821e976c7ae62347eb368ce87524 /forum/utils/view.php | |
Initial revision
Diffstat (limited to 'forum/utils/view.php')
| -rw-r--r-- | forum/utils/view.php | 28 | 
1 files changed, 28 insertions, 0 deletions
| diff --git a/forum/utils/view.php b/forum/utils/view.php new file mode 100644 index 0000000..0adb1a0 --- /dev/null +++ b/forum/utils/view.php @@ -0,0 +1,28 @@ +<?php +echo "<div class=\"navigation\">"; +if($fid) echo "<a href=\"?\">forums</a>"; +if($tid) echo ":: <a href=\"?fid=" . $fid . "\">threads</a>"; +if($pid) echo ":: <a href=\"?fid=" . $fid . "&tid=" . $tid . "\">posts</a>"; +echo "</div>\n"; + + +	 if($fid && $tid) { +		 //		 echo "<h1>Posts</h1>"; +		 include_once("posts.php"); +		 $posts = new Posts($FORUMS_DIR . "/" . $fid . "/" . $tid . ".xml"); +		 $posts->show(); +	 } else if($fid) { +		 echo "<h1>Threads</h1>"; +		 echo "<a href=\"?mode=editor&task=new&fid=".$fid. +			 "&tid=".time()."&pid=-1\">New thread</a>"; + +		 include_once("threads.php"); +		 $threads = new Threads($FORUMS_DIR . "/" . $fid); +		 $threads->show(); +	 } else { +		 echo "<h1>Forums</h1>"; +		 include_once("forums.php"); +		 $forums = new Forums($FORUMS_DIR . "/forums.xml"); +		 $forums->show(); +	 } +?>
\ No newline at end of file | 
