Skip to content

Latest commit

 

History

History
 
 

Validator

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Phalcon\Mvc\Model\Validator

Validators for Phalcon\Mvc\Model

ConfirmationOf

Allows to validate if a field has a confirmation field with the same value

use Phalcon\Mvc\Model\Validator\ConfirmationOf;

use Phalcon\Mvc\Model;

class User extends Model
{

     public function initialize()
     {
          $this->skipAttributesOnCreate(array('password_confirmation'));
          $this->skipAttributesOnUpdate(array('password_confirmation'));
     }

     public function validation()
     {
          $this->validate(new ConfirmationOf(array(
               'field' => 'password',
               'field_confirmation' => 'password_confirmation',
               'message' => 'Both fields should contain equal values'
          )));

          if ($this->validationHasFailed() == true) {
               return false;
          }
     }

}

Decimal

Allows to validate if a field has a valid number in proper decimal format (negative and decimal numbers allowed). Optionally, a specific number of digits can be checked too. Uses locale conversion to allow decimal point to be locale specific.

use Phalcon\Mvc\Model\Validator\Decimal;

use Phalcon\Mvc\Model;

class Product extends Model
{

     public function validation()
     {
         $this->validate(new Decimal(array(
              'field' => 'price',
              'places' => 2,
              'digit' => 3, // optional
              'point' => ',' // optional. uses to override system decimal point
              'message' => 'Price must contain valid decimal value',
         )));

         if ($this->validationHasFailed() == true) {
              return false;
         }
     }

}

Between

Validates that a value is between a range of two values

use Phalcon\Mvc\Model\Validator\Between;

use Phalcon\Mvc\Model;

class Slider extends Model
{
     public function validation()
     {
          $this->validate(new Between(array(
               'field' => 'position',
               'max' => 50,
               'min' => 2,
               'message' => 'Position is not between a valid range'
          )));

          if ($this->validationHasFailed() == true) {
               return false;
          }
     }
}

CardNumber

Validates credit card number using Luhn algorithm.

use Phalcon\Mvc\Model;
use Phalcon\Mvc\Model\Validator\CardNumber;

class User extends Phalcon\Mvc\Model
{
     public function validation()
     {
          $this->validate(new CardNumber(array(
                'field' => 'cardnumber',
                'type'   => CardNumber::VISA, // Only one type. Any if not specified
                'message' => 'Card number must be valid',
          )));
 
          if ($this->validationHasFailed() == true) {
               return false;
          }
      }
}

IPv4

Validates that a value is ipv4 address in valid range

use Phalcon\Mvc\Model;
use Phalcon\Mvc\Model\Validator\IPv4;

class Server extends Phalcon\Mvc\Model
{
     public function validation()
     {
          $this->validate(new IPv4(array(
              'field'             => 'server_ip',
              'version'           => IP::VERSION_4 | IP::VERSION_6, // v6 and v4. The same if not specified
              'allowReserved'     => false,   // False if not specified. Ignored for v6
              'allowPrivate'      => false,   // False if not specified
              'message'           => 'IP address has to be correct'
          )));
 
          if ($this->validationHasFailed() == true) {
              return false;
          }
      }
}