mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
101 lines
1.9 KiB
PHP
101 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package phpOMS\Localization\Subregion
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Localization\Subregion;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Country codes ISO 3166-2 list.
|
|
*
|
|
* @package phpOMS\Localization\Subregion
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
class ISO3166TwoINNameEnum extends Enum
|
|
{
|
|
public const _AN = 'Andaman and Nicobar Islands';
|
|
|
|
public const _AP = 'Andhra Pradesh';
|
|
|
|
public const _AR = 'Arunāchal Pradesh';
|
|
|
|
public const _AS = 'Assam';
|
|
|
|
public const _BR = 'Bihār';
|
|
|
|
public const _CH = 'Chandīgarh';
|
|
|
|
public const _CG = 'Chhattīsgarh';
|
|
|
|
public const _DH = 'Dādra and Nagar Haveli and Damān and Diu';
|
|
|
|
public const _DL = 'Delhi';
|
|
|
|
public const _GA = 'Goa';
|
|
|
|
public const _GJ = 'Gujarāt';
|
|
|
|
public const _HR = 'Haryāna';
|
|
|
|
public const _HP = 'Himāchal Pradesh';
|
|
|
|
public const _JK = 'Jammu and Kashmīr';
|
|
|
|
public const _JH = 'Jhārkhand';
|
|
|
|
public const _KA = 'Karnātaka';
|
|
|
|
public const _KL = 'Kerala';
|
|
|
|
public const _LA = 'Ladākh';
|
|
|
|
public const _LD = 'Lakshadweep';
|
|
|
|
public const _MP = 'Madhya Pradesh';
|
|
|
|
public const _MH = 'Mahārāshtra';
|
|
|
|
public const _MN = 'Manipur';
|
|
|
|
public const _ML = 'Meghālaya';
|
|
|
|
public const _MZ = 'Mizoram';
|
|
|
|
public const _NL = 'Nāgāland';
|
|
|
|
public const _OD = 'Odisha';
|
|
|
|
public const _PY = 'Puducherry';
|
|
|
|
public const _PB = 'Punjab';
|
|
|
|
public const _RJ = 'Rājasthān';
|
|
|
|
public const _SK = 'Sikkim';
|
|
|
|
public const _TN = 'Tamil Nādu';
|
|
|
|
public const _TS = 'Telangāna';
|
|
|
|
public const _TR = 'Tripura';
|
|
|
|
public const _UP = 'Uttar Pradesh';
|
|
|
|
public const _UK = 'Uttarākhand';
|
|
|
|
public const _WB = 'West Bengal';
|
|
}
|