Exemplo n.º 1
0
 function doAfterListRender(&$oListObject)
 {
     #debug($this->_getElementHtmlId(), "doBeforeListRender");
     parent::doAfterListRender($oListObject);
     if ($this->hasChilds()) {
         $aChildKeys = array_keys($this->aChilds);
         reset($aChildKeys);
         while (list(, $sKey) = each($aChildKeys)) {
             $this->aChilds[$sKey]->doAfterListRender($oListObject);
         }
     }
 }