Subversion Repositories taios

Rev

Rev 291 | Rev 293 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
255 tom 1
<?php
2
 
3
require '../_taios.php';
4
 
5
$page = new Taios_Page('Forum Post', '../');
6
$page->drawHeader();
7
$page->drawMiddle();
8
 
9
$id = $page->getGetID();
10
$forumPost = $page->getForumPost($id);
256 tom 11
write('<p class="bold"><a href="index.php?parentID=' . $forumPost->category->ID . '">Back to Topics</a></p><br />');
12
write('<h3>' . $forumPost->title . '</h3>');
288 tom 13
write('<h5 style="color: #666666;">Posted On ' . date('l j F Y', $forumPost->datePosted) . ' by ' . $forumPost->author->name . ' (' . $forumPost->author->username . ')</h5>');
257 tom 14
write('<p>' . $page->replaceBBCode($forumPost->content) . '</p>');
286 tom 15
if ($page->isLoggedIn())
16
{
291 tom 17
    write('<p class="bold"><a href="add-post.php?parentID=' . $id . '">Post Reply</a>');
292 tom 18
    if ($page->isUserAdmin($page->getLoggedInUser()) || $forumPost->author->ID == $page->getLoggedInUser()->ID)
291 tom 19
    {
20
        write(' &middot; <a href="edit-post.php?id=' . $id . '">Edit Post</a>');
21
        write(' &nbsp;&nbsp; &middot; &nbsp;&nbsp; <a href="delete-post-do.php?id=' . $id . '">Delete Post</a>');
22
    }
23
    write('</p>');
286 tom 24
}
255 tom 25
write('<br />');
26
 
287 tom 27
$ids = $page->findIDs('ForumPosts', 'WHERE ParentID = ' . $id . ' ORDER BY DatePosted ASC');
255 tom 28
for ($i = 0; $i < count($ids); $i++)
29
{
30
    $forumPost = $page->getForumPost($ids[$i]);
31
write('<h4>' . $forumPost->title . '</h4>');
288 tom 32
write('<h5 style="color: #666666;">Posted On ' . date('l j F Y', $forumPost->datePosted) . ' by ' . $forumPost->author->name . ' (' . $forumPost->author->username . ')</h5>');
257 tom 33
write('<p>' . $page->replaceBBCode($forumPost->content) . '</p>');
292 tom 34
if ($page->isUserAdmin($page->getLoggedInUser()) || $forumPost->author->ID == $page->getLoggedInUser()->ID)
291 tom 35
{
36
    write(' &middot; <a href="edit-post.php?id=' . $id . '">Edit Post</a>');
37
    write(' &nbsp;&nbsp; &middot; &nbsp;&nbsp; <a href="delete-post-do.php?id=' . $id . '">Delete Post</a>');
38
}
255 tom 39
write('<br />');
40
}
41
 
42
$page->drawFooter();
43
 
44
?>
45