コード例 #1
0
ファイル: formcontainer.php プロジェクト: habari/system
 /**
  * Store each contained control's value under the control's specified key.
  */
 public function save()
 {
     /** @var FormControl $control */
     foreach ($this->controls as $control) {
         $control->save();
     }
     parent::save();
 }