MediaWiki  1.27.2
IcuCollation Class Reference
Inheritance diagram for IcuCollation:
Collaboration diagram for IcuCollation:

Public Member Functions

 __construct ($locale)
 
 getFirstLetter ($string)
 
 getFirstLetterCount ()
 
 getFirstLetterData ()
 
 getLetterByIndex ($index)
 
 getPrimarySortKey ($string)
 
 getSortKey ($string)
 
 getSortKeyByLetterIndex ($index)
 
- Public Member Functions inherited from Collation
 getFirstLetter ($string)
 Given a string, return the logical "first letter" to be used for grouping on category pages and so on. More...
 
 getSortKey ($string)
 Given a string, convert it to a (hopefully short) key that can be used for efficient sorting. More...
 

Static Public Member Functions

static getICUVersion ()
 Return the version of ICU library used by PHP's intl extension, or false when the extension is not installed of the version can't be determined. More...
 
static getUnicodeVersionForICU ()
 Return the version of Unicode appropriate for the version of ICU library currently in use, or false when it can't be determined. More...
 
static isCjk ($codepoint)
 
- Static Public Member Functions inherited from Collation
static factory ($collationName)
 
static singleton ()
 

Public Attributes

const FIRST_LETTER_VERSION = 2
 
static const RECORD_LENGTH = 14
 

Protected Attributes

Language $digitTransformLanguage
 

Private Attributes

array $firstLetterData
 
string $locale
 
Collator $mainCollator
 
Collator $primaryCollator
 

Static Private Attributes

static $cjkBlocks
 Unified CJK blocks. More...
 
static $tailoringFirstLetters
 Additional characters (or character groups) to be considered separate letters for given languages, or to be removed from the list of such letters (denoted by keys starting with '-'). More...
 

Detailed Description

Since
1.16.3

Definition at line 24 of file IcuCollation.php.

Constructor & Destructor Documentation

IcuCollation::__construct (   $locale)

Definition at line 170 of file IcuCollation.php.

References $locale, create, and Language\factory().

Member Function Documentation

IcuCollation::getFirstLetter (   $string)
IcuCollation::getFirstLetterCount ( )
Since
1.16.3

Definition at line 412 of file IcuCollation.php.

References getFirstLetterData().

Referenced by getFirstLetter().

static IcuCollation::getICUVersion ( )
static

Return the version of ICU library used by PHP's intl extension, or false when the extension is not installed of the version can't be determined.

The constant INTL_ICU_VERSION this function refers to isn't really documented. It is available since PHP 5.3.7 (see PHP bug 54561). This function will return false on older PHPs.

Since
1.21
Returns
string|bool

Definition at line 443 of file IcuCollation.php.

Referenced by GenerateCollationData\execute(), getUnicodeVersionForICU(), and SpecialVersion\softwareInformation().

IcuCollation::getLetterByIndex (   $index)
Since
1.16.3

Definition at line 392 of file IcuCollation.php.

References getFirstLetterData().

Referenced by getFirstLetter().

IcuCollation::getPrimarySortKey (   $string)

Definition at line 200 of file IcuCollation.php.

References $key.

Referenced by getFirstLetter(), and getFirstLetterData().

IcuCollation::getSortKey (   $string)

Definition at line 190 of file IcuCollation.php.

References $key.

IcuCollation::getSortKeyByLetterIndex (   $index)
Since
1.16.3

Definition at line 402 of file IcuCollation.php.

References getFirstLetterData().

static IcuCollation::getUnicodeVersionForICU ( )
static

Return the version of Unicode appropriate for the version of ICU library currently in use, or false when it can't be determined.

Since
1.21
Returns
string|bool

Definition at line 454 of file IcuCollation.php.

References getICUVersion().

Referenced by GenerateCollationData\execute().

static IcuCollation::isCjk (   $codepoint)
static
Since
1.16.3

Definition at line 422 of file IcuCollation.php.

References as.

Referenced by GenerateCollationData\charCallback().

Member Data Documentation

IcuCollation::$cjkBlocks
staticprivate
Initial value:
= [
[ 0x2E80, 0x2EFF ],
[ 0x2F00, 0x2FDF ],
[ 0x2FF0, 0x2FFF ],
[ 0x3000, 0x303F ],
[ 0x31C0, 0x31EF ],
[ 0x3200, 0x32FF ],
[ 0x3300, 0x33FF ],
[ 0x3400, 0x4DBF ],
[ 0x4E00, 0x9FFF ],
[ 0xF900, 0xFAFF ],
[ 0xFE30, 0xFE4F ],
[ 0x20000, 0x2A6DF ],
[ 0x2A700, 0x2B73F ],
[ 0x2B740, 0x2B81F ],
[ 0x2F800, 0x2FA1F ],
]

Unified CJK blocks.

The same definition of a CJK block must be used for both Collation and generateCollationData.php. These blocks are omitted from the first letter data, as an optimisation measure and because the default UCA table is pretty useless for sorting Chinese text anyway. Japanese and Korean blocks are not included here, because they are smaller and more useful.

Definition at line 51 of file IcuCollation.php.

Language IcuCollation::$digitTransformLanguage
protected

Definition at line 37 of file IcuCollation.php.

array IcuCollation::$firstLetterData
private

Definition at line 40 of file IcuCollation.php.

Referenced by getFirstLetterData().

string IcuCollation::$locale
private

Definition at line 34 of file IcuCollation.php.

Referenced by __construct().

Collator IcuCollation::$mainCollator
private

Definition at line 31 of file IcuCollation.php.

Collator IcuCollation::$primaryCollator
private

Definition at line 28 of file IcuCollation.php.

IcuCollation::$tailoringFirstLetters
staticprivate
Initial value:
= [
'be' => [ "Ё" ]

Additional characters (or character groups) to be considered separate letters for given languages, or to be removed from the list of such letters (denoted by keys starting with '-').

These are additions to (or subtractions from) the data stored in the first-letters-root.ser file (which among others includes full basic latin, cyrillic and greek alphabets).

"Separate letter" is a letter that would have a separate heading/section for it in a dictionary or a phone book in this language. This data isn't used for sorting (the ICU library handles that), only for deciding which characters (or character groups) to use as headings.

Initially generated based on the primary level of Unicode collation tailorings available at http://developer.mimer.com/charts/tailorings.htm , later modified.

Empty arrays are intended; this signifies that the data for the language is available and that there are, in fact, no additional letters to consider.

Definition at line 90 of file IcuCollation.php.

const IcuCollation::FIRST_LETTER_VERSION = 2

Definition at line 25 of file IcuCollation.php.

const IcuCollation::RECORD_LENGTH = 14
Since
1.16.3

Definition at line 168 of file IcuCollation.php.


The documentation for this class was generated from the following file: