Create "UaSubdivisionCode" rule

This commit is contained in:
Henrique Moody 2015-09-21 13:27:54 -03:00
parent e42d1c08da
commit b8eb3d5a96
2 changed files with 87 additions and 0 deletions

View file

@ -0,0 +1,31 @@
<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Exceptions\SubdivisionCode;
use Respect\Validation\Exceptions\SubdivisionCodeException;
/**
* Exception class for Ukraine subdivision code.
*
* ISO 3166-1 alpha-2: UA
*/
class UaSubdivisionCodeException extends SubdivisionCodeException
{
public static $defaultTemplates = array(
self::MODE_DEFAULT => array(
self::STANDARD => '{{name}} must be a subdivision code of Ukraine',
),
self::MODE_NEGATIVE => array(
self::STANDARD => '{{name}} must not be a subdivision code of Ukraine',
),
);
}

View file

@ -0,0 +1,56 @@
<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Rules\SubdivisionCode;
use Respect\Validation\Rules\AbstractSearcher;
/**
* Validator for Ukraine subdivision code.
*
* ISO 3166-1 alpha-2: UA
*
* @link http://www.geonames.org/UA/administrative-division-ukraine.html
*/
class UaSubdivisionCode extends AbstractSearcher
{
public $haystack = array(
'05', // Vinnytsya
'07', // Volyn'
'09', // Luhans'k
'12', // Dnipropetrovs'k
'14', // Donets'k
'18', // Zhytomyr
'21', // Zakarpattya
'23', // Zaporizhzhya
'26', // Ivano-Frankivs'k
'30', // Kyyiv
'32', // Kiev
'35', // Kirovohrad
'40', // Sevastopol
'43', // Crimea
'46', // L'viv
'48', // Mykolayiv
'51', // Odesa
'53', // Poltava
'56', // Rivne
'59', // Sumy
'61', // Ternopil'
'63', // Kharkiv
'65', // Kherson
'68', // Khmel'nyts'kyy
'71', // Cherkasy
'74', // Chernihiv
'77', // Chernivtsi
);
public $compareIdentical = true;
}