$templateInstance->setMenuInstance($menuInstance);
// Init a variable stacker
- $stackerInstance = ObjectFactory::createObjectByConfiguredName('menu_stacker_class');
+ $stackInstance = ObjectFactory::createObjectByConfiguredName('menu_stacker_class');
// Set it
- $templateInstance->setStackerInstance($stackerInstance);
+ $templateInstance->setStackInstance($stackInstance);
// Return the prepared instance
return $templateInstance;
// Assign the found characters to variable and use the last entry from
// stack as the name
- parent::assignVariable($this->getStackerInstance()->getNamed('current_node'), $characters);
+ parent::assignVariable($this->getStackInstance()->getNamed('current_node'), $characters);
}
/**
$this->handleTemplateDependency('menu', $templateDependency);
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'menu');
+ $this->getStackInstance()->pushNamed('current_node', 'menu');
}
/**
*/
private function startEntryList () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'entry-list');
+ $this->getStackInstance()->pushNamed('current_node', 'entry-list');
}
/**
*/
private function startBlockHeader () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'block-header');
+ $this->getStackInstance()->pushNamed('current_node', 'block-header');
}
/**
*/
private function startBlockFooter () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'block-footer');
+ $this->getStackInstance()->pushNamed('current_node', 'block-footer');
}
/**
*/
private function startBlockList () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'block-list');
+ $this->getStackInstance()->pushNamed('current_node', 'block-list');
}
/**
*/
private function startBlock () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'block');
+ $this->getStackInstance()->pushNamed('current_node', 'block');
}
/**
*/
private function startTitle () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'title');
+ $this->getStackInstance()->pushNamed('current_node', 'title');
}
/**
*/
private function startTitleId () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'title-id');
+ $this->getStackInstance()->pushNamed('current_node', 'title-id');
}
/**
*/
private function startTitleClass () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'title-class');
+ $this->getStackInstance()->pushNamed('current_node', 'title-class');
}
/**
*/
private function startTitleText () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'title-text');
+ $this->getStackInstance()->pushNamed('current_node', 'title-text');
}
/**
*/
private function startEntry () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'entry');
+ $this->getStackInstance()->pushNamed('current_node', 'entry');
}
/**
*/
private function startEntryId () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'entry-id');
+ $this->getStackInstance()->pushNamed('current_node', 'entry-id');
}
/**
*/
private function startAnchor () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'anchor');
+ $this->getStackInstance()->pushNamed('current_node', 'anchor');
}
/**
*/
private function startAnchorId () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'anchor-id');
+ $this->getStackInstance()->pushNamed('current_node', 'anchor-id');
}
/**
*/
private function startAnchorText () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'anchor-text');
+ $this->getStackInstance()->pushNamed('current_node', 'anchor-text');
}
/**
*/
private function startAnchorTitle () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'anchor-title');
+ $this->getStackInstance()->pushNamed('current_node', 'anchor-title');
}
/**
*/
private function startAnchorHref () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'anchor-href');
+ $this->getStackInstance()->pushNamed('current_node', 'anchor-href');
}
/**
*/
private function startFooterId () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'footer-id');
+ $this->getStackInstance()->pushNamed('current_node', 'footer-id');
}
/**
*/
private function startFooterClass () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'footer-class');
+ $this->getStackInstance()->pushNamed('current_node', 'footer-class');
}
/**
*/
private function startFooterText () {
// Push the node name on the stacker
- $this->getStackerInstance()->pushNamed('current_node', 'footer-text');
+ $this->getStackInstance()->pushNamed('current_node', 'footer-text');
}
/**
*/
private function finishTitle () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishTitleId () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishTitleClass () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishTitleText () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishFooterText () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishFooterClass () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishFooterId () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishAnchorHref () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishAnchorTitle () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishAnchorText () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishAnchorId () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishAnchor () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishEntryId () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishEntry () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishBlock () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishBlockList () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishEntryList () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishBlockHeader () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishBlockFooter () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**
*/
private function finishMenu () {
// Pop the last entry
- $this->getStackerInstance()->popNamed('current_node');
+ $this->getStackInstance()->popNamed('current_node');
}
/**