summaryrefslogtreecommitdiff
path: root/src/application/actions/_default/get.php
blob: 616589f51d33129c63efaad009b1eaffb320f6ac (plain)
1
2
3
4
5
6
7
<?php

use mystic\forum\orm\Topic;

render("view_topics.twig", [
    "topics" => $db->fetchCustom(Topic::class, "ORDER BY creation_date DESC"),
]);