Protected Member Functions | |
_toHtml () |
Definition at line 33 of file List.php.
_toHtml | ( | ) | [protected] |
Override this method in descendants to produce html
Reimplemented from Mage_Core_Block_Text.
Definition at line 35 of file List.php.
00036 { 00037 $this->setText(''); 00038 foreach ($this->getSortedChildren() as $name) { 00039 $block = $this->getLayout()->getBlock($name); 00040 if (!$block) { 00041 Mage::throwException(Mage::helper('core')->__('Invalid block: %s', $name)); 00042 } 00043 $this->addText($block->toHtml()); 00044 } 00045 return parent::_toHtml(); 00046 }