]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/menu/class_BaseMenu.php
die() expanded with __METHOD__
[core.git] / inc / classes / main / menu / class_BaseMenu.php
index 4c7c18c025a8d68e48c946cbb120a784a3f3c354..c41bdcb786e02b589ae780f018a20c74bf290f54 100644 (file)
@@ -31,10 +31,51 @@ class BaseMenu extends BaseFrameworkSystem {
        protected function __construct ($className) {
                // Call parent constructor
                parent::__construct($className);
+       }
+
+       /**
+        * Renders the menu by loading the base template and a menu-specific
+        * template.
+        *
+        * @return      void
+        */
+       public function renderMenu () {
+               // 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
+               $this->getTemplateInstance()->loadMenuTemplate('generic_menu_entries');
+
+               // Get the 'page' from request instance
+               $page = $this->getApplicationInstance()->getRequestInstance()->getRequestElement('page');
 
-               // Clean up a little
-               $this->removeNumberFormaters();
-               $this->removeSystemArray();
+               // Load the menu template for this page
+               try {
+                       $this->getTemplateInstance()->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 = $this->getTemplateInstance()->getRawTemplateData();
+
+               // Render it here
+               $this->getTemplateInstance()->renderXmlContent($menuContent);
+               //die(__METHOD__ . ':!OK');
+       }
+
+       /**
+        * Transfers the rendered menu to a given templatex engine by assigning
+        * the rendered content with a template variable.
+        *
+        * @param       $templateInstance       An instance of a CompileableTemplate class
+        * @return      void
+        */
+       public function transferContentToTemplateEngine (CompileableTemplate $templateInstance) {
+               $this->partialStub('templateInstance=' . $templateInstance->__toString());
        }
 }