aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Controllers/BaseController.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2012-09-16 21:28:33 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2012-09-16 21:28:33 +0000
commit10bc2a32759112ad7d97eeb8bd783e7451ef28fd (patch)
tree0e27a0c8cee7038a94b45ec961a3b415d13dd94e /h-source/Application/Controllers/BaseController.php
parent1db259e769ea5a50c0d9969da0b4dc9b14c66b5b (diff)
improved the way the top menu is created - help wiki page added inside the top menu
Diffstat (limited to 'h-source/Application/Controllers/BaseController.php')
-rw-r--r--h-source/Application/Controllers/BaseController.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/h-source/Application/Controllers/BaseController.php b/h-source/Application/Controllers/BaseController.php
index 4a3bb65..6427a08 100644
--- a/h-source/Application/Controllers/BaseController.php
+++ b/h-source/Application/Controllers/BaseController.php
@@ -149,6 +149,11 @@ class BaseController extends Controller
}
}
+ //elements of the top menu from the config.xml file
+ //help link
+ $mod = new BoxParser($this->getBox(array("top_menu","help_page_link")));
+ $data["topMenuHelpLink"] = $mod->modules[0]->render($this->_topMenuClasses["help"]);
+
$this->append($data);
}