blob: cd0c21caa6e9e21ca66e26da7dcdfe5696a2713a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
use mystic\forum\orm\Topic;
use mystic\forum\utils\RequestUtils;
_view("template_start");
_view("template_navigation_start");
_view("template_navigation", ["user" => RequestUtils::getAuthorizedUser($db)]);
_view("template_navigation_end");
_view("view_topics", ["topics" => $db->fetchCustom(Topic::class, "ORDER BY creation_date DESC")]);
_view("template_end", [...getThemeAndLangInfo()]);
|