aboutsummaryrefslogtreecommitdiff
path: root/www/help.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/help.php')
-rw-r--r--www/help.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/www/help.php b/www/help.php
new file mode 100644
index 0000000..fe56c22
--- /dev/null
+++ b/www/help.php
@@ -0,0 +1,15 @@
+<?php
+namespace phorkie;
+/**
+ * Show help
+ */
+$reqWritePermissions = false;
+require_once 'www-header.php';
+
+render(
+ 'help',
+ array(
+ 'htmlhelper' => new HtmlHelper(),
+ )
+);
+?>