Subversion Repositories taios

Rev

Rev 112 | Rev 258 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php

require '../_taios.php';

$page = new Taios_Page('Administration', '../');
$page->drawHeader();
$page->drawMiddle();

$page->checkLoggedIn();
$user = $page->getLoggedInUser();

write('<h4><a href="account.php?id=' . $user->ID. '">Manage Account</a></h4>');

if ($page->isUserAdmin($user))
{
    write('<h4><a href="all-accounts.php">Manage All Accounts</a></h4>');
    write('<h4><a href="all-blog-posts.php">Manage All Blog Posts</a></h4>');
    write('<h4><a href="all-projects.php">Manage All Projects</a></h4>');
    write('<h4><a href="all-forum-categories.php">Manage All Forum Categories</a></h4>');
    write('<h4><a href="all-forum-topics.php">Manage All Forum Topics</a></h4>');
    write('<h4><a href="all-forum-posts.php">Manage All Forum Posts</a></h4>');
}

$page->drawFooter();

?>