コード例 #1
0
ファイル: Multiplier.php プロジェクト: zaxcms/framework
 protected function createComponent($name)
 {
     $control = parent::createComponent($name);
     if ($this->ajaxEnabled && $control instanceof IAjaxAware) {
         $control->enableAjax();
     }
     return $control;
 }
コード例 #2
0
ファイル: WidgetMultiplier.php プロジェクト: svobodni/web
 /**
  * Iterates over a components.
  * @param  bool    recursive?
  * @param  string  class types filter
  * @return \Iterator
  */
 public function getComponents($deep = FALSE, $filterType = NULL)
 {
     return $this->multiplier->getComponents($deep, $filterType);
 }
コード例 #3
0
 public function offsetUnset($name)
 {
     return $this->multiplier->offsetUnset($name);
 }