summaryrefslogtreecommitdiff
path: root/src/application/actions/newtopic/get.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/application/actions/newtopic/get.php')
-rw-r--r--src/application/actions/newtopic/get.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/application/actions/newtopic/get.php b/src/application/actions/newtopic/get.php
new file mode 100644
index 0000000..366caac
--- /dev/null
+++ b/src/application/actions/newtopic/get.php
@@ -0,0 +1,10 @@
+<?php
+
+use mystic\forum\utils\RequestUtils;
+
+_view("template_start", ["_title" => __("New topic")]);
+_view("template_navigation_start");
+_view("template_navigation", ["user" => RequestUtils::getAuthorizedUser($db)]);
+_view("template_navigation_end");
+_view("form_newtopic");
+_view("template_end", [...getThemeAndLangInfo()]);