(root)/admin/all-forum-categories.php @ 486 - Rev 496
Rev 260 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
<?php
require '../_taios.php';
$page = new Taios_Page
('Manage All Forum Categories', '../');
$page->drawHeader();
$page->drawMiddle();
$page->checkLoggedIn();
if ($page->isUserAdmin($page->getLoggedInUser()))
{
write
('<p class="bold">Use this to manage all the forum categories on the Tim32 Website.</p><br />');
write
('<table>');
write
('<tr>');
write
('<td class="bold">ID</td>');
write
('<td class="bold">Parent</td>');
write
('<td class="bold">Title</td>');
write
('<td class="bold">Description</td>');
write
('</tr>');
$ids = $page->findIDs('ForumCategories');
for ($i = 0; $i < count($ids); $i++)
{
$cat = $page->getForumCategory($ids[$i]);
write
('<tr>');
write
('<td><a href="../forums/index.php?parentID=' . $cat->ID . '">' . $cat->ID . '</a></td>');
if (!$cat->parent)
{
write
('<td style="color: #444444;">No Parent</td>');
}
else
{
write
('<td>' . $cat->parent->title . '</td>');
}
write
('<td>' . $cat->title . '</td>');
write
('<td>' . $cat->description . '</td>');
write
('</tr>');
}
write
('</table>');
}
else
{
$page->drawError('You do not have permission to access this page.');
}
$page->drawFooter();
?>