HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/Neopoints/momsecurity.be/app/Komma/Globalization/CultureTypes.php
<?php


namespace App\Komma\Globalization;

use App\Komma\Base\Enum;


/**
 * Class CultureTypes
 *
 * Defines the types of culture lists that can be retrieved using the GetCultures(CultureTypes) method of CultureInfo
 *
 * @package App\Komma\Globalization
 */
abstract class CultureTypes extends Enum
{
    const ALL_CULTURES = 1;      //All cultures, including neutral and specific cultures
    const NEUTRAL_CULTURES = 2;  //Cultures that are associated with a language but are not specific to a country/region. Example 'NL'
    const SPECIFIC_CULTURES = 3; //Cultures that are specific to a country/region. Example nl-BE
}