blob: 0adb1a00a8fda9dd0b3ca0665622e9a5d3304ac2 (
plain)
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
|
<?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();
}
?>
|