コード例 #1
0
ファイル: Contents.php プロジェクト: Yomyer/cckit
 /**
  * @param string $name
  * @param mixed $value
  * @return $this
  */
 public function add($name, $value)
 {
     if ($this->isRendered($value)) {
         $this->getGroup(get_class($value))->add($name, $value);
     }
     parent::add($name, $value);
     return $this;
 }