mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
31 lines
777 B
PHP
31 lines
777 B
PHP
<?
|
|
// Already done in /sections/ajax/index.php
|
|
//enforce_login();
|
|
|
|
if (!empty($LoggedUser['DisableForums'])) {
|
|
print json_encode(array('status' => 'failure'));
|
|
die();
|
|
} else {
|
|
// Replace the old hard-coded forum categories
|
|
$ForumCats = Forums::get_forum_categories();
|
|
|
|
//This variable contains all our lovely forum data
|
|
$Forums = Forums::get_forums();
|
|
|
|
if (empty($_GET['type']) || $_GET['type'] == 'main') {
|
|
include(SERVER_ROOT.'/sections/ajax/forum/main.php');
|
|
} else {
|
|
switch ($_GET['type']) {
|
|
case 'viewforum':
|
|
include(SERVER_ROOT.'/sections/ajax/forum/forum.php');
|
|
break;
|
|
case 'viewthread':
|
|
include(SERVER_ROOT.'/sections/ajax/forum/thread.php');
|
|
break;
|
|
default:
|
|
print json_encode(array('status' => 'failure'));
|
|
break;
|
|
}
|
|
}
|
|
}
|