summaryrefslogtreecommitdiffstats
path: root/settings/help.php
diff options
context:
space:
mode:
Diffstat (limited to 'settings/help.php')
-rw-r--r--settings/help.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/settings/help.php b/settings/help.php
new file mode 100644
index 00000000000..b6466d282bf
--- /dev/null
+++ b/settings/help.php
@@ -0,0 +1,27 @@
+<?php
+
+require_once('../lib/base.php');
+if( !OC_User::isLoggedIn()){
+ header( "Location: ".OC_Helper::linkTo( "", "index.php" ));
+ exit();
+}
+
+//hardcode for testing
+$pagecount=8;
+$page=2;
+
+
+// Load the files we need
+OC_Util::addStyle( "settings", "settings" );
+OC_App::setActiveNavigationEntry( "help" );
+
+$kbe=OC_OCSClient::getKnownledgebaseEntries();
+
+
+$tmpl = new OC_Template( "settings", "help", "user" );
+$tmpl->assign( "kbe", $kbe );
+$tmpl->assign( "pagecount", $pagecount );
+$tmpl->assign( "page", $page );
+$tmpl->printPage();
+
+?>