コード例 #1
0
ファイル: Email.php プロジェクト: Bajdzis/PHPForm
 public function validate($array)
 {
     if (!parent::validate($array)) {
         return false;
     }
     if (!filter_var($this->sendValue, FILTER_VALIDATE_EMAIL)) {
         $this->addErrorValidate('NoValidMail');
         return false;
     }
     return true;
 }
コード例 #2
0
ファイル: InputSelect.php プロジェクト: Bajdzis/PHPForm
 function __construct()
 {
     parent::__construct();
     $this->type = 'select';
 }
コード例 #3
0
ファイル: Radio.php プロジェクト: Bajdzis/PHPForm
 function __construct()
 {
     parent::__construct();
     $this->type = 'radio';
 }