private $subNodes = array(
'entry-list',
'entry',
+ 'entry-id',
'entries-content',
'header',
'footer',
/**
* Starts the menu property 'entry'
*
- * @param $id Id of the menu
* @return void
*/
- private function startEntry ($id) {
- // Set id as current
- $this->curr['entry_id'] = $id;
-
- // Load the entry template for this page
- $this->getTemplateInstance()->loadCodeTemplate('menu_entry_' . $id . '_start');
-
- // Set the variable group to page
- $this->setVariableGroup('menu');
-
- // Set its content in this template instance
- $this->assignVariable('entry_start_' . $this->curr['id'], $this->getTemplateInstance()->getRawTemplateData());
+ private function startEntry () {
+ $this->partialStub('Cleared due to XML rewrite.');
}
/**
* @return void
*/
private function finishEntry () {
- // Load the entry template for this page
- $this->getTemplateInstance()->loadCodeTemplate('menu_entry_' . $this->curr['entry_id'] . '_end');
-
- // Set the variable group to page
- $this->setVariableGroup('menu');
-
- // Set its content in this template instance
- $this->assignVariable('entry_end_' . $this->curr['id'], $this->getTemplateInstance()->getRawTemplateData());
+ $this->partialStub('Cleared due to XML rewrite.');
}
+
/**
* Starts the menu property 'anchor'
*