]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/menu/class_BaseMenu.php
Typo fixed. ;-(
[core.git] / inc / classes / main / menu / class_BaseMenu.php
index e5c4db3352d2cdb67ea2ceb5d6a894f0ff831b32..38d7157e029f5a760884c9346459e07c8f6f2787 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A general menu system class
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
  * @copyright  Copyright (c) 2007 - 2009 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -40,18 +40,42 @@ class BaseMenu extends BaseFrameworkSystem {
         * @return      void
         */
        public function renderMenu () {
-               $this->partialStub('Please implement this method.');
+               // Initialize the menu system by preparing it's template instance
+               $templateInstance = ObjectFactory::createObjectByConfiguredName('menu_template_class', array($this));
+
+               // Set it for later use
+               $this->setTemplateInstance($templateInstance);
+
+               // Load the menu template for all
+               $templateInstance->loadMenuTemplate('generic_menu_entries');
+
+               // Get the 'page' from request instance
+               $page = $this->getApplicationInstance()->getRequestInstance()->getRequestElement('page');
+
+               // Load the menu template for this page
+               try {
+                       $templateInstance->loadMenuTemplate($page . '_menu_entries');
+               } catch (FileIoException $e) {
+                       // @TODO Should we log it here? We should, because it will be silently ignored.
+               }
+
+               // Get the prepared content
+               $menuContent = $templateInstance->getRawTemplateData();
+
+               // Render it here
+               $templateInstance->renderXmlContent($menuContent);
+               //exit(__METHOD__ . ':!OK');
        }
 
        /**
         * Transfers the rendered menu to a given templatex engine by assigning
         * the rendered content with a template variable.
         *
-        * @2param      $templateInstance       An instance of a CompileableTemplate class
+        * @param       $templateInstance       An instance of a CompileableTemplate class
         * @return      void
         */
        public function transferContentToTemplateEngine (CompileableTemplate $templateInstance) {
-               $this->partialStub('templaateInstance=' . $templateInstance->__toString());
+               $this->partialStub('templateInstance=' . $templateInstance->__toString());
        }
 }