initialize() initialize() このクラスがnewされた時にバリデーションルールをセットします。 このクラスを継承して使う場合はこのメソッドをオーバライドしてバリデーションルールを設定してください。
setMessage() setMessage( $msg) : $this バリデーションメッセージを設定します。 メッセージを設定しなかったバリデーションルールはPhalconのデフォルトメッセージが表示されます。 Parameters $msg Throws \KTRLib\KtrUndefinedException Returns $this
callback() callback(\Closure $func) : $this コールバック関数を使ったバリデーションを設定します。 Parameters \Closure $func Returns $this
blacklist() blacklist(array $domain) : $this バリデーションルール: ブラックリスト Parameters array $domain Returns $this
file_resolution() file_resolution( $resolution) : $this バリデーションルール: 解像度 Parameters $resolution Returns $this
identical() identical( $accepted = 'yes') : $this バリデーションルール: 一意の値(フォーム内) Parameters $accepted Returns $this
whitelist() whitelist(array $domain) : $this バリデーションルール: ホワイトリスト Parameters array $domain Returns $this
between_length() between_length( $min, $max) : $this バリデーションルール: 文字列長範囲 Parameters $min $max Returns $this
unique() unique(\Phalcon\Mvc\Model $model) : $this バリデーションルール: 一意の値(DB) Parameters \Phalcon\Mvc\Model $model Returns $this
cancel() cancel() : $this バリデーション失敗時にバリデーションを終了します。 Throws \KTRLib\KtrUndefinedException Returns $this
allow_empty() allow_empty() : $this 値がない時に設定されたバリデーションを実行しないようにします。 Throws \KTRLib\KtrUndefinedException Returns $this
factoryValidator() factoryValidator( $param) : \Phalcon\Validation\ValidatorInterface バリデータクラスを作成します。 Parameters $param Returns \Phalcon\Validation\ValidatorInterface