Protected Member Functions | |
_toHtml () |
Definition at line 33 of file Flush.php.
_toHtml | ( | ) | [protected] |
Override this method in descendants to produce html
Reimplemented from Mage_Core_Block_Abstract.
Definition at line 36 of file Flush.php.
00037 { 00038 if (!$this->_beforeToHtml()) { 00039 return ''; 00040 } 00041 00042 ob_implicit_flush(); 00043 00044 foreach ($this->getSortedChildren() as $name) { 00045 $block = $this->getLayout()->getBlock($name); 00046 if (!$block) { 00047 Mage::exception(Mage::helper('core')->__('Invalid block: %s', $name)); 00048 } 00049 echo $block->toHtml(); 00050 } 00051 }