Menu classes added, unfinished
[core.git] / inc / classes / main / commands / web / class_WebHomeCommand.php
index e082900c1d1b2735df6c0ebe40f9dd46bb6d189f..56e112efccce88a8de1bca65accd17e312a78a9d 100644 (file)
@@ -95,6 +95,10 @@ class WebHomeCommand extends BaseCommand implements Commandable {
                // Set title
                $templateInstance->assignVariable('title', $this->getLanguageInstance()->getMessage('page_home_title'));
 
+               // Construct the menu in every command. We could do this in BaseCommand class. But this means
+               // *every* command has a navigation system and that is want we don't want.
+               $menuInstance = ObjectFactory::createObjectByConfiguredName('home_menu_class', array($appInstance));
+
                // ... and all variables. This should be merged together in a pattern
                // to make things easier. A cache mechanism should be added between
                // these two calls to cache compiled templates.