コード例 #1
0
ファイル: formcontainer.php プロジェクト: habari/system
 /**
  * Obtain the value of this control as supplied by the incoming $_POST values
  */
 public function process()
 {
     /** @var FormControl $control */
     foreach ($this->controls as $control) {
         $control->process();
     }
     parent::process();
 }