Main::mdParse("# Unable to load the requested info page.\r\n\r\nCheck the URL and try again.") ]; // Set page id $pageId = isset($_GET['p']) ? strtolower($_GET['p']) : ''; // Get info page data from the database if($ipData = Main::loadInfoPage($pageId)) { // Assign new proper variable $renderData['page'] = [ 'id' => $pageId, 'title' => $ipData['pagetitle'], 'content' => Main::mdParse($ipData['content']) ]; } // Print page contents print Templates::render('main/infopage.tpl', $renderData); exit; } // Are we in forum mode? $forumMode = isset($_GET['forum']) ? ($_GET['forum'] == true) : false; $renderData['news'] = ($forumMode ? null : (new News(Configuration::getConfig('site_news_category')))); $renderData['newsCount'] = Configuration::getConfig('front_page_news_posts'); $renderData['page'] = [ 'friend_req' => Users::getPendingFriends() ]; $renderData['board'] = [ 'forums' => ($forumMode ? Forum::getForumList() : null), 'viewforum' => false, 'viewtopic' => false ]; $renderData['stats'] = [ 'userCount' => Database::count('users', ['password_algo' => ['nologin', '!='], 'rank_main' => ['1', '!=']])[0], 'newestUser' => ($_INDEX_NEWEST_USER = new User(Users::getNewestUserId())), 'lastRegDate' => ($_INDEX_LAST_REGDATE = date_diff(date_create(date('Y-m-d', $_INDEX_NEWEST_USER->data['regdate'])), date_create(date('Y-m-d')))->format('%a')) .' day'. ($_INDEX_LAST_REGDATE == 1 ? '' : 's'), 'topicCount' => Database::count('topics')[0], 'postCount' => Database::count('posts')[0], 'onlineUsers' => Users::checkAllOnline() ]; // Print page contents print Templates::render(($forumMode ? 'forum' : 'main') .'/index.tpl', $renderData);