extends abstract class Phalcon\Validation\CombinedFieldsValidator
implements Phalcon\Validation\ValidatorInterface
Check that a field is unique in the related table
1 2 3 4 5 6 7 8 | use Phalcon\Validation\Validator\Uniqueness as UniquenessValidator; $validator ->add( 'username' , new UniquenessValidator([ 'model' => new Users(), 'message' => ':field must be unique' ])); Different attribute from the field: |
1 2 3 4 5 6 | $validator ->add( 'username' , new UniquenessValidator([ 'model' => new Users(), 'attribute' => 'nick' ])); In model: |
1 2 3 | $validator ->add( 'username' , new UniquenessValidator()); Combination of fields in model: |
1 2 3 | $validator ->add([ 'firstName' , 'lastName' ], new UniquenessValidator()); It is possible to convert values before validation. This is useful in situations where values need to be converted to do the database lookup: |
1 2 3 4 5 6 7 | $validator ->add( 'username' , new UniquenessValidator([ 'convert' => function ( array $values ) { $values [ 'username' ] = strtolower ( $values [ 'username' ]); return $values ; } ])); |
Methods
public validate (Phalcon\Validation $validation, mixed $field)
Executes the validation
protected isUniqueness (Phalcon\Validation $validation, mixed $field)
...
protected getColumnNameReal (mixed $record, mixed $field)
The column map is used in the case to get real column name
public __construct ([array $options]) inherited from Phalcon\Validation\Validator
Phalcon\Validation\Validator constructor
public isSetOption (mixed $key) inherited from Phalcon\Validation\Validator
Checks if an option has been defined
public hasOption (mixed $key) inherited from Phalcon\Validation\Validator
Checks if an option is defined
public getOption (mixed $key, [mixed $defaultValue]) inherited from Phalcon\Validation\Validator
Returns an option in the validator’s options Returns null if the option hasn’t set
public setOption (mixed $key, mixed $value) inherited from Phalcon\Validation\Validator
Sets an option in the validator
Please login to continue.