}
/**
- * Starts the menu header
+ * Starts the menu block header
*
* @return void
*/
- private function startHeader () {
+ private function startBlockHeader () {
// Do we have a template instance?
if (is_null($this->getTemplateInstance())) {
// Init template instance for underlaying web templates
}
/**
- * Finishes the menu header
+ * Finishes the menu block header
*
* @return void
*/
- private function finishHeader () {
+ private function finishBlockHeader () {
// Load the header template for this page
$this->getTemplateInstance()->loadCodeTemplate('menu_header_end');
}
/**
- * Starts the menu footer
+ * Starts the menu block footer
*
* @return void
*/
- private function startFooter () {
+ private function startBlockFooter () {
// Do we have a template instance?
if (is_null($this->getTemplateInstance())) {
// Init template instance for underlaying web templates
}
/**
- * Finishes the menu footer
+ * Finishes the menu block footer
*
* @return void
*/
- private function finishFooter () {
+ private function finishBlockFooter () {
// Load the footer template for this page
$this->getTemplateInstance()->loadCodeTemplate('menu_footer_end');