// *every* command has a navigation system and that is want we don't want.
$menuInstance = ObjectFactory::createObjectByConfiguredName('confirm_menu_class', array($appInstance));
+ // Render the menu
+ $menuInstance->renderMenu();
+
+ // Transfer it to the template engine instance
+ $menuInstance->transferToTemplateEngine($templateInstance);
+
// ... 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.
// *every* command has a navigation system and that is want we don't want.
$menuInstance = ObjectFactory::createObjectByConfiguredName('home_menu_class', array($appInstance));
+ // Render the menu
+ $menuInstance->renderMenu();
+
+ // Transfer it to the template engine instance
+ $menuInstance->transferToTemplateEngine($templateInstance);
+
// ... 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.
// *every* command has a navigation system and that is want we don't want.
$menuInstance = ObjectFactory::createObjectByConfiguredName('login_area_menu_class', array($appInstance));
+ // Render the menu
+ $menuInstance->renderMenu();
+
+ // Transfer it to the template engine instance
+ $menuInstance->transferToTemplateEngine($templateInstance);
+
// ... 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.
// *every* command has a navigation system and that is want we don't want.
$menuInstance = ObjectFactory::createObjectByConfiguredName('login_menu_class', array($appInstance));
+ // Render the menu
+ $menuInstance->renderMenu();
+
+ // Transfer it to the template engine instance
+ $menuInstance->transferToTemplateEngine($templateInstance);
+
// ... 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.
// *every* command has a navigation system and that is want we don't want.
$menuInstance = ObjectFactory::createObjectByConfiguredName('login_failed_menu_class', array($appInstance));
+ // Render the menu
+ $menuInstance->renderMenu();
+
+ // Transfer it to the template engine instance
+ $menuInstance->transferToTemplateEngine($templateInstance);
+
// ... 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.
// *every* command has a navigation system and that is want we don't want.
$menuInstance = ObjectFactory::createObjectByConfiguredName('logout_menu_class', array($appInstance));
+ // Render the menu
+ $menuInstance->renderMenu();
+
+ // Transfer it to the template engine instance
+ $menuInstance->transferToTemplateEngine($templateInstance);
+
// ... 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.
// *every* command has a navigation system and that is want we don't want.
$menuInstance = ObjectFactory::createObjectByConfiguredName('register_menu_class', array($appInstance));
+ // Render the menu
+ $menuInstance->renderMenu();
+
+ // Transfer it to the template engine instance
+ $menuInstance->transferToTemplateEngine($templateInstance);
+
// ... 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.
// *every* command has a navigation system and that is want we don't want.
$menuInstance = ObjectFactory::createObjectByConfiguredName('status_menu_class', array($appInstance));
+ // Render the menu
+ $menuInstance->renderMenu();
+
+ // Transfer it to the template engine instance
+ $menuInstance->transferToTemplateEngine($templateInstance);
+
// ... 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.