This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/public/viewforum.php
flashwave fcc1dcdf1f r20151106
Signed-off-by: Flashwave <me@flash.moe>
2015-11-06 23:30:37 +01:00

69 lines
1.6 KiB
PHP
Executable file

<?php
/*
* Sakura Forum List Viewer
*/
// Declare Namespace
namespace Sakura;
// Include components
require_once str_replace(basename(__DIR__), '', dirname(__FILE__)) . '_sakura/sakura.php';
// Get the forum's data
$forum = Forums::getForum(isset($_GET['f']) ? $_GET['f'] : 0);
// Initialise templating engine
$template = new Template();
// Change templating engine
$template->setTemplate($templateName);
// Check if the forum exists
if (!$forum) {
// Set render data
$renderData['page'] = [
'title' => 'Information',
'message' => 'The subforum you tried to access does not exist.',
];
// Set parse variables
$template->setVariables($renderData);
// Print page contents
echo $template->render('global/information.tpl');
exit;
}
// Check if the forum isn't a link
if ($forum['forum']['forum_type'] === 2) {
// Set render data
$renderData['page'] = [
'title' => 'Information',
'message' => 'The forum you tried to access is a link. You\'re being redirected.',
'redirect' => $forum['forum']['forum_link'],
];
// Set parse variables
$template->setVariables($renderData);
// Print page contents
echo $template->render('global/information.tpl');
exit;
}
$renderData['board'] = [
'forums' => [
$forum,
],
'topics' => array_chunk($forum['topics'], 25, true),
'viewforum' => true,
'viewtopic' => false,
];
$renderData['currentPage'] = isset($_GET['page']) && ($_GET['page'] - 1) >= 0 ? $_GET['page'] - 1 : 0;
// Set parse variables
$template->setVariables($renderData);
// Print page contents
echo $template->render('forum/viewforum.tpl');