respect-validation/library/Rules/SubdivisionCode/InSubdivisionCode.php
2015-09-21 13:27:06 -03:00

64 lines
1.6 KiB
PHP

<?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 India subdivision code.
*
* ISO 3166-1 alpha-2: IN
*
* @link http://www.geonames.org/IN/administrative-division-india.html
*/
class InSubdivisionCode extends AbstractSearcher
{
public $haystack = array(
'AN', // Andaman and Nicobar Islands
'AP', // Andhra Pradesh
'AR', // Arunachal Pradesh
'AS', // Assam
'BR', // Bihar
'CH', // Chandigarh
'CT', // Chhattisgarh
'DD', // Daman and Diu
'DL', // Delhi
'DN', // Dadra and Nagar Haveli
'GA', // Goa
'GJ', // Gujarat
'HP', // Himachal Pradesh
'HR', // Haryana
'JH', // Jharkhand
'JK', // Jammu and Kashmir
'KA', // Karnataka
'KL', // Kerala
'LD', // Lakshadweep
'MH', // Maharashtra
'ML', // Meghalaya
'MN', // Manipur
'MP', // Madhya Pradesh
'MZ', // Mizoram
'NL', // Nagaland
'OR', // Orissa
'PB', // Punjab
'PY', // Pondicherry
'RJ', // Rajasthan
'SK', // Sikkim
'TN', // Tamil Nadu
'TR', // Tripura
'UL', // Uttaranchal
'UP', // Uttar Pradesh
'WB', // West Bengal
);
public $compareIdentical = true;
}