summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorMarcus Proest2019-03-28 11:19:27 +0100
committerSimon Rettberg2019-03-28 11:19:27 +0100
commit7a811b07f634d3f2bb8c3478a020fc430cf70f7d (patch)
tree5efd7672dd4b78be6d6b05a3c2b6fc42368433b6 /index.php
parentindex.php: Add shibboleth debug output for admins (diff)
downloadbwlp-webadmin-7a811b07f634d3f2bb8c3478a020fc430cf70f7d.tar.gz
bwlp-webadmin-7a811b07f634d3f2bb8c3478a020fc430cf70f7d.tar.xz
bwlp-webadmin-7a811b07f634d3f2bb8c3478a020fc430cf70f7d.zip
Make URLs, brand names and list of admins configurable
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.php b/index.php
index 11ddcc3..d94322e 100644
--- a/index.php
+++ b/index.php
@@ -113,6 +113,7 @@ Render::addTemplate('main-menu', array(
'url' => urlencode($_SERVER['REQUEST_URI']),
'user' => User::getName(),
'admin' => User::isAdmin(),
+ 'suite' => CONFIG_SUITE
));
Message::renderList();
@@ -120,7 +121,7 @@ Message::renderList();
// Render page. If the module wants to output anything, it will be done here...
Page::render();
-Render::addTemplate('footer');
+Render::addTemplate('footer', array('help' => CONFIG_FOOTER_SUPPORT));
if (defined('CONFIG_DEBUG') && CONFIG_DEBUG) {
Message::addWarning('!! Debug-Modus aktiv !!');