/** * Append dependence block at then end of form block * * @param string $html * @return string */ protected function _afterToHtml($html) { if ($this->_getDependence()) { $html .= $this->_getDependence()->toHtml(); } $html = parent::_afterToHtml($html); return $html; }