W3cubDocs

/Phalcon 3

Class Phalcon\Validation\Validator\Identical

extends abstract class Phalcon\Validation\Validator

implements Phalcon\Validation\ValidatorInterface

Source on GitHub

Checks if a value is identical to other

use Phalcon\Validation\Validator\Identical;

 $validator->add('terms', new Identical([
     'accepted' => 'yes',
     'message' => 'Terms and conditions must be accepted'
 ]));

 $validator->add(['terms', 'anotherTerms'], new Identical([
     'accepted' => [
         'terms' => 'yes',
         'anotherTerms' => 'yes'
     ],
     'message' => [
         'terms' => 'Terms and conditions must be accepted',
         'anotherTerms' => 'Another terms  must be accepted'
     ]
 ]));

Methods

public validate (Phalcon\Validation $validation, mixed $field)

Executes the validation

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

© 2011–2016 Phalcon Framework Team
Licensed under the Creative Commons Attribution License 3.0.
https://docs.phalconphp.com/en/latest/api/Phalcon_Validation_Validator_Identical.html