Properties

$fieldName

$fieldName : 

Type

$ruleNameGroup

$ruleNameGroup : 

Type

$ruleName

$ruleName : 

Type

$rules

$rules : 

Type

Methods

initialize()

initialize() 

このクラスがnewされた時にバリデーションルールをセットします。 このクラスを継承して使う場合はこのメソッドをオーバライドしてバリデーションルールを設定してください。

field()

field(  $name) : $this

フィールド名を設定します。 最初にこのメソッドを必ずコールしてください。

Parameters

$name

Returns

$this

setMessage()

setMessage(  $msg) : $this

バリデーションメッセージを設定します。 メッセージを設定しなかったバリデーションルールはPhalconのデフォルトメッセージが表示されます。

Parameters

$msg

Throws

\KTRLib\KtrUndefinedException

Returns

$this

build()

build() 

設定したバリデーションを適用します。

required()

required() : $this

バリデーションルール: 必須

Returns

$this

alnum()

alnum() : $this

バリデーションルール: 英数字

Returns

$this

alpha()

alpha() : $this

バリデーションルール: 英字

Returns

$this

min()

min(  $min) : $this

バリデーションルール: 最小値

Parameters

$min

Returns

$this

max()

max(  $max) : $this

バリデーションルール: 最大値

Parameters

$max

Returns

$this

between()

between(  $min,   $max) : $this

バリデーションルール: 数値範囲

Parameters

$min
$max

Returns

$this

callback()

callback(\Closure  $func) : $this

コールバック関数を使ったバリデーションを設定します。

Parameters

\Closure $func

Returns

$this

confirm_with()

confirm_with(  $with) : $this

バリデーションルール: 他のフィールドと値が一致

Parameters

$with

Returns

$this

credit_card()

credit_card() : $this

バリデーションルール: クレジットカード番号

Returns

$this

date_format()

date_format(  $format) : $this

バリデーションルール: 日付形式

Parameters

$format

Returns

$this

numeric()

numeric() : $this

バリデーションルール: 数値

Returns

$this

email()

email() : $this

バリデーションルール: メール

Returns

$this

blacklist()

blacklist(array  $domain) : $this

バリデーションルール: ブラックリスト

Parameters

array $domain

Returns

$this

filesize()

filesize(array  $size) : $this

バリデーションルール: ファイルサイズ

Parameters

array $size

Returns

$this

mimetype()

mimetype(array  $mime) : $this

バリデーションルール: MIMETYPE

Parameters

array $mime

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

regex()

regex(  $pattern) : $this

バリデーションルール: 正規表現

Parameters

$pattern

Returns

$this

min_length()

min_length(  $min) : $this

バリデーションルール: 文字列の最小長

Parameters

$min

Returns

$this

max_length()

max_length(  $max) : $this

バリデーションルール: 文字列の最大長

Parameters

$max

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

url()

url() : $this

バリデーションルール: URL

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