summaryrefslogtreecommitdiff
path: root/forum/utils/view.php
blob: d22c8d806e862a26a89f9b55bac4356282c7a326 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?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 . "&amp;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>\n";
		 echo "    <a href=\"?mode=editor&amp;task=new&amp;fid=".$fid.
			 "&amp;tid=".time()."&amp;pid=-1\">New thread</a>\n";

		 include_once("threads.php");
		 $threads = new Threads($FORUMS_DIR . "/" . $fid);
		 $threads->show();
	 } else {
		 echo "    <h1>Forums</h1>\n";
		 include_once("forums.php");
		 $forums = new Forums($FORUMS_DIR . "/forums.xml");

		 if($action == "addforum") {
			 $newfid = 1;
			 while($forums->getForum($newfid)) $newfid++;

			 $forums->add(new Forum($newfid, $title));
			 $forums->write();
		 }

		 $forums->show();

		 if($current_user->uid == 0) {
?>
<form method="post" action="?mode=forum&amp;action=addforum">
Add new forum: <input name="title" value=""><button type="submit">Add</button>
</form>
<?php
		 } 

	 }
?>