MediaWiki  1.29.2
Collation.php
Go to the documentation of this file.
1 <?php
27 abstract class Collation {
28  private static $instance;
29 
34  public static function singleton() {
35  if ( !self::$instance ) {
36  global $wgCategoryCollation;
37  self::$instance = self::factory( $wgCategoryCollation );
38  }
39  return self::$instance;
40  }
41 
48  public static function factory( $collationName ) {
50 
51  switch ( $collationName ) {
52  case 'uppercase':
53  return new UppercaseCollation;
54  case 'numeric':
56  case 'identity':
57  return new IdentityCollation;
58  case 'uca-default':
59  return new IcuCollation( 'root' );
60  case 'uca-default-u-kn':
61  return new IcuCollation( 'root-u-kn' );
62  case 'xx-uca-ckb':
63  return new CollationCkb;
64  case 'xx-uca-et':
65  return new CollationEt;
66  case 'xx-uca-fa':
67  return new CollationFa;
68  default:
69  $match = [];
70  if ( preg_match( '/^uca-([A-Za-z@=-]+)$/', $collationName, $match ) ) {
71  return new IcuCollation( $match[1] );
72  }
73 
74  # Provide a mechanism for extensions to hook in.
75  $collationObject = null;
76  Hooks::run( 'Collation::factory', [ $collationName, &$collationObject ] );
77 
78  if ( $collationObject instanceof Collation ) {
79  return $collationObject;
80  }
81 
82  // If all else fails...
83  throw new MWException( __METHOD__ . ": unknown collation type \"$collationName\"" );
84  }
85  }
86 
100  abstract function getSortKey( $string );
101 
127  abstract function getFirstLetter( $string );
128 
129 }
CollationCkb
Workaround for the lack of support of Sorani Kurdish / Central Kurdish language ('ckb') in ICU.
Definition: CollationCkb.php:28
Collation\getSortKey
getSortKey( $string)
Given a string, convert it to a (hopefully short) key that can be used for efficient sorting.
UppercaseCollation
Definition: UppercaseCollation.php:23
Collation\getFirstLetter
getFirstLetter( $string)
Given a string, return the logical "first letter" to be used for grouping on category pages and so on...
CollationFa
Temporary workaround for incorrect collation of Persian language ('fa') in ICU 52 (bug T139110).
Definition: CollationFa.php:31
Collation
Definition: Collation.php:27
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Collation\singleton
static singleton()
Definition: Collation.php:34
MWException
MediaWiki exception.
Definition: MWException.php:26
NumericUppercaseCollation
Collation that orders text with numbers "naturally", so that 'Foo 1' < 'Foo 2' < 'Foo 12'.
Definition: NumericUppercaseCollation.php:35
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
IdentityCollation
Collation class that's essentially a no-op.
Definition: IdentityCollation.php:29
CollationEt
Workaround for incorrect collation of Estonian language ('et') in ICU (T56168).
Definition: CollationEt.php:31
Collation\$instance
static $instance
Definition: Collation.php:28
Collation\factory
static factory( $collationName)
Definition: Collation.php:48
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56
IcuCollation
Definition: IcuCollation.php:24