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/viewtopic.php

55 lines
1.3 KiB
PHP
Raw Normal View History

2015-06-27 11:03:11 +00:00
<?php
/*
* Sakura Forum Topic Viewer
*/
// Declare Namespace
namespace Sakura;
// Include components
require_once str_replace(basename(__DIR__), '', dirname(__FILE__)) . '_sakura/sakura.php';
2015-06-28 14:43:46 +00:00
// Attempt to get a topic
2015-11-06 12:05:35 +00:00
$topic = Forums::getTopic(
2015-10-11 21:59:17 +00:00
isset($_GET['p'])
2015-11-06 12:05:35 +00:00
? Forums::getTopicIdFromPostId($_GET['p'])
2015-10-11 21:59:17 +00:00
: (isset($_GET['t']) ? $_GET['t'] : 0)
);
2015-06-28 14:43:46 +00:00
// Initialise templating engine
$template = new Template();
// Change templating engine
$template->setTemplate($templateName);
2015-06-28 14:43:46 +00:00
// Check if the forum exists
if (!$topic) {
2015-06-28 14:43:46 +00:00
// Set render data
$renderData['page'] = [
'message' => 'The topic you tried to access does not exist.',
2015-06-28 14:43:46 +00:00
];
// Set parse variables
$template->setVariables($renderData);
// Print page contents
echo $template->render('global/information.tpl');
2015-06-28 14:43:46 +00:00
exit;
}
// Set additional render data
$renderData = array_merge($renderData, $topic, [
2015-07-05 15:03:58 +00:00
'board' => [
'viewforum' => false,
'viewtopic' => true,
],
'posts' => array_chunk($topic['posts'], 10, true),
'currentPage' => isset($_GET['page']) && ($_GET['page'] - 1) >= 0 ? $_GET['page'] - 1 : 0,
2015-06-28 14:43:46 +00:00
]);
// Set parse variables
$template->setVariables($renderData);
2015-06-28 14:43:46 +00:00
// Print page contents
echo $template->render('forum/viewtopic.tpl');