diff --git a/library/Exceptions/SubdivisionCode/PeSubdivisionCodeException.php b/library/Exceptions/SubdivisionCode/PeSubdivisionCodeException.php new file mode 100644 index 00000000..5773d01b --- /dev/null +++ b/library/Exceptions/SubdivisionCode/PeSubdivisionCodeException.php @@ -0,0 +1,31 @@ + + * + * 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 Peru subdivision code. + * + * ISO 3166-1 alpha-2: PE + */ +class PeSubdivisionCodeException extends SubdivisionCodeException +{ + public static $defaultTemplates = array( + self::MODE_DEFAULT => array( + self::STANDARD => '{{name}} must be a subdivision code of Peru', + ), + self::MODE_NEGATIVE => array( + self::STANDARD => '{{name}} must not be a subdivision code of Peru', + ), + ); +} diff --git a/library/Rules/SubdivisionCode/PeSubdivisionCode.php b/library/Rules/SubdivisionCode/PeSubdivisionCode.php new file mode 100644 index 00000000..b6528350 --- /dev/null +++ b/library/Rules/SubdivisionCode/PeSubdivisionCode.php @@ -0,0 +1,55 @@ + + * + * 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 Peru subdivision code. + * + * ISO 3166-1 alpha-2: PE + * + * @link http://www.geonames.org/PE/administrative-division-peru.html + */ +class PeSubdivisionCode extends AbstractSearcher +{ + public $haystack = array( + 'AMA', // Amazonas + 'ANC', // Ancash + 'APU', // Apurimac + 'ARE', // Arequipa + 'AYA', // Ayacucho + 'CAJ', // Cajamarca + 'CAL', // Callao + 'CUS', // Cusco + 'HUC', // Huanuco + 'HUV', // Huancavelica + 'ICA', // Ica + 'JUN', // Junin + 'LAL', // La Libertad + 'LAM', // Lambayeque + 'LIM', // Lima + 'LMA', // Municipalidad Metropolitana de Lima + 'LOR', // Loreto + 'MDD', // Madre de Dios + 'MOQ', // Moquegua + 'PAS', // Pasco + 'PIU', // Piura + 'PUN', // Puno + 'SAM', // San Martin + 'TAC', // Tacna + 'TUM', // Tumbes + 'UCA', // Ucayali + ); + + public $compareIdentical = true; +}