X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fmenu%2Fclass_BaseMenu.php;h=8ab109f8a99faccca72e8ce6daa9d5839c42f672;hp=e5c4db3352d2cdb67ea2ceb5d6a894f0ff831b32;hb=3b369c267715db8baefd28b85375406946270ebd;hpb=ede85e5640872d6c88a25ddf3f809e6d281ef205 diff --git a/inc/classes/main/menu/class_BaseMenu.php b/inc/classes/main/menu/class_BaseMenu.php index e5c4db33..8ab109f8 100644 --- a/inc/classes/main/menu/class_BaseMenu.php +++ b/inc/classes/main/menu/class_BaseMenu.php @@ -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->getApplicationInstance(), $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'); + + // 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('!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()); } }