3 * Internationalisation code.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * @defgroup Language Language
28 if ( !defined( 'MEDIAWIKI' ) ) {
29 echo "This file is part of MediaWiki, it is not a valid entry point.\n";
34 global $wgLanguageNames;
35 require_once( __DIR__
. '/Names.php' );
37 if ( function_exists( 'mb_strtoupper' ) ) {
38 mb_internal_encoding( 'UTF-8' );
42 * a fake language converter
51 function __construct( $langobj ) { $this->mLang
= $langobj; }
52 function autoConvertToAllVariants( $text ) { return array( $this->mLang
->getCode() => $text ); }
53 function convert( $t ) { return $t; }
54 function convertTo( $text, $variant ) { return $text; }
55 function convertTitle( $t ) { return $t->getPrefixedText(); }
56 function convertNamespace( $ns ) { return $this->mLang
->getFormattedNsText( $ns ); }
57 function getVariants() { return array( $this->mLang
->getCode() ); }
58 function getPreferredVariant() { return $this->mLang
->getCode(); }
59 function getDefaultVariant() { return $this->mLang
->getCode(); }
60 function getURLVariant() { return ''; }
61 function getConvRuleTitle() { return false; }
62 function findVariantLink( &$l, &$n, $ignoreOtherCond = false ) { }
63 function getExtraHashOptions() { return ''; }
64 function getParsedTitle() { return ''; }
65 function markNoConversion( $text, $noParse = false ) { return $text; }
66 function convertCategoryKey( $key ) { return $key; }
67 function convertLinkToAllVariants( $text ) { return $this->autoConvertToAllVariants( $text ); }
68 function armourMath( $text ) { return $text; }
72 * Internationalisation code
78 * @var LanguageConverter
82 public $mVariants, $mCode, $mLoaded = false;
83 public $mMagicExtensions = array(), $mMagicHookDone = false;
84 private $mHtmlCode = null;
86 public $dateFormatStrings = array();
87 public $mExtendedSpecialPageAliases;
89 protected $namespaceNames, $mNamespaceIds, $namespaceAliases;
92 * ReplacementArray object caches
94 public $transformData = array();
97 * @var LocalisationCache
99 static public $dataCache;
101 static public $mLangObjCache = array();
103 static public $mWeekdayMsgs = array(
104 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday',
108 static public $mWeekdayAbbrevMsgs = array(
109 'sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'
112 static public $mMonthMsgs = array(
113 'january', 'february', 'march', 'april', 'may_long', 'june',
114 'july', 'august', 'september', 'october', 'november',
117 static public $mMonthGenMsgs = array(
118 'january-gen', 'february-gen', 'march-gen', 'april-gen', 'may-gen', 'june-gen',
119 'july-gen', 'august-gen', 'september-gen', 'october-gen', 'november-gen',
122 static public $mMonthAbbrevMsgs = array(
123 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug',
124 'sep', 'oct', 'nov', 'dec'
127 static public $mIranianCalendarMonthMsgs = array(
128 'iranian-calendar-m1', 'iranian-calendar-m2', 'iranian-calendar-m3',
129 'iranian-calendar-m4', 'iranian-calendar-m5', 'iranian-calendar-m6',
130 'iranian-calendar-m7', 'iranian-calendar-m8', 'iranian-calendar-m9',
131 'iranian-calendar-m10', 'iranian-calendar-m11', 'iranian-calendar-m12'
134 static public $mHebrewCalendarMonthMsgs = array(
135 'hebrew-calendar-m1', 'hebrew-calendar-m2', 'hebrew-calendar-m3',
136 'hebrew-calendar-m4', 'hebrew-calendar-m5', 'hebrew-calendar-m6',
137 'hebrew-calendar-m7', 'hebrew-calendar-m8', 'hebrew-calendar-m9',
138 'hebrew-calendar-m10', 'hebrew-calendar-m11', 'hebrew-calendar-m12',
139 'hebrew-calendar-m6a', 'hebrew-calendar-m6b'
142 static public $mHebrewCalendarMonthGenMsgs = array(
143 'hebrew-calendar-m1-gen', 'hebrew-calendar-m2-gen', 'hebrew-calendar-m3-gen',
144 'hebrew-calendar-m4-gen', 'hebrew-calendar-m5-gen', 'hebrew-calendar-m6-gen',
145 'hebrew-calendar-m7-gen', 'hebrew-calendar-m8-gen', 'hebrew-calendar-m9-gen',
146 'hebrew-calendar-m10-gen', 'hebrew-calendar-m11-gen', 'hebrew-calendar-m12-gen',
147 'hebrew-calendar-m6a-gen', 'hebrew-calendar-m6b-gen'
150 static public $mHijriCalendarMonthMsgs = array(
151 'hijri-calendar-m1', 'hijri-calendar-m2', 'hijri-calendar-m3',
152 'hijri-calendar-m4', 'hijri-calendar-m5', 'hijri-calendar-m6',
153 'hijri-calendar-m7', 'hijri-calendar-m8', 'hijri-calendar-m9',
154 'hijri-calendar-m10', 'hijri-calendar-m11', 'hijri-calendar-m12'
161 static public $durationIntervals = array(
162 'millennia' => 31556952000,
163 'centuries' => 3155695200,
164 'decades' => 315569520,
165 'years' => 31556952, // 86400 * ( 365 + ( 24 * 3 + 25 ) / 400 )
174 * Get a cached or new language object for a given language code
175 * @param $code String
178 static function factory( $code ) {
179 global $wgDummyLanguageCodes, $wgLangObjCacheSize;
181 if ( isset( $wgDummyLanguageCodes[$code] ) ) {
182 $code = $wgDummyLanguageCodes[$code];
185 // get the language object to process
186 $langObj = isset( self
::$mLangObjCache[$code] )
187 ? self
::$mLangObjCache[$code]
188 : self
::newFromCode( $code );
190 // merge the language object in to get it up front in the cache
191 self
::$mLangObjCache = array_merge( array( $code => $langObj ), self
::$mLangObjCache );
192 // get rid of the oldest ones in case we have an overflow
193 self
::$mLangObjCache = array_slice( self
::$mLangObjCache, 0, $wgLangObjCacheSize, true );
199 * Create a language object for a given language code
200 * @param $code String
201 * @throws MWException
204 protected static function newFromCode( $code ) {
205 // Protect against path traversal below
206 if ( !Language
::isValidCode( $code )
207 ||
strcspn( $code, ":/\\\000" ) !== strlen( $code ) )
209 throw new MWException( "Invalid language code \"$code\"" );
212 if ( !Language
::isValidBuiltInCode( $code ) ) {
213 // It's not possible to customise this code with class files, so
214 // just return a Language object. This is to support uselang= hacks.
215 $lang = new Language
;
216 $lang->setCode( $code );
220 // Check if there is a language class for the code
221 $class = self
::classFromCode( $code );
222 self
::preloadLanguageClass( $class );
223 if ( MWInit
::classExists( $class ) ) {
228 // Keep trying the fallback list until we find an existing class
229 $fallbacks = Language
::getFallbacksFor( $code );
230 foreach ( $fallbacks as $fallbackCode ) {
231 if ( !Language
::isValidBuiltInCode( $fallbackCode ) ) {
232 throw new MWException( "Invalid fallback '$fallbackCode' in fallback sequence for '$code'" );
235 $class = self
::classFromCode( $fallbackCode );
236 self
::preloadLanguageClass( $class );
237 if ( MWInit
::classExists( $class ) ) {
238 $lang = Language
::newFromCode( $fallbackCode );
239 $lang->setCode( $code );
244 throw new MWException( "Invalid fallback sequence for language '$code'" );
248 * Checks whether any localisation is available for that language tag
249 * in MediaWiki (MessagesXx.php exists).
251 * @param string $code Language tag (in lower case)
252 * @return bool Whether language is supported
255 public static function isSupportedLanguage( $code ) {
256 return $code === strtolower( $code ) && is_readable( self
::getMessagesFileName( $code ) );
260 * Returns true if a language code string is a well-formed language tag
261 * according to RFC 5646.
262 * This function only checks well-formedness; it doesn't check that
263 * language, script or variant codes actually exist in the repositories.
265 * Based on regexes by Mark Davis of the Unicode Consortium:
266 * http://unicode.org/repos/cldr/trunk/tools/java/org/unicode/cldr/util/data/langtagRegex.txt
268 * @param $code string
269 * @param $lenient boolean Whether to allow '_' as separator. The default is only '-'.
274 public static function isWellFormedLanguageTag( $code, $lenient = false ) {
277 $alphanum = '[a-z0-9]';
278 $x = 'x'; # private use singleton
279 $singleton = '[a-wy-z]'; # other singleton
280 $s = $lenient ?
'[-_]' : '-';
282 $language = "$alpha{2,8}|$alpha{2,3}$s$alpha{3}";
283 $script = "$alpha{4}"; # ISO 15924
284 $region = "(?:$alpha{2}|$digit{3})"; # ISO 3166-1 alpha-2 or UN M.49
285 $variant = "(?:$alphanum{5,8}|$digit$alphanum{3})";
286 $extension = "$singleton(?:$s$alphanum{2,8})+";
287 $privateUse = "$x(?:$s$alphanum{1,8})+";
289 # Define certain grandfathered codes, since otherwise the regex is pretty useless.
290 # Since these are limited, this is safe even later changes to the registry --
291 # the only oddity is that it might change the type of the tag, and thus
292 # the results from the capturing groups.
293 # http://www.iana.org/assignments/language-subtag-registry
295 $grandfathered = "en{$s}GB{$s}oed"
296 . "|i{$s}(?:ami|bnn|default|enochian|hak|klingon|lux|mingo|navajo|pwn|tao|tay|tsu)"
297 . "|no{$s}(?:bok|nyn)"
298 . "|sgn{$s}(?:BE{$s}(?:fr|nl)|CH{$s}de)"
299 . "|zh{$s}min{$s}nan";
301 $variantList = "$variant(?:$s$variant)*";
302 $extensionList = "$extension(?:$s$extension)*";
304 $langtag = "(?:($language)"
307 . "(?:$s$variantList)?"
308 . "(?:$s$extensionList)?"
309 . "(?:$s$privateUse)?)";
311 # The final breakdown, with capturing groups for each of these components
312 # The variants, extensions, grandfathered, and private-use may have interior '-'
314 $root = "^(?:$langtag|$privateUse|$grandfathered)$";
316 return (bool)preg_match( "/$root/", strtolower( $code ) );
320 * Returns true if a language code string is of a valid form, whether or
321 * not it exists. This includes codes which are used solely for
322 * customisation via the MediaWiki namespace.
324 * @param $code string
328 public static function isValidCode( $code ) {
330 // People think language codes are html safe, so enforce it.
331 // Ideally we should only allow a-zA-Z0-9-
332 // but, .+ and other chars are often used for {{int:}} hacks
333 // see bugs 37564, 37587, 36938
334 strcspn( $code, ":/\\\000&<>'\"" ) === strlen( $code )
335 && !preg_match( Title
::getTitleInvalidRegex(), $code );
339 * Returns true if a language code is of a valid form for the purposes of
340 * internal customisation of MediaWiki, via Messages*.php.
342 * @param $code string
344 * @throws MWException
348 public static function isValidBuiltInCode( $code ) {
350 if ( !is_string( $code ) ) {
351 if ( is_object( $code ) ) {
352 $addmsg = " of class " . get_class( $code );
356 $type = gettype( $code );
357 throw new MWException( __METHOD__
. " must be passed a string, $type given$addmsg" );
360 return (bool)preg_match( '/^[a-z0-9-]{2,}$/i', $code );
364 * Returns true if a language code is an IETF tag known to MediaWiki.
366 * @param $code string
371 public static function isKnownLanguageTag( $tag ) {
372 static $coreLanguageNames;
374 if ( $coreLanguageNames === null ) {
375 include( MWInit
::compiledPath( 'languages/Names.php' ) );
378 if ( isset( $coreLanguageNames[$tag] )
379 || self
::fetchLanguageName( $tag, $tag ) !== ''
389 * @return String Name of the language class
391 public static function classFromCode( $code ) {
392 if ( $code == 'en' ) {
395 return 'Language' . str_replace( '-', '_', ucfirst( $code ) );
400 * Includes language class files
402 * @param $class string Name of the language class
404 public static function preloadLanguageClass( $class ) {
407 if ( $class === 'Language' ) {
411 if ( !defined( 'MW_COMPILED' ) ) {
412 if ( file_exists( "$IP/languages/classes/$class.php" ) ) {
413 include_once( "$IP/languages/classes/$class.php" );
419 * Get the LocalisationCache instance
421 * @return LocalisationCache
423 public static function getLocalisationCache() {
424 if ( is_null( self
::$dataCache ) ) {
425 global $wgLocalisationCacheConf;
426 $class = $wgLocalisationCacheConf['class'];
427 self
::$dataCache = new $class( $wgLocalisationCacheConf );
429 return self
::$dataCache;
432 function __construct() {
433 $this->mConverter
= new FakeConverter( $this );
434 // Set the code to the name of the descendant
435 if ( get_class( $this ) == 'Language' ) {
438 $this->mCode
= str_replace( '_', '-', strtolower( substr( get_class( $this ), 8 ) ) );
440 self
::getLocalisationCache();
444 * Reduce memory usage
446 function __destruct() {
447 foreach ( $this as $name => $value ) {
448 unset( $this->$name );
453 * Hook which will be called if this is the content language.
454 * Descendants can use this to register hook functions or modify globals
456 function initContLang() { }
459 * Same as getFallbacksFor for current language.
461 * @deprecated in 1.19
463 function getFallbackLanguageCode() {
464 wfDeprecated( __METHOD__
, '1.19' );
465 return self
::getFallbackFor( $this->mCode
);
472 function getFallbackLanguages() {
473 return self
::getFallbacksFor( $this->mCode
);
477 * Exports $wgBookstoreListEn
480 function getBookstoreList() {
481 return self
::$dataCache->getItem( $this->mCode
, 'bookstoreList' );
485 * Returns an array of localised namespaces indexed by their numbers. If the namespace is not
486 * available in localised form, it will be included in English.
490 public function getNamespaces() {
491 if ( is_null( $this->namespaceNames
) ) {
492 global $wgMetaNamespace, $wgMetaNamespaceTalk, $wgExtraNamespaces;
494 $this->namespaceNames
= self
::$dataCache->getItem( $this->mCode
, 'namespaceNames' );
495 $validNamespaces = MWNamespace
::getCanonicalNamespaces();
497 $this->namespaceNames
= $wgExtraNamespaces +
$this->namespaceNames +
$validNamespaces;
499 $this->namespaceNames
[NS_PROJECT
] = $wgMetaNamespace;
500 if ( $wgMetaNamespaceTalk ) {
501 $this->namespaceNames
[NS_PROJECT_TALK
] = $wgMetaNamespaceTalk;
503 $talk = $this->namespaceNames
[NS_PROJECT_TALK
];
504 $this->namespaceNames
[NS_PROJECT_TALK
] =
505 $this->fixVariableInNamespace( $talk );
508 # Sometimes a language will be localised but not actually exist on this wiki.
509 foreach ( $this->namespaceNames
as $key => $text ) {
510 if ( !isset( $validNamespaces[$key] ) ) {
511 unset( $this->namespaceNames
[$key] );
515 # The above mixing may leave namespaces out of canonical order.
516 # Re-order by namespace ID number...
517 ksort( $this->namespaceNames
);
519 wfRunHooks( 'LanguageGetNamespaces', array( &$this->namespaceNames
) );
521 return $this->namespaceNames
;
525 * Arbitrarily set all of the namespace names at once. Mainly used for testing
526 * @param $namespaces Array of namespaces (id => name)
528 public function setNamespaces( array $namespaces ) {
529 $this->namespaceNames
= $namespaces;
530 $this->mNamespaceIds
= null;
534 * Resets all of the namespace caches. Mainly used for testing
536 public function resetNamespaces() {
537 $this->namespaceNames
= null;
538 $this->mNamespaceIds
= null;
539 $this->namespaceAliases
= null;
543 * A convenience function that returns the same thing as
544 * getNamespaces() except with the array values changed to ' '
545 * where it found '_', useful for producing output to be displayed
546 * e.g. in <select> forms.
550 function getFormattedNamespaces() {
551 $ns = $this->getNamespaces();
552 foreach ( $ns as $k => $v ) {
553 $ns[$k] = strtr( $v, '_', ' ' );
559 * Get a namespace value by key
561 * $mw_ns = $wgContLang->getNsText( NS_MEDIAWIKI );
562 * echo $mw_ns; // prints 'MediaWiki'
565 * @param $index Int: the array key of the namespace to return
566 * @return mixed, string if the namespace value exists, otherwise false
568 function getNsText( $index ) {
569 $ns = $this->getNamespaces();
570 return isset( $ns[$index] ) ?
$ns[$index] : false;
574 * A convenience function that returns the same thing as
575 * getNsText() except with '_' changed to ' ', useful for
579 * $mw_ns = $wgContLang->getFormattedNsText( NS_MEDIAWIKI_TALK );
580 * echo $mw_ns; // prints 'MediaWiki talk'
583 * @param int $index The array key of the namespace to return
584 * @return string Namespace name without underscores (empty string if namespace does not exist)
586 function getFormattedNsText( $index ) {
587 $ns = $this->getNsText( $index );
588 return strtr( $ns, '_', ' ' );
592 * Returns gender-dependent namespace alias if available.
593 * @param $index Int: namespace index
594 * @param $gender String: gender key (male, female... )
598 function getGenderNsText( $index, $gender ) {
599 global $wgExtraGenderNamespaces;
601 $ns = $wgExtraGenderNamespaces + self
::$dataCache->getItem( $this->mCode
, 'namespaceGenderAliases' );
602 return isset( $ns[$index][$gender] ) ?
$ns[$index][$gender] : $this->getNsText( $index );
606 * Whether this language makes distinguishes genders for example in
611 function needsGenderDistinction() {
612 global $wgExtraGenderNamespaces, $wgExtraNamespaces;
613 if ( count( $wgExtraGenderNamespaces ) > 0 ) {
614 // $wgExtraGenderNamespaces overrides everything
616 } elseif ( isset( $wgExtraNamespaces[NS_USER
] ) && isset( $wgExtraNamespaces[NS_USER_TALK
] ) ) {
617 /// @todo There may be other gender namespace than NS_USER & NS_USER_TALK in the future
618 // $wgExtraNamespaces overrides any gender aliases specified in i18n files
621 // Check what is in i18n files
622 $aliases = self
::$dataCache->getItem( $this->mCode
, 'namespaceGenderAliases' );
623 return count( $aliases ) > 0;
628 * Get a namespace key by value, case insensitive.
629 * Only matches namespace names for the current language, not the
630 * canonical ones defined in Namespace.php.
632 * @param $text String
633 * @return mixed An integer if $text is a valid value otherwise false
635 function getLocalNsIndex( $text ) {
636 $lctext = $this->lc( $text );
637 $ids = $this->getNamespaceIds();
638 return isset( $ids[$lctext] ) ?
$ids[$lctext] : false;
644 function getNamespaceAliases() {
645 if ( is_null( $this->namespaceAliases
) ) {
646 $aliases = self
::$dataCache->getItem( $this->mCode
, 'namespaceAliases' );
650 foreach ( $aliases as $name => $index ) {
651 if ( $index === NS_PROJECT_TALK
) {
652 unset( $aliases[$name] );
653 $name = $this->fixVariableInNamespace( $name );
654 $aliases[$name] = $index;
659 global $wgExtraGenderNamespaces;
660 $genders = $wgExtraGenderNamespaces +
(array)self
::$dataCache->getItem( $this->mCode
, 'namespaceGenderAliases' );
661 foreach ( $genders as $index => $forms ) {
662 foreach ( $forms as $alias ) {
663 $aliases[$alias] = $index;
667 $this->namespaceAliases
= $aliases;
669 return $this->namespaceAliases
;
675 function getNamespaceIds() {
676 if ( is_null( $this->mNamespaceIds
) ) {
677 global $wgNamespaceAliases;
678 # Put namespace names and aliases into a hashtable.
679 # If this is too slow, then we should arrange it so that it is done
680 # before caching. The catch is that at pre-cache time, the above
681 # class-specific fixup hasn't been done.
682 $this->mNamespaceIds
= array();
683 foreach ( $this->getNamespaces() as $index => $name ) {
684 $this->mNamespaceIds
[$this->lc( $name )] = $index;
686 foreach ( $this->getNamespaceAliases() as $name => $index ) {
687 $this->mNamespaceIds
[$this->lc( $name )] = $index;
689 if ( $wgNamespaceAliases ) {
690 foreach ( $wgNamespaceAliases as $name => $index ) {
691 $this->mNamespaceIds
[$this->lc( $name )] = $index;
695 return $this->mNamespaceIds
;
699 * Get a namespace key by value, case insensitive. Canonical namespace
700 * names override custom ones defined for the current language.
702 * @param $text String
703 * @return mixed An integer if $text is a valid value otherwise false
705 function getNsIndex( $text ) {
706 $lctext = $this->lc( $text );
707 $ns = MWNamespace
::getCanonicalIndex( $lctext );
708 if ( $ns !== null ) {
711 $ids = $this->getNamespaceIds();
712 return isset( $ids[$lctext] ) ?
$ids[$lctext] : false;
716 * short names for language variants used for language conversion links.
718 * @param $code String
719 * @param $usemsg bool Use the "variantname-xyz" message if it exists
722 function getVariantname( $code, $usemsg = true ) {
723 $msg = "variantname-$code";
724 if ( $usemsg && wfMessage( $msg )->exists() ) {
725 return $this->getMessageFromDB( $msg );
727 $name = self
::fetchLanguageName( $code );
729 return $name; # if it's defined as a language name, show that
731 # otherwise, output the language code
737 * @param $name string
740 function specialPage( $name ) {
741 $aliases = $this->getSpecialPageAliases();
742 if ( isset( $aliases[$name][0] ) ) {
743 $name = $aliases[$name][0];
745 return $this->getNsText( NS_SPECIAL
) . ':' . $name;
751 function getDatePreferences() {
752 return self
::$dataCache->getItem( $this->mCode
, 'datePreferences' );
758 function getDateFormats() {
759 return self
::$dataCache->getItem( $this->mCode
, 'dateFormats' );
763 * @return array|string
765 function getDefaultDateFormat() {
766 $df = self
::$dataCache->getItem( $this->mCode
, 'defaultDateFormat' );
767 if ( $df === 'dmy or mdy' ) {
768 global $wgAmericanDates;
769 return $wgAmericanDates ?
'mdy' : 'dmy';
778 function getDatePreferenceMigrationMap() {
779 return self
::$dataCache->getItem( $this->mCode
, 'datePreferenceMigrationMap' );
786 function getImageFile( $image ) {
787 return self
::$dataCache->getSubitem( $this->mCode
, 'imageFiles', $image );
793 function getExtraUserToggles() {
794 return (array)self
::$dataCache->getItem( $this->mCode
, 'extraUserToggles' );
801 function getUserToggle( $tog ) {
802 return $this->getMessageFromDB( "tog-$tog" );
806 * Get native language names, indexed by code.
807 * Only those defined in MediaWiki, no other data like CLDR.
808 * If $customisedOnly is true, only returns codes with a messages file
810 * @param $customisedOnly bool
813 * @deprecated in 1.20, use fetchLanguageNames()
815 public static function getLanguageNames( $customisedOnly = false ) {
816 return self
::fetchLanguageNames( null, $customisedOnly ?
'mwfile' : 'mw' );
820 * Get translated language names. This is done on best effort and
821 * by default this is exactly the same as Language::getLanguageNames.
822 * The CLDR extension provides translated names.
823 * @param $code String Language code.
824 * @return Array language code => language name
826 * @deprecated in 1.20, use fetchLanguageNames()
828 public static function getTranslatedLanguageNames( $code ) {
829 return self
::fetchLanguageNames( $code, 'all' );
833 * Get an array of language names, indexed by code.
834 * @param $inLanguage null|string: Code of language in which to return the names
835 * Use null for autonyms (native names)
836 * @param $include string:
837 * 'all' all available languages
838 * 'mw' only if the language is defined in MediaWiki or wgExtraLanguageNames (default)
839 * 'mwfile' only if the language is in 'mw' *and* has a message file
840 * @return array: language code => language name
843 public static function fetchLanguageNames( $inLanguage = null, $include = 'mw' ) {
844 global $wgExtraLanguageNames;
845 static $coreLanguageNames;
847 if ( $coreLanguageNames === null ) {
848 include( MWInit
::compiledPath( 'languages/Names.php' ) );
854 # TODO: also include when $inLanguage is null, when this code is more efficient
855 wfRunHooks( 'LanguageGetTranslatedLanguageNames', array( &$names, $inLanguage ) );
858 $mwNames = $wgExtraLanguageNames +
$coreLanguageNames;
859 foreach ( $mwNames as $mwCode => $mwName ) {
860 # - Prefer own MediaWiki native name when not using the hook
861 # - For other names just add if not added through the hook
862 if ( $mwCode === $inLanguage ||
!isset( $names[$mwCode] ) ) {
863 $names[$mwCode] = $mwName;
867 if ( $include === 'all' ) {
872 $coreCodes = array_keys( $mwNames );
873 foreach ( $coreCodes as $coreCode ) {
874 $returnMw[$coreCode] = $names[$coreCode];
877 if ( $include === 'mwfile' ) {
878 $namesMwFile = array();
879 # We do this using a foreach over the codes instead of a directory
880 # loop so that messages files in extensions will work correctly.
881 foreach ( $returnMw as $code => $value ) {
882 if ( is_readable( self
::getMessagesFileName( $code ) ) ) {
883 $namesMwFile[$code] = $names[$code];
888 # 'mw' option; default if it's not one of the other two options (all/mwfile)
893 * @param $code string: The code of the language for which to get the name
894 * @param $inLanguage null|string: Code of language in which to return the name (null for autonyms)
895 * @param $include string: 'all', 'mw' or 'mwfile'; see fetchLanguageNames()
896 * @return string: Language name or empty
899 public static function fetchLanguageName( $code, $inLanguage = null, $include = 'all' ) {
900 $array = self
::fetchLanguageNames( $inLanguage, $include );
901 return !array_key_exists( $code, $array ) ?
'' : $array[$code];
905 * Get a message from the MediaWiki namespace.
907 * @param $msg String: message name
910 function getMessageFromDB( $msg ) {
911 return wfMessage( $msg )->inLanguage( $this )->text();
915 * Get the native language name of $code.
916 * Only if defined in MediaWiki, no other data like CLDR.
917 * @param $code string
919 * @deprecated in 1.20, use fetchLanguageName()
921 function getLanguageName( $code ) {
922 return self
::fetchLanguageName( $code );
929 function getMonthName( $key ) {
930 return $this->getMessageFromDB( self
::$mMonthMsgs[$key - 1] );
936 function getMonthNamesArray() {
937 $monthNames = array( '' );
938 for ( $i = 1; $i < 13; $i++
) {
939 $monthNames[] = $this->getMonthName( $i );
948 function getMonthNameGen( $key ) {
949 return $this->getMessageFromDB( self
::$mMonthGenMsgs[$key - 1] );
956 function getMonthAbbreviation( $key ) {
957 return $this->getMessageFromDB( self
::$mMonthAbbrevMsgs[$key - 1] );
963 function getMonthAbbreviationsArray() {
964 $monthNames = array( '' );
965 for ( $i = 1; $i < 13; $i++
) {
966 $monthNames[] = $this->getMonthAbbreviation( $i );
975 function getWeekdayName( $key ) {
976 return $this->getMessageFromDB( self
::$mWeekdayMsgs[$key - 1] );
983 function getWeekdayAbbreviation( $key ) {
984 return $this->getMessageFromDB( self
::$mWeekdayAbbrevMsgs[$key - 1] );
991 function getIranianCalendarMonthName( $key ) {
992 return $this->getMessageFromDB( self
::$mIranianCalendarMonthMsgs[$key - 1] );
999 function getHebrewCalendarMonthName( $key ) {
1000 return $this->getMessageFromDB( self
::$mHebrewCalendarMonthMsgs[$key - 1] );
1004 * @param $key string
1007 function getHebrewCalendarMonthNameGen( $key ) {
1008 return $this->getMessageFromDB( self
::$mHebrewCalendarMonthGenMsgs[$key - 1] );
1012 * @param $key string
1015 function getHijriCalendarMonthName( $key ) {
1016 return $this->getMessageFromDB( self
::$mHijriCalendarMonthMsgs[$key - 1] );
1020 * This is a workalike of PHP's date() function, but with better
1021 * internationalisation, a reduced set of format characters, and a better
1024 * Supported format characters are dDjlNwzWFmMntLoYyaAgGhHiscrUeIOPTZ. See
1025 * the PHP manual for definitions. There are a number of extensions, which
1028 * xn Do not translate digits of the next numeric format character
1029 * xN Toggle raw digit (xn) flag, stays set until explicitly unset
1030 * xr Use roman numerals for the next numeric format character
1031 * xh Use hebrew numerals for the next numeric format character
1033 * xg Genitive month name
1035 * xij j (day number) in Iranian calendar
1036 * xiF F (month name) in Iranian calendar
1037 * xin n (month number) in Iranian calendar
1038 * xiy y (two digit year) in Iranian calendar
1039 * xiY Y (full year) in Iranian calendar
1041 * xjj j (day number) in Hebrew calendar
1042 * xjF F (month name) in Hebrew calendar
1043 * xjt t (days in month) in Hebrew calendar
1044 * xjx xg (genitive month name) in Hebrew calendar
1045 * xjn n (month number) in Hebrew calendar
1046 * xjY Y (full year) in Hebrew calendar
1048 * xmj j (day number) in Hijri calendar
1049 * xmF F (month name) in Hijri calendar
1050 * xmn n (month number) in Hijri calendar
1051 * xmY Y (full year) in Hijri calendar
1053 * xkY Y (full year) in Thai solar calendar. Months and days are
1054 * identical to the Gregorian calendar
1055 * xoY Y (full year) in Minguo calendar or Juche year.
1056 * Months and days are identical to the
1057 * Gregorian calendar
1058 * xtY Y (full year) in Japanese nengo. Months and days are
1059 * identical to the Gregorian calendar
1061 * Characters enclosed in double quotes will be considered literal (with
1062 * the quotes themselves removed). Unmatched quotes will be considered
1063 * literal quotes. Example:
1065 * "The month is" F => The month is January
1068 * Backslash escaping is also supported.
1070 * Input timestamp is assumed to be pre-normalized to the desired local
1071 * time zone, if any. Note that the format characters crUeIOPTZ will assume
1072 * $ts is UTC if $zone is not given.
1074 * @param $format String
1075 * @param $ts String: 14-character timestamp
1078 * @param $zone DateTimeZone: Timezone of $ts
1079 * @todo handling of "o" format character for Iranian, Hebrew, Hijri & Thai?
1081 * @throws MWException
1084 function sprintfDate( $format, $ts, DateTimeZone
$zone = null ) {
1089 $dateTimeObj = false;
1098 if ( strlen( $ts ) !== 14 ) {
1099 throw new MWException( __METHOD__
. ": The timestamp $ts should have 14 characters" );
1102 if ( !ctype_digit( $ts ) ) {
1103 throw new MWException( __METHOD__
. ": The timestamp $ts should be a number" );
1106 for ( $p = 0; $p < strlen( $format ); $p++
) {
1108 $code = $format[$p];
1109 if ( $code == 'x' && $p < strlen( $format ) - 1 ) {
1110 $code .= $format[++
$p];
1113 if ( ( $code === 'xi' ||
$code == 'xj' ||
$code == 'xk' ||
$code == 'xm' ||
$code == 'xo' ||
$code == 'xt' ) && $p < strlen( $format ) - 1 ) {
1114 $code .= $format[++
$p];
1125 $rawToggle = !$rawToggle;
1134 $s .= $this->getMonthNameGen( substr( $ts, 4, 2 ) );
1138 $hebrew = self
::tsToHebrew( $ts );
1140 $s .= $this->getHebrewCalendarMonthNameGen( $hebrew[1] );
1143 $num = substr( $ts, 6, 2 );
1146 if ( !$dateTimeObj ) {
1147 $dateTimeObj = DateTime
::createFromFormat(
1148 'YmdHis', $ts, $zone ?
: new DateTimeZone( 'UTC' )
1151 $s .= $this->getWeekdayAbbreviation( $dateTimeObj->format( 'w' ) +
1 );
1154 $num = intval( substr( $ts, 6, 2 ) );
1158 $iranian = self
::tsToIranian( $ts );
1164 $hijri = self
::tsToHijri( $ts );
1170 $hebrew = self
::tsToHebrew( $ts );
1175 if ( !$dateTimeObj ) {
1176 $dateTimeObj = DateTime
::createFromFormat(
1177 'YmdHis', $ts, $zone ?
: new DateTimeZone( 'UTC' )
1180 $s .= $this->getWeekdayName( $dateTimeObj->format( 'w' ) +
1 );
1183 $s .= $this->getMonthName( substr( $ts, 4, 2 ) );
1187 $iranian = self
::tsToIranian( $ts );
1189 $s .= $this->getIranianCalendarMonthName( $iranian[1] );
1193 $hijri = self
::tsToHijri( $ts );
1195 $s .= $this->getHijriCalendarMonthName( $hijri[1] );
1199 $hebrew = self
::tsToHebrew( $ts );
1201 $s .= $this->getHebrewCalendarMonthName( $hebrew[1] );
1204 $num = substr( $ts, 4, 2 );
1207 $s .= $this->getMonthAbbreviation( substr( $ts, 4, 2 ) );
1210 $num = intval( substr( $ts, 4, 2 ) );
1214 $iranian = self
::tsToIranian( $ts );
1220 $hijri = self
::tsToHijri ( $ts );
1226 $hebrew = self
::tsToHebrew( $ts );
1232 $hebrew = self
::tsToHebrew( $ts );
1237 $num = substr( $ts, 0, 4 );
1241 $iranian = self
::tsToIranian( $ts );
1247 $hijri = self
::tsToHijri( $ts );
1253 $hebrew = self
::tsToHebrew( $ts );
1259 $thai = self
::tsToYear( $ts, 'thai' );
1265 $minguo = self
::tsToYear( $ts, 'minguo' );
1271 $tenno = self
::tsToYear( $ts, 'tenno' );
1276 $num = substr( $ts, 2, 2 );
1280 $iranian = self
::tsToIranian( $ts );
1282 $num = substr( $iranian[0], -2 );
1285 $s .= intval( substr( $ts, 8, 2 ) ) < 12 ?
'am' : 'pm';
1288 $s .= intval( substr( $ts, 8, 2 ) ) < 12 ?
'AM' : 'PM';
1291 $h = substr( $ts, 8, 2 );
1292 $num = $h %
12 ?
$h %
12 : 12;
1295 $num = intval( substr( $ts, 8, 2 ) );
1298 $h = substr( $ts, 8, 2 );
1299 $num = sprintf( '%02d', $h %
12 ?
$h %
12 : 12 );
1302 $num = substr( $ts, 8, 2 );
1305 $num = substr( $ts, 10, 2 );
1308 $num = substr( $ts, 12, 2 );
1316 // Pass through string from $dateTimeObj->format()
1317 if ( !$dateTimeObj ) {
1318 $dateTimeObj = DateTime
::createFromFormat(
1319 'YmdHis', $ts, $zone ?
: new DateTimeZone( 'UTC' )
1322 $s .= $dateTimeObj->format( $code );
1334 // Pass through number from $dateTimeObj->format()
1335 if ( !$dateTimeObj ) {
1336 $dateTimeObj = DateTime
::createFromFormat(
1337 'YmdHis', $ts, $zone ?
: new DateTimeZone( 'UTC' )
1340 $num = $dateTimeObj->format( $code );
1343 # Backslash escaping
1344 if ( $p < strlen( $format ) - 1 ) {
1345 $s .= $format[++
$p];
1352 if ( $p < strlen( $format ) - 1 ) {
1353 $endQuote = strpos( $format, '"', $p +
1 );
1354 if ( $endQuote === false ) {
1355 # No terminating quote, assume literal "
1358 $s .= substr( $format, $p +
1, $endQuote - $p - 1 );
1362 # Quote at end of string, assume literal "
1369 if ( $num !== false ) {
1370 if ( $rawToggle ||
$raw ) {
1373 } elseif ( $roman ) {
1374 $s .= Language
::romanNumeral( $num );
1376 } elseif ( $hebrewNum ) {
1377 $s .= self
::hebrewNumeral( $num );
1380 $s .= $this->formatNum( $num, true );
1387 private static $GREG_DAYS = array( 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 );
1388 private static $IRANIAN_DAYS = array( 31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29 );
1391 * Algorithm by Roozbeh Pournader and Mohammad Toossi to convert
1392 * Gregorian dates to Iranian dates. Originally written in C, it
1393 * is released under the terms of GNU Lesser General Public
1394 * License. Conversion to PHP was performed by Niklas Laxström.
1396 * Link: http://www.farsiweb.info/jalali/jalali.c
1402 private static function tsToIranian( $ts ) {
1403 $gy = substr( $ts, 0, 4 ) -1600;
1404 $gm = substr( $ts, 4, 2 ) -1;
1405 $gd = substr( $ts, 6, 2 ) -1;
1407 # Days passed from the beginning (including leap years)
1409 +
floor( ( $gy +
3 ) / 4 )
1410 - floor( ( $gy +
99 ) / 100 )
1411 +
floor( ( $gy +
399 ) / 400 );
1413 // Add days of the past months of this year
1414 for ( $i = 0; $i < $gm; $i++
) {
1415 $gDayNo +
= self
::$GREG_DAYS[$i];
1419 if ( $gm > 1 && ( ( $gy %
4 === 0 && $gy %
100 !== 0 ||
( $gy %
400 == 0 ) ) ) ) {
1423 // Days passed in current month
1424 $gDayNo +
= (int)$gd;
1426 $jDayNo = $gDayNo - 79;
1428 $jNp = floor( $jDayNo / 12053 );
1431 $jy = 979 +
33 * $jNp +
4 * floor( $jDayNo / 1461 );
1434 if ( $jDayNo >= 366 ) {
1435 $jy +
= floor( ( $jDayNo - 1 ) / 365 );
1436 $jDayNo = floor( ( $jDayNo - 1 ) %
365 );
1439 for ( $i = 0; $i < 11 && $jDayNo >= self
::$IRANIAN_DAYS[$i]; $i++
) {
1440 $jDayNo -= self
::$IRANIAN_DAYS[$i];
1446 return array( $jy, $jm, $jd );
1450 * Converting Gregorian dates to Hijri dates.
1452 * Based on a PHP-Nuke block by Sharjeel which is released under GNU/GPL license
1454 * @see http://phpnuke.org/modules.php?name=News&file=article&sid=8234&mode=thread&order=0&thold=0
1460 private static function tsToHijri( $ts ) {
1461 $year = substr( $ts, 0, 4 );
1462 $month = substr( $ts, 4, 2 );
1463 $day = substr( $ts, 6, 2 );
1471 ( $zy > 1582 ) ||
( ( $zy == 1582 ) && ( $zm > 10 ) ) ||
1472 ( ( $zy == 1582 ) && ( $zm == 10 ) && ( $zd > 14 ) )
1475 $zjd = (int)( ( 1461 * ( $zy +
4800 +
(int)( ( $zm - 14 ) / 12 ) ) ) / 4 ) +
1476 (int)( ( 367 * ( $zm - 2 - 12 * ( (int)( ( $zm - 14 ) / 12 ) ) ) ) / 12 ) -
1477 (int)( ( 3 * (int)( ( ( $zy +
4900 +
(int)( ( $zm - 14 ) / 12 ) ) / 100 ) ) ) / 4 ) +
1480 $zjd = 367 * $zy - (int)( ( 7 * ( $zy +
5001 +
(int)( ( $zm - 9 ) / 7 ) ) ) / 4 ) +
1481 (int)( ( 275 * $zm ) / 9 ) +
$zd +
1729777;
1484 $zl = $zjd -1948440 +
10632;
1485 $zn = (int)( ( $zl - 1 ) / 10631 );
1486 $zl = $zl - 10631 * $zn +
354;
1487 $zj = ( (int)( ( 10985 - $zl ) / 5316 ) ) * ( (int)( ( 50 * $zl ) / 17719 ) ) +
( (int)( $zl / 5670 ) ) * ( (int)( ( 43 * $zl ) / 15238 ) );
1488 $zl = $zl - ( (int)( ( 30 - $zj ) / 15 ) ) * ( (int)( ( 17719 * $zj ) / 50 ) ) - ( (int)( $zj / 16 ) ) * ( (int)( ( 15238 * $zj ) / 43 ) ) +
29;
1489 $zm = (int)( ( 24 * $zl ) / 709 );
1490 $zd = $zl - (int)( ( 709 * $zm ) / 24 );
1491 $zy = 30 * $zn +
$zj - 30;
1493 return array( $zy, $zm, $zd );
1497 * Converting Gregorian dates to Hebrew dates.
1499 * Based on a JavaScript code by Abu Mami and Yisrael Hersch
1500 * (abu-mami@kaluach.net, http://www.kaluach.net), who permitted
1501 * to translate the relevant functions into PHP and release them under
1504 * The months are counted from Tishrei = 1. In a leap year, Adar I is 13
1505 * and Adar II is 14. In a non-leap year, Adar is 6.
1511 private static function tsToHebrew( $ts ) {
1513 $year = substr( $ts, 0, 4 );
1514 $month = substr( $ts, 4, 2 );
1515 $day = substr( $ts, 6, 2 );
1517 # Calculate Hebrew year
1518 $hebrewYear = $year +
3760;
1520 # Month number when September = 1, August = 12
1522 if ( $month > 12 ) {
1529 # Calculate day of year from 1 September
1531 for ( $i = 1; $i < $month; $i++
) {
1535 # Check if the year is leap
1536 if ( $year %
400 == 0 ||
( $year %
4 == 0 && $year %
100 > 0 ) ) {
1539 } elseif ( $i == 8 ||
$i == 10 ||
$i == 1 ||
$i == 3 ) {
1546 # Calculate the start of the Hebrew year
1547 $start = self
::hebrewYearStart( $hebrewYear );
1549 # Calculate next year's start
1550 if ( $dayOfYear <= $start ) {
1551 # Day is before the start of the year - it is the previous year
1553 $nextStart = $start;
1557 # Add days since previous year's 1 September
1559 if ( ( $year %
400 == 0 ) ||
( $year %
100 != 0 && $year %
4 == 0 ) ) {
1563 # Start of the new (previous) year
1564 $start = self
::hebrewYearStart( $hebrewYear );
1567 $nextStart = self
::hebrewYearStart( $hebrewYear +
1 );
1570 # Calculate Hebrew day of year
1571 $hebrewDayOfYear = $dayOfYear - $start;
1573 # Difference between year's days
1574 $diff = $nextStart - $start;
1575 # Add 12 (or 13 for leap years) days to ignore the difference between
1576 # Hebrew and Gregorian year (353 at least vs. 365/6) - now the
1577 # difference is only about the year type
1578 if ( ( $year %
400 == 0 ) ||
( $year %
100 != 0 && $year %
4 == 0 ) ) {
1584 # Check the year pattern, and is leap year
1585 # 0 means an incomplete year, 1 means a regular year, 2 means a complete year
1586 # This is mod 30, to work on both leap years (which add 30 days of Adar I)
1587 # and non-leap years
1588 $yearPattern = $diff %
30;
1589 # Check if leap year
1590 $isLeap = $diff >= 30;
1592 # Calculate day in the month from number of day in the Hebrew year
1593 # Don't check Adar - if the day is not in Adar, we will stop before;
1594 # if it is in Adar, we will use it to check if it is Adar I or Adar II
1595 $hebrewDay = $hebrewDayOfYear;
1598 while ( $hebrewMonth <= 12 ) {
1599 # Calculate days in this month
1600 if ( $isLeap && $hebrewMonth == 6 ) {
1601 # Adar in a leap year
1603 # Leap year - has Adar I, with 30 days, and Adar II, with 29 days
1605 if ( $hebrewDay <= $days ) {
1609 # Subtract the days of Adar I
1610 $hebrewDay -= $days;
1613 if ( $hebrewDay <= $days ) {
1619 } elseif ( $hebrewMonth == 2 && $yearPattern == 2 ) {
1620 # Cheshvan in a complete year (otherwise as the rule below)
1622 } elseif ( $hebrewMonth == 3 && $yearPattern == 0 ) {
1623 # Kislev in an incomplete year (otherwise as the rule below)
1626 # Odd months have 30 days, even have 29
1627 $days = 30 - ( $hebrewMonth - 1 ) %
2;
1629 if ( $hebrewDay <= $days ) {
1630 # In the current month
1633 # Subtract the days of the current month
1634 $hebrewDay -= $days;
1635 # Try in the next month
1640 return array( $hebrewYear, $hebrewMonth, $hebrewDay, $days );
1644 * This calculates the Hebrew year start, as days since 1 September.
1645 * Based on Carl Friedrich Gauss algorithm for finding Easter date.
1646 * Used for Hebrew date.
1652 private static function hebrewYearStart( $year ) {
1653 $a = intval( ( 12 * ( $year - 1 ) +
17 ) %
19 );
1654 $b = intval( ( $year - 1 ) %
4 );
1655 $m = 32.044093161144 +
1.5542417966212 * $a +
$b / 4.0 - 0.0031777940220923 * ( $year - 1 );
1659 $Mar = intval( $m );
1665 $c = intval( ( $Mar +
3 * ( $year - 1 ) +
5 * $b +
5 ) %
7 );
1666 if ( $c == 0 && $a > 11 && $m >= 0.89772376543210 ) {
1668 } elseif ( $c == 1 && $a > 6 && $m >= 0.63287037037037 ) {
1670 } elseif ( $c == 2 ||
$c == 4 ||
$c == 6 ) {
1674 $Mar +
= intval( ( $year - 3761 ) / 100 ) - intval( ( $year - 3761 ) / 400 ) - 24;
1679 * Algorithm to convert Gregorian dates to Thai solar dates,
1680 * Minguo dates or Minguo dates.
1682 * Link: http://en.wikipedia.org/wiki/Thai_solar_calendar
1683 * http://en.wikipedia.org/wiki/Minguo_calendar
1684 * http://en.wikipedia.org/wiki/Japanese_era_name
1686 * @param $ts String: 14-character timestamp
1687 * @param $cName String: calender name
1688 * @return Array: converted year, month, day
1690 private static function tsToYear( $ts, $cName ) {
1691 $gy = substr( $ts, 0, 4 );
1692 $gm = substr( $ts, 4, 2 );
1693 $gd = substr( $ts, 6, 2 );
1695 if ( !strcmp( $cName, 'thai' ) ) {
1697 # Add 543 years to the Gregorian calendar
1698 # Months and days are identical
1699 $gy_offset = $gy +
543;
1700 } elseif ( ( !strcmp( $cName, 'minguo' ) ) ||
!strcmp( $cName, 'juche' ) ) {
1702 # Deduct 1911 years from the Gregorian calendar
1703 # Months and days are identical
1704 $gy_offset = $gy - 1911;
1705 } elseif ( !strcmp( $cName, 'tenno' ) ) {
1706 # Nengō dates up to Meiji period
1707 # Deduct years from the Gregorian calendar
1708 # depending on the nengo periods
1709 # Months and days are identical
1710 if ( ( $gy < 1912 ) ||
( ( $gy == 1912 ) && ( $gm < 7 ) ) ||
( ( $gy == 1912 ) && ( $gm == 7 ) && ( $gd < 31 ) ) ) {
1712 $gy_gannen = $gy - 1868 +
1;
1713 $gy_offset = $gy_gannen;
1714 if ( $gy_gannen == 1 ) {
1717 $gy_offset = '明治' . $gy_offset;
1719 ( ( $gy == 1912 ) && ( $gm == 7 ) && ( $gd == 31 ) ) ||
1720 ( ( $gy == 1912 ) && ( $gm >= 8 ) ) ||
1721 ( ( $gy > 1912 ) && ( $gy < 1926 ) ) ||
1722 ( ( $gy == 1926 ) && ( $gm < 12 ) ) ||
1723 ( ( $gy == 1926 ) && ( $gm == 12 ) && ( $gd < 26 ) )
1727 $gy_gannen = $gy - 1912 +
1;
1728 $gy_offset = $gy_gannen;
1729 if ( $gy_gannen == 1 ) {
1732 $gy_offset = '大正' . $gy_offset;
1734 ( ( $gy == 1926 ) && ( $gm == 12 ) && ( $gd >= 26 ) ) ||
1735 ( ( $gy > 1926 ) && ( $gy < 1989 ) ) ||
1736 ( ( $gy == 1989 ) && ( $gm == 1 ) && ( $gd < 8 ) )
1740 $gy_gannen = $gy - 1926 +
1;
1741 $gy_offset = $gy_gannen;
1742 if ( $gy_gannen == 1 ) {
1745 $gy_offset = '昭和' . $gy_offset;
1748 $gy_gannen = $gy - 1989 +
1;
1749 $gy_offset = $gy_gannen;
1750 if ( $gy_gannen == 1 ) {
1753 $gy_offset = '平成' . $gy_offset;
1759 return array( $gy_offset, $gm, $gd );
1763 * Roman number formatting up to 10000
1769 static function romanNumeral( $num ) {
1770 static $table = array(
1771 array( '', 'I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX', 'X' ),
1772 array( '', 'X', 'XX', 'XXX', 'XL', 'L', 'LX', 'LXX', 'LXXX', 'XC', 'C' ),
1773 array( '', 'C', 'CC', 'CCC', 'CD', 'D', 'DC', 'DCC', 'DCCC', 'CM', 'M' ),
1774 array( '', 'M', 'MM', 'MMM', 'MMMM', 'MMMMM', 'MMMMMM', 'MMMMMMM', 'MMMMMMMM', 'MMMMMMMMM', 'MMMMMMMMMM' )
1777 $num = intval( $num );
1778 if ( $num > 10000 ||
$num <= 0 ) {
1783 for ( $pow10 = 1000, $i = 3; $i >= 0; $pow10 /= 10, $i-- ) {
1784 if ( $num >= $pow10 ) {
1785 $s .= $table[$i][(int)floor( $num / $pow10 )];
1787 $num = $num %
$pow10;
1793 * Hebrew Gematria number formatting up to 9999
1799 static function hebrewNumeral( $num ) {
1800 static $table = array(
1801 array( '', 'א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז', 'ח', 'ט', 'י' ),
1802 array( '', 'י', 'כ', 'ל', 'מ', 'נ', 'ס', 'ע', 'פ', 'צ', 'ק' ),
1803 array( '', 'ק', 'ר', 'ש', 'ת', 'תק', 'תר', 'תש', 'תת', 'תתק', 'תתר' ),
1804 array( '', 'א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז', 'ח', 'ט', 'י' )
1807 $num = intval( $num );
1808 if ( $num > 9999 ||
$num <= 0 ) {
1813 for ( $pow10 = 1000, $i = 3; $i >= 0; $pow10 /= 10, $i-- ) {
1814 if ( $num >= $pow10 ) {
1815 if ( $num == 15 ||
$num == 16 ) {
1816 $s .= $table[0][9] . $table[0][$num - 9];
1819 $s .= $table[$i][intval( ( $num / $pow10 ) )];
1820 if ( $pow10 == 1000 ) {
1825 $num = $num %
$pow10;
1827 if ( strlen( $s ) == 2 ) {
1830 $str = substr( $s, 0, strlen( $s ) - 2 ) . '"';
1831 $str .= substr( $s, strlen( $s ) - 2, 2 );
1833 $start = substr( $str, 0, strlen( $str ) - 2 );
1834 $end = substr( $str, strlen( $str ) - 2 );
1837 $str = $start . 'ך';
1840 $str = $start . 'ם';
1843 $str = $start . 'ן';
1846 $str = $start . 'ף';
1849 $str = $start . 'ץ';
1856 * Used by date() and time() to adjust the time output.
1858 * @param $ts Int the time in date('YmdHis') format
1859 * @param $tz Mixed: adjust the time by this amount (default false, mean we
1860 * get user timecorrection setting)
1863 function userAdjust( $ts, $tz = false ) {
1864 global $wgUser, $wgLocalTZoffset;
1866 if ( $tz === false ) {
1867 $tz = $wgUser->getOption( 'timecorrection' );
1870 $data = explode( '|', $tz, 3 );
1872 if ( $data[0] == 'ZoneInfo' ) {
1873 wfSuppressWarnings();
1874 $userTZ = timezone_open( $data[2] );
1875 wfRestoreWarnings();
1876 if ( $userTZ !== false ) {
1877 $date = date_create( $ts, timezone_open( 'UTC' ) );
1878 date_timezone_set( $date, $userTZ );
1879 $date = date_format( $date, 'YmdHis' );
1882 # Unrecognized timezone, default to 'Offset' with the stored offset.
1883 $data[0] = 'Offset';
1887 if ( $data[0] == 'System' ||
$tz == '' ) {
1888 # Global offset in minutes.
1889 if ( isset( $wgLocalTZoffset ) ) {
1890 $minDiff = $wgLocalTZoffset;
1892 } elseif ( $data[0] == 'Offset' ) {
1893 $minDiff = intval( $data[1] );
1895 $data = explode( ':', $tz );
1896 if ( count( $data ) == 2 ) {
1897 $data[0] = intval( $data[0] );
1898 $data[1] = intval( $data[1] );
1899 $minDiff = abs( $data[0] ) * 60 +
$data[1];
1900 if ( $data[0] < 0 ) {
1901 $minDiff = -$minDiff;
1904 $minDiff = intval( $data[0] ) * 60;
1908 # No difference ? Return time unchanged
1909 if ( 0 == $minDiff ) {
1913 wfSuppressWarnings(); // E_STRICT system time bitching
1914 # Generate an adjusted date; take advantage of the fact that mktime
1915 # will normalize out-of-range values so we don't have to split $minDiff
1916 # into hours and minutes.
1918 (int)substr( $ts, 8, 2 ) ), # Hours
1919 (int)substr( $ts, 10, 2 ) +
$minDiff, # Minutes
1920 (int)substr( $ts, 12, 2 ), # Seconds
1921 (int)substr( $ts, 4, 2 ), # Month
1922 (int)substr( $ts, 6, 2 ), # Day
1923 (int)substr( $ts, 0, 4 ) ); # Year
1925 $date = date( 'YmdHis', $t );
1926 wfRestoreWarnings();
1932 * This is meant to be used by time(), date(), and timeanddate() to get
1933 * the date preference they're supposed to use, it should be used in
1937 * function timeanddate([...], $format = true) {
1938 * $datePreference = $this->dateFormat($format);
1943 * @param $usePrefs Mixed: if true, the user's preference is used
1944 * if false, the site/language default is used
1945 * if int/string, assumed to be a format.
1948 function dateFormat( $usePrefs = true ) {
1951 if ( is_bool( $usePrefs ) ) {
1953 $datePreference = $wgUser->getDatePreference();
1955 $datePreference = (string)User
::getDefaultOption( 'date' );
1958 $datePreference = (string)$usePrefs;
1962 if ( $datePreference == '' ) {
1966 return $datePreference;
1970 * Get a format string for a given type and preference
1971 * @param $type string May be date, time or both
1972 * @param $pref string The format name as it appears in Messages*.php
1974 * @since 1.22 New type 'pretty' that provides a more readable timestamp format
1978 function getDateFormatString( $type, $pref ) {
1979 if ( !isset( $this->dateFormatStrings
[$type][$pref] ) ) {
1980 if ( $pref == 'default' ) {
1981 $pref = $this->getDefaultDateFormat();
1982 $df = self
::$dataCache->getSubitem( $this->mCode
, 'dateFormats', "$pref $type" );
1984 $df = self
::$dataCache->getSubitem( $this->mCode
, 'dateFormats', "$pref $type" );
1986 if ( $type === 'pretty' && $df === null ) {
1987 $df = $this->getDateFormatString( 'date', $pref );
1990 if ( $df === null ) {
1991 $pref = $this->getDefaultDateFormat();
1992 $df = self
::$dataCache->getSubitem( $this->mCode
, 'dateFormats', "$pref $type" );
1995 $this->dateFormatStrings
[$type][$pref] = $df;
1997 return $this->dateFormatStrings
[$type][$pref];
2001 * @param $ts Mixed: the time format which needs to be turned into a
2002 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
2003 * @param $adj Bool: whether to adjust the time output according to the
2004 * user configured offset ($timecorrection)
2005 * @param $format Mixed: true to use user's date format preference
2006 * @param $timecorrection String|bool the time offset as returned by
2007 * validateTimeZone() in Special:Preferences
2010 function date( $ts, $adj = false, $format = true, $timecorrection = false ) {
2011 $ts = wfTimestamp( TS_MW
, $ts );
2013 $ts = $this->userAdjust( $ts, $timecorrection );
2015 $df = $this->getDateFormatString( 'date', $this->dateFormat( $format ) );
2016 return $this->sprintfDate( $df, $ts );
2020 * @param $ts Mixed: the time format which needs to be turned into a
2021 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
2022 * @param $adj Bool: whether to adjust the time output according to the
2023 * user configured offset ($timecorrection)
2024 * @param $format Mixed: true to use user's date format preference
2025 * @param $timecorrection String|bool the time offset as returned by
2026 * validateTimeZone() in Special:Preferences
2029 function time( $ts, $adj = false, $format = true, $timecorrection = false ) {
2030 $ts = wfTimestamp( TS_MW
, $ts );
2032 $ts = $this->userAdjust( $ts, $timecorrection );
2034 $df = $this->getDateFormatString( 'time', $this->dateFormat( $format ) );
2035 return $this->sprintfDate( $df, $ts );
2039 * @param $ts Mixed: the time format which needs to be turned into a
2040 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
2041 * @param $adj Bool: whether to adjust the time output according to the
2042 * user configured offset ($timecorrection)
2043 * @param $format Mixed: what format to return, if it's false output the
2044 * default one (default true)
2045 * @param $timecorrection String|bool the time offset as returned by
2046 * validateTimeZone() in Special:Preferences
2049 function timeanddate( $ts, $adj = false, $format = true, $timecorrection = false ) {
2050 $ts = wfTimestamp( TS_MW
, $ts );
2052 $ts = $this->userAdjust( $ts, $timecorrection );
2054 $df = $this->getDateFormatString( 'both', $this->dateFormat( $format ) );
2055 return $this->sprintfDate( $df, $ts );
2059 * Takes a number of seconds and turns it into a text using values such as hours and minutes.
2063 * @param integer $seconds The amount of seconds.
2064 * @param array $chosenIntervals The intervals to enable.
2068 public function formatDuration( $seconds, array $chosenIntervals = array() ) {
2069 $intervals = $this->getDurationIntervals( $seconds, $chosenIntervals );
2071 $segments = array();
2073 foreach ( $intervals as $intervalName => $intervalValue ) {
2074 $message = wfMessage( 'duration-' . $intervalName )->numParams( $intervalValue );
2075 $segments[] = $message->inLanguage( $this )->escaped();
2078 return $this->listToText( $segments );
2082 * Takes a number of seconds and returns an array with a set of corresponding intervals.
2083 * For example 65 will be turned into array( minutes => 1, seconds => 5 ).
2087 * @param integer $seconds The amount of seconds.
2088 * @param array $chosenIntervals The intervals to enable.
2092 public function getDurationIntervals( $seconds, array $chosenIntervals = array() ) {
2093 if ( empty( $chosenIntervals ) ) {
2094 $chosenIntervals = array( 'millennia', 'centuries', 'decades', 'years', 'days', 'hours', 'minutes', 'seconds' );
2097 $intervals = array_intersect_key( self
::$durationIntervals, array_flip( $chosenIntervals ) );
2098 $sortedNames = array_keys( $intervals );
2099 $smallestInterval = array_pop( $sortedNames );
2101 $segments = array();
2103 foreach ( $intervals as $name => $length ) {
2104 $value = floor( $seconds / $length );
2106 if ( $value > 0 ||
( $name == $smallestInterval && empty( $segments ) ) ) {
2107 $seconds -= $value * $length;
2108 $segments[$name] = $value;
2116 * Internal helper function for userDate(), userTime() and userTimeAndDate()
2118 * @param $type String: can be 'date', 'time' or 'both'
2119 * @param $ts Mixed: the time format which needs to be turned into a
2120 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
2121 * @param $user User object used to get preferences for timezone and format
2122 * @param $options Array, can contain the following keys:
2123 * - 'timecorrection': time correction, can have the following values:
2124 * - true: use user's preference
2125 * - false: don't use time correction
2126 * - integer: value of time correction in minutes
2127 * - 'format': format to use, can have the following values:
2128 * - true: use user's preference
2129 * - false: use default preference
2130 * - string: format to use
2134 private function internalUserTimeAndDate( $type, $ts, User
$user, array $options ) {
2135 $ts = wfTimestamp( TS_MW
, $ts );
2136 $options +
= array( 'timecorrection' => true, 'format' => true );
2137 if ( $options['timecorrection'] !== false ) {
2138 if ( $options['timecorrection'] === true ) {
2139 $offset = $user->getOption( 'timecorrection' );
2141 $offset = $options['timecorrection'];
2143 $ts = $this->userAdjust( $ts, $offset );
2145 if ( $options['format'] === true ) {
2146 $format = $user->getDatePreference();
2148 $format = $options['format'];
2150 $df = $this->getDateFormatString( $type, $this->dateFormat( $format ) );
2151 return $this->sprintfDate( $df, $ts );
2155 * Get the formatted date for the given timestamp and formatted for
2158 * @param $ts Mixed: the time format which needs to be turned into a
2159 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
2160 * @param $user User object used to get preferences for timezone and format
2161 * @param $options Array, can contain the following keys:
2162 * - 'timecorrection': time correction, can have the following values:
2163 * - true: use user's preference
2164 * - false: don't use time correction
2165 * - integer: value of time correction in minutes
2166 * - 'format': format to use, can have the following values:
2167 * - true: use user's preference
2168 * - false: use default preference
2169 * - string: format to use
2173 public function userDate( $ts, User
$user, array $options = array() ) {
2174 return $this->internalUserTimeAndDate( 'date', $ts, $user, $options );
2178 * Get the formatted time for the given timestamp and formatted for
2181 * @param $ts Mixed: the time format which needs to be turned into a
2182 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
2183 * @param $user User object used to get preferences for timezone and format
2184 * @param $options Array, can contain the following keys:
2185 * - 'timecorrection': time correction, can have the following values:
2186 * - true: use user's preference
2187 * - false: don't use time correction
2188 * - integer: value of time correction in minutes
2189 * - 'format': format to use, can have the following values:
2190 * - true: use user's preference
2191 * - false: use default preference
2192 * - string: format to use
2196 public function userTime( $ts, User
$user, array $options = array() ) {
2197 return $this->internalUserTimeAndDate( 'time', $ts, $user, $options );
2201 * Get the formatted date and time for the given timestamp and formatted for
2204 * @param $ts Mixed: the time format which needs to be turned into a
2205 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
2206 * @param $user User object used to get preferences for timezone and format
2207 * @param $options Array, can contain the following keys:
2208 * - 'timecorrection': time correction, can have the following values:
2209 * - true: use user's preference
2210 * - false: don't use time correction
2211 * - integer: value of time correction in minutes
2212 * - 'format': format to use, can have the following values:
2213 * - true: use user's preference
2214 * - false: use default preference
2215 * - string: format to use
2219 public function userTimeAndDate( $ts, User
$user, array $options = array() ) {
2220 return $this->internalUserTimeAndDate( 'both', $ts, $user, $options );
2224 * Convert an MWTimestamp into a pretty human-readable timestamp using
2225 * the given user preferences and relative base time.
2227 * DO NOT USE THIS FUNCTION DIRECTLY. Instead, call MWTimestamp::getHumanTimestamp
2228 * on your timestamp object, which will then call this function. Calling
2229 * this function directly will cause hooks to be skipped over.
2231 * @see MWTimestamp::getHumanTimestamp
2232 * @param MWTimestamp $ts Timestamp to prettify
2233 * @param MWTimestamp $relativeTo Base timestamp
2234 * @param User $user User preferences to use
2235 * @return string Human timestamp
2238 public function getHumanTimestamp( MWTimestamp
$ts, MWTimestamp
$relativeTo, User
$user ) {
2239 $diff = $ts->diff( $relativeTo );
2240 $diffDay = (bool)( (int)$ts->timestamp
->format( 'w' ) - (int)$relativeTo->timestamp
->format( 'w' ) );
2241 $days = $diff->days ?
: (int)$diffDay;
2242 if ( $diff->invert ||
$days > 5 && $ts->timestamp
->format( 'Y' ) !== $relativeTo->timestamp
->format( 'Y' ) ) {
2243 // Timestamps are in different years: use full timestamp
2244 // Also do full timestamp for future dates
2246 * @FIXME Add better handling of future timestamps.
2248 $format = $this->getDateFormatString( 'both', $user->getDatePreference() ?
: 'default' );
2249 $ts = $this->sprintfDate( $format, $ts->getTimestamp( TS_MW
) );
2250 } elseif ( $days > 5 ) {
2251 // Timestamps are in same year, but more than 5 days ago: show day and month only.
2252 $format = $this->getDateFormatString( 'pretty', $user->getDatePreference() ?
: 'default' );
2253 $ts = $this->sprintfDate( $format, $ts->getTimestamp( TS_MW
) );
2254 } elseif ( $days > 1 ) {
2255 // Timestamp within the past week: show the day of the week and time
2256 $format = $this->getDateFormatString( 'time', $user->getDatePreference() ?
: 'default' );
2257 $weekday = self
::$mWeekdayMsgs[$ts->timestamp
->format( 'w' )];
2258 $ts = wfMessage( "$weekday-at" )
2259 ->inLanguage( $this )
2260 ->params( $this->sprintfDate( $format, $ts->getTimestamp( TS_MW
) ) )
2262 } elseif ( $days == 1 ) {
2263 // Timestamp was yesterday: say 'yesterday' and the time.
2264 $format = $this->getDateFormatString( 'time', $user->getDatePreference() ?
: 'default' );
2265 $ts = wfMessage( 'yesterday-at' )
2266 ->inLanguage( $this )
2267 ->params( $this->sprintfDate( $format, $ts->getTimestamp( TS_MW
) ) )
2269 } elseif ( $diff->h
> 1 ||
$diff->h
== 1 && $diff->i
> 30 ) {
2270 // Timestamp was today, but more than 90 minutes ago: say 'today' and the time.
2271 $format = $this->getDateFormatString( 'time', $user->getDatePreference() ?
: 'default' );
2272 $ts = wfMessage( 'today-at' )
2273 ->inLanguage( $this )
2274 ->params( $this->sprintfDate( $format, $ts->getTimestamp( TS_MW
) ) )
2277 // From here on in, the timestamp was soon enough ago so that we can simply say
2278 // XX units ago, e.g., "2 hours ago" or "5 minutes ago"
2279 } elseif ( $diff->h
== 1 ) {
2280 // Less than 90 minutes, but more than an hour ago.
2281 $ts = wfMessage( 'hours-ago' )->inLanguage( $this )->numParams( 1 )->text();
2282 } elseif ( $diff->i
>= 1 ) {
2283 // A few minutes ago.
2284 $ts = wfMessage( 'minutes-ago' )->inLanguage( $this )->numParams( $diff->i
)->text();
2285 } elseif ( $diff->s
>= 30 ) {
2286 // Less than a minute, but more than 30 sec ago.
2287 $ts = wfMessage( 'seconds-ago' )->inLanguage( $this )->numParams( $diff->s
)->text();
2289 // Less than 30 seconds ago.
2290 $ts = wfMessage( 'just-now' )->text();
2297 * @param $key string
2298 * @return array|null
2300 function getMessage( $key ) {
2301 return self
::$dataCache->getSubitem( $this->mCode
, 'messages', $key );
2307 function getAllMessages() {
2308 return self
::$dataCache->getItem( $this->mCode
, 'messages' );
2317 function iconv( $in, $out, $string ) {
2318 # This is a wrapper for iconv in all languages except esperanto,
2319 # which does some nasty x-conversions beforehand
2321 # Even with //IGNORE iconv can whine about illegal characters in
2322 # *input* string. We just ignore those too.
2323 # REF: http://bugs.php.net/bug.php?id=37166
2324 # REF: https://bugzilla.wikimedia.org/show_bug.cgi?id=16885
2325 wfSuppressWarnings();
2326 $text = iconv( $in, $out . '//IGNORE', $string );
2327 wfRestoreWarnings();
2331 // callback functions for uc(), lc(), ucwords(), ucwordbreaks()
2334 * @param $matches array
2335 * @return mixed|string
2337 function ucwordbreaksCallbackAscii( $matches ) {
2338 return $this->ucfirst( $matches[1] );
2342 * @param $matches array
2345 function ucwordbreaksCallbackMB( $matches ) {
2346 return mb_strtoupper( $matches[0] );
2350 * @param $matches array
2353 function ucCallback( $matches ) {
2354 list( $wikiUpperChars ) = self
::getCaseMaps();
2355 return strtr( $matches[1], $wikiUpperChars );
2359 * @param $matches array
2362 function lcCallback( $matches ) {
2363 list( , $wikiLowerChars ) = self
::getCaseMaps();
2364 return strtr( $matches[1], $wikiLowerChars );
2368 * @param $matches array
2371 function ucwordsCallbackMB( $matches ) {
2372 return mb_strtoupper( $matches[0] );
2376 * @param $matches array
2379 function ucwordsCallbackWiki( $matches ) {
2380 list( $wikiUpperChars ) = self
::getCaseMaps();
2381 return strtr( $matches[0], $wikiUpperChars );
2385 * Make a string's first character uppercase
2387 * @param $str string
2391 function ucfirst( $str ) {
2393 if ( $o < 96 ) { // if already uppercase...
2395 } elseif ( $o < 128 ) {
2396 return ucfirst( $str ); // use PHP's ucfirst()
2398 // fall back to more complex logic in case of multibyte strings
2399 return $this->uc( $str, true );
2404 * Convert a string to uppercase
2406 * @param $str string
2407 * @param $first bool
2411 function uc( $str, $first = false ) {
2412 if ( function_exists( 'mb_strtoupper' ) ) {
2414 if ( $this->isMultibyte( $str ) ) {
2415 return mb_strtoupper( mb_substr( $str, 0, 1 ) ) . mb_substr( $str, 1 );
2417 return ucfirst( $str );
2420 return $this->isMultibyte( $str ) ?
mb_strtoupper( $str ) : strtoupper( $str );
2423 if ( $this->isMultibyte( $str ) ) {
2424 $x = $first ?
'^' : '';
2425 return preg_replace_callback(
2426 "/$x([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/",
2427 array( $this, 'ucCallback' ),
2431 return $first ?
ucfirst( $str ) : strtoupper( $str );
2437 * @param $str string
2438 * @return mixed|string
2440 function lcfirst( $str ) {
2443 return strval( $str );
2444 } elseif ( $o >= 128 ) {
2445 return $this->lc( $str, true );
2446 } elseif ( $o > 96 ) {
2449 $str[0] = strtolower( $str[0] );
2455 * @param $str string
2456 * @param $first bool
2457 * @return mixed|string
2459 function lc( $str, $first = false ) {
2460 if ( function_exists( 'mb_strtolower' ) ) {
2462 if ( $this->isMultibyte( $str ) ) {
2463 return mb_strtolower( mb_substr( $str, 0, 1 ) ) . mb_substr( $str, 1 );
2465 return strtolower( substr( $str, 0, 1 ) ) . substr( $str, 1 );
2468 return $this->isMultibyte( $str ) ?
mb_strtolower( $str ) : strtolower( $str );
2471 if ( $this->isMultibyte( $str ) ) {
2472 $x = $first ?
'^' : '';
2473 return preg_replace_callback(
2474 "/$x([A-Z]|[\\xc0-\\xff][\\x80-\\xbf]*)/",
2475 array( $this, 'lcCallback' ),
2479 return $first ?
strtolower( substr( $str, 0, 1 ) ) . substr( $str, 1 ) : strtolower( $str );
2485 * @param $str string
2488 function isMultibyte( $str ) {
2489 return (bool)preg_match( '/[\x80-\xff]/', $str );
2493 * @param $str string
2494 * @return mixed|string
2496 function ucwords( $str ) {
2497 if ( $this->isMultibyte( $str ) ) {
2498 $str = $this->lc( $str );
2500 // regexp to find first letter in each word (i.e. after each space)
2501 $replaceRegexp = "/^([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)| ([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/";
2503 // function to use to capitalize a single char
2504 if ( function_exists( 'mb_strtoupper' ) ) {
2505 return preg_replace_callback(
2507 array( $this, 'ucwordsCallbackMB' ),
2511 return preg_replace_callback(
2513 array( $this, 'ucwordsCallbackWiki' ),
2518 return ucwords( strtolower( $str ) );
2523 * capitalize words at word breaks
2525 * @param $str string
2528 function ucwordbreaks( $str ) {
2529 if ( $this->isMultibyte( $str ) ) {
2530 $str = $this->lc( $str );
2532 // since \b doesn't work for UTF-8, we explicitely define word break chars
2533 $breaks = "[ \-\(\)\}\{\.,\?!]";
2535 // find first letter after word break
2536 $replaceRegexp = "/^([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)|$breaks([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/";
2538 if ( function_exists( 'mb_strtoupper' ) ) {
2539 return preg_replace_callback(
2541 array( $this, 'ucwordbreaksCallbackMB' ),
2545 return preg_replace_callback(
2547 array( $this, 'ucwordsCallbackWiki' ),
2552 return preg_replace_callback(
2553 '/\b([\w\x80-\xff]+)\b/',
2554 array( $this, 'ucwordbreaksCallbackAscii' ),
2561 * Return a case-folded representation of $s
2563 * This is a representation such that caseFold($s1)==caseFold($s2) if $s1
2564 * and $s2 are the same except for the case of their characters. It is not
2565 * necessary for the value returned to make sense when displayed.
2567 * Do *not* perform any other normalisation in this function. If a caller
2568 * uses this function when it should be using a more general normalisation
2569 * function, then fix the caller.
2575 function caseFold( $s ) {
2576 return $this->uc( $s );
2583 function checkTitleEncoding( $s ) {
2584 if ( is_array( $s ) ) {
2585 wfDebugDieBacktrace( 'Given array to checkTitleEncoding.' );
2587 if ( StringUtils
::isUtf8( $s ) ) {
2591 return $this->iconv( $this->fallback8bitEncoding(), 'utf-8', $s );
2597 function fallback8bitEncoding() {
2598 return self
::$dataCache->getItem( $this->mCode
, 'fallback8bitEncoding' );
2602 * Most writing systems use whitespace to break up words.
2603 * Some languages such as Chinese don't conventionally do this,
2604 * which requires special handling when breaking up words for
2609 function hasWordBreaks() {
2614 * Some languages such as Chinese require word segmentation,
2615 * Specify such segmentation when overridden in derived class.
2617 * @param $string String
2620 function segmentByWord( $string ) {
2625 * Some languages have special punctuation need to be normalized.
2626 * Make such changes here.
2628 * @param $string String
2631 function normalizeForSearch( $string ) {
2632 return self
::convertDoubleWidth( $string );
2636 * convert double-width roman characters to single-width.
2637 * range: ff00-ff5f ~= 0020-007f
2639 * @param $string string
2643 protected static function convertDoubleWidth( $string ) {
2644 static $full = null;
2645 static $half = null;
2647 if ( $full === null ) {
2648 $fullWidth = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
2649 $halfWidth = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
2650 $full = str_split( $fullWidth, 3 );
2651 $half = str_split( $halfWidth );
2654 $string = str_replace( $full, $half, $string );
2659 * @param $string string
2660 * @param $pattern string
2663 protected static function insertSpace( $string, $pattern ) {
2664 $string = preg_replace( $pattern, " $1 ", $string );
2665 $string = preg_replace( '/ +/', ' ', $string );
2670 * @param $termsArray array
2673 function convertForSearchResult( $termsArray ) {
2674 # some languages, e.g. Chinese, need to do a conversion
2675 # in order for search results to be displayed correctly
2680 * Get the first character of a string.
2685 function firstChar( $s ) {
2688 '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
2689 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})/',
2694 if ( isset( $matches[1] ) ) {
2695 if ( strlen( $matches[1] ) != 3 ) {
2699 // Break down Hangul syllables to grab the first jamo
2700 $code = utf8ToCodepoint( $matches[1] );
2701 if ( $code < 0xac00 ||
0xd7a4 <= $code ) {
2703 } elseif ( $code < 0xb098 ) {
2704 return "\xe3\x84\xb1";
2705 } elseif ( $code < 0xb2e4 ) {
2706 return "\xe3\x84\xb4";
2707 } elseif ( $code < 0xb77c ) {
2708 return "\xe3\x84\xb7";
2709 } elseif ( $code < 0xb9c8 ) {
2710 return "\xe3\x84\xb9";
2711 } elseif ( $code < 0xbc14 ) {
2712 return "\xe3\x85\x81";
2713 } elseif ( $code < 0xc0ac ) {
2714 return "\xe3\x85\x82";
2715 } elseif ( $code < 0xc544 ) {
2716 return "\xe3\x85\x85";
2717 } elseif ( $code < 0xc790 ) {
2718 return "\xe3\x85\x87";
2719 } elseif ( $code < 0xcc28 ) {
2720 return "\xe3\x85\x88";
2721 } elseif ( $code < 0xce74 ) {
2722 return "\xe3\x85\x8a";
2723 } elseif ( $code < 0xd0c0 ) {
2724 return "\xe3\x85\x8b";
2725 } elseif ( $code < 0xd30c ) {
2726 return "\xe3\x85\x8c";
2727 } elseif ( $code < 0xd558 ) {
2728 return "\xe3\x85\x8d";
2730 return "\xe3\x85\x8e";
2737 function initEncoding() {
2738 # Some languages may have an alternate char encoding option
2739 # (Esperanto X-coding, Japanese furigana conversion, etc)
2740 # If this language is used as the primary content language,
2741 # an override to the defaults can be set here on startup.
2748 function recodeForEdit( $s ) {
2749 # For some languages we'll want to explicitly specify
2750 # which characters make it into the edit box raw
2751 # or are converted in some way or another.
2752 global $wgEditEncoding;
2753 if ( $wgEditEncoding == '' ||
$wgEditEncoding == 'UTF-8' ) {
2756 return $this->iconv( 'UTF-8', $wgEditEncoding, $s );
2764 function recodeInput( $s ) {
2765 # Take the previous into account.
2766 global $wgEditEncoding;
2767 if ( $wgEditEncoding != '' ) {
2768 $enc = $wgEditEncoding;
2772 if ( $enc == 'UTF-8' ) {
2775 return $this->iconv( $enc, 'UTF-8', $s );
2780 * Convert a UTF-8 string to normal form C. In Malayalam and Arabic, this
2781 * also cleans up certain backwards-compatible sequences, converting them
2782 * to the modern Unicode equivalent.
2784 * This is language-specific for performance reasons only.
2790 function normalize( $s ) {
2791 global $wgAllUnicodeFixes;
2792 $s = UtfNormal
::cleanUp( $s );
2793 if ( $wgAllUnicodeFixes ) {
2794 $s = $this->transformUsingPairFile( 'normalize-ar.ser', $s );
2795 $s = $this->transformUsingPairFile( 'normalize-ml.ser', $s );
2802 * Transform a string using serialized data stored in the given file (which
2803 * must be in the serialized subdirectory of $IP). The file contains pairs
2804 * mapping source characters to destination characters.
2806 * The data is cached in process memory. This will go faster if you have the
2807 * FastStringSearch extension.
2809 * @param $file string
2810 * @param $string string
2812 * @throws MWException
2815 function transformUsingPairFile( $file, $string ) {
2816 if ( !isset( $this->transformData
[$file] ) ) {
2817 $data = wfGetPrecompiledData( $file );
2818 if ( $data === false ) {
2819 throw new MWException( __METHOD__
. ": The transformation file $file is missing" );
2821 $this->transformData
[$file] = new ReplacementArray( $data );
2823 return $this->transformData
[$file]->replace( $string );
2827 * For right-to-left language support
2832 return self
::$dataCache->getItem( $this->mCode
, 'rtl' );
2836 * Return the correct HTML 'dir' attribute value for this language.
2840 return $this->isRTL() ?
'rtl' : 'ltr';
2844 * Return 'left' or 'right' as appropriate alignment for line-start
2845 * for this language's text direction.
2847 * Should be equivalent to CSS3 'start' text-align value....
2851 function alignStart() {
2852 return $this->isRTL() ?
'right' : 'left';
2856 * Return 'right' or 'left' as appropriate alignment for line-end
2857 * for this language's text direction.
2859 * Should be equivalent to CSS3 'end' text-align value....
2863 function alignEnd() {
2864 return $this->isRTL() ?
'left' : 'right';
2868 * A hidden direction mark (LRM or RLM), depending on the language direction.
2869 * Unlike getDirMark(), this function returns the character as an HTML entity.
2870 * This function should be used when the output is guaranteed to be HTML,
2871 * because it makes the output HTML source code more readable. When
2872 * the output is plain text or can be escaped, getDirMark() should be used.
2874 * @param $opposite Boolean Get the direction mark opposite to your language
2878 function getDirMarkEntity( $opposite = false ) {
2880 return $this->isRTL() ?
'‎' : '‏';
2882 return $this->isRTL() ?
'‏' : '‎';
2886 * A hidden direction mark (LRM or RLM), depending on the language direction.
2887 * This function produces them as invisible Unicode characters and
2888 * the output may be hard to read and debug, so it should only be used
2889 * when the output is plain text or can be escaped. When the output is
2890 * HTML, use getDirMarkEntity() instead.
2892 * @param $opposite Boolean Get the direction mark opposite to your language
2895 function getDirMark( $opposite = false ) {
2896 $lrm = "\xE2\x80\x8E"; # LEFT-TO-RIGHT MARK, commonly abbreviated LRM
2897 $rlm = "\xE2\x80\x8F"; # RIGHT-TO-LEFT MARK, commonly abbreviated RLM
2899 return $this->isRTL() ?
$lrm : $rlm;
2901 return $this->isRTL() ?
$rlm : $lrm;
2907 function capitalizeAllNouns() {
2908 return self
::$dataCache->getItem( $this->mCode
, 'capitalizeAllNouns' );
2912 * An arrow, depending on the language direction.
2914 * @param $direction String: the direction of the arrow: forwards (default), backwards, left, right, up, down.
2917 function getArrow( $direction = 'forwards' ) {
2918 switch ( $direction ) {
2920 return $this->isRTL() ?
'←' : '→';
2922 return $this->isRTL() ?
'→' : '←';
2935 * To allow "foo[[bar]]" to extend the link over the whole word "foobar"
2939 function linkPrefixExtension() {
2940 return self
::$dataCache->getItem( $this->mCode
, 'linkPrefixExtension' );
2946 function getMagicWords() {
2947 return self
::$dataCache->getItem( $this->mCode
, 'magicWords' );
2950 protected function doMagicHook() {
2951 if ( $this->mMagicHookDone
) {
2954 $this->mMagicHookDone
= true;
2955 wfProfileIn( 'LanguageGetMagic' );
2956 wfRunHooks( 'LanguageGetMagic', array( &$this->mMagicExtensions
, $this->getCode() ) );
2957 wfProfileOut( 'LanguageGetMagic' );
2961 * Fill a MagicWord object with data from here
2965 function getMagic( $mw ) {
2966 $this->doMagicHook();
2968 if ( isset( $this->mMagicExtensions
[$mw->mId
] ) ) {
2969 $rawEntry = $this->mMagicExtensions
[$mw->mId
];
2971 $magicWords = $this->getMagicWords();
2972 if ( isset( $magicWords[$mw->mId
] ) ) {
2973 $rawEntry = $magicWords[$mw->mId
];
2979 if ( !is_array( $rawEntry ) ) {
2980 error_log( "\"$rawEntry\" is not a valid magic word for \"$mw->mId\"" );
2982 $mw->mCaseSensitive
= $rawEntry[0];
2983 $mw->mSynonyms
= array_slice( $rawEntry, 1 );
2988 * Add magic words to the extension array
2990 * @param $newWords array
2992 function addMagicWordsByLang( $newWords ) {
2993 $fallbackChain = $this->getFallbackLanguages();
2994 $fallbackChain = array_reverse( $fallbackChain );
2995 foreach ( $fallbackChain as $code ) {
2996 if ( isset( $newWords[$code] ) ) {
2997 $this->mMagicExtensions
= $newWords[$code] +
$this->mMagicExtensions
;
3003 * Get special page names, as an associative array
3004 * case folded alias => real name
3006 function getSpecialPageAliases() {
3007 // Cache aliases because it may be slow to load them
3008 if ( is_null( $this->mExtendedSpecialPageAliases
) ) {
3010 $this->mExtendedSpecialPageAliases
=
3011 self
::$dataCache->getItem( $this->mCode
, 'specialPageAliases' );
3012 wfRunHooks( 'LanguageGetSpecialPageAliases',
3013 array( &$this->mExtendedSpecialPageAliases
, $this->getCode() ) );
3016 return $this->mExtendedSpecialPageAliases
;
3020 * Italic is unsuitable for some languages
3022 * @param $text String: the text to be emphasized.
3025 function emphasize( $text ) {
3026 return "<em>$text</em>";
3030 * Normally we output all numbers in plain en_US style, that is
3031 * 293,291.235 for twohundredninetythreethousand-twohundredninetyone
3032 * point twohundredthirtyfive. However this is not suitable for all
3033 * languages, some such as Pakaran want ੨੯੩,੨੯੫.੨੩੫ and others such as
3034 * Icelandic just want to use commas instead of dots, and dots instead
3035 * of commas like "293.291,235".
3037 * An example of this function being called:
3039 * wfMessage( 'message' )->numParams( $num )->text()
3042 * See LanguageGu.php for the Gujarati implementation and
3043 * $separatorTransformTable on MessageIs.php for
3044 * the , => . and . => , implementation.
3046 * @todo check if it's viable to use localeconv() for the decimal
3048 * @param $number Mixed: the string to be formatted, should be an integer
3049 * or a floating point number.
3050 * @param $nocommafy Bool: set to true for special numbers like dates
3053 public function formatNum( $number, $nocommafy = false ) {
3054 global $wgTranslateNumerals;
3055 if ( !$nocommafy ) {
3056 $number = $this->commafy( $number );
3057 $s = $this->separatorTransformTable();
3059 $number = strtr( $number, $s );
3063 if ( $wgTranslateNumerals ) {
3064 $s = $this->digitTransformTable();
3066 $number = strtr( $number, $s );
3074 * Front-end for non-commafied formatNum
3076 * @param mixed $number the string to be formatted, should be an integer
3077 * or a floating point number.
3081 public function formatNumNoSeparators( $number ) {
3082 return $this->formatNum( $number, true );
3086 * @param $number string
3089 function parseFormattedNumber( $number ) {
3090 $s = $this->digitTransformTable();
3092 $number = strtr( $number, array_flip( $s ) );
3095 $s = $this->separatorTransformTable();
3097 $number = strtr( $number, array_flip( $s ) );
3100 $number = strtr( $number, array( ',' => '' ) );
3105 * Adds commas to a given number
3107 * @param $number mixed
3110 function commafy( $number ) {
3111 $digitGroupingPattern = $this->digitGroupingPattern();
3112 if ( $number === null ) {
3116 if ( !$digitGroupingPattern ||
$digitGroupingPattern === "###,###,###" ) {
3117 // default grouping is at thousands, use the same for ###,###,### pattern too.
3118 return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $number ) ) );
3120 // Ref: http://cldr.unicode.org/translation/number-patterns
3122 if ( intval( $number ) < 0 ) {
3123 // For negative numbers apply the algorithm like positive number and add sign.
3125 $number = substr( $number, 1 );
3127 $integerPart = array();
3128 $decimalPart = array();
3129 $numMatches = preg_match_all( "/(#+)/", $digitGroupingPattern, $matches );
3130 preg_match( "/\d+/", $number, $integerPart );
3131 preg_match( "/\.\d*/", $number, $decimalPart );
3132 $groupedNumber = ( count( $decimalPart ) > 0 ) ?
$decimalPart[0] : "";
3133 if ( $groupedNumber === $number ) {
3134 // the string does not have any number part. Eg: .12345
3135 return $sign . $groupedNumber;
3137 $start = $end = strlen( $integerPart[0] );
3138 while ( $start > 0 ) {
3139 $match = $matches[0][$numMatches - 1];
3140 $matchLen = strlen( $match );
3141 $start = $end - $matchLen;
3145 $groupedNumber = substr( $number, $start, $end -$start ) . $groupedNumber;
3147 if ( $numMatches > 1 ) {
3148 // use the last pattern for the rest of the number
3152 $groupedNumber = "," . $groupedNumber;
3155 return $sign . $groupedNumber;
3162 function digitGroupingPattern() {
3163 return self
::$dataCache->getItem( $this->mCode
, 'digitGroupingPattern' );
3169 function digitTransformTable() {
3170 return self
::$dataCache->getItem( $this->mCode
, 'digitTransformTable' );
3176 function separatorTransformTable() {
3177 return self
::$dataCache->getItem( $this->mCode
, 'separatorTransformTable' );
3181 * Take a list of strings and build a locale-friendly comma-separated
3182 * list, using the local comma-separator message.
3183 * The last two strings are chained with an "and".
3184 * NOTE: This function will only work with standard numeric array keys (0, 1, 2…)
3189 function listToText( array $l ) {
3190 $m = count( $l ) - 1;
3195 $and = $this->getMessageFromDB( 'and' );
3196 $space = $this->getMessageFromDB( 'word-separator' );
3198 $comma = $this->getMessageFromDB( 'comma-separator' );
3202 for ( $i = $m - 1; $i >= 0; $i-- ) {
3203 if ( $i == $m - 1 ) {
3204 $s = $l[$i] . $and . $space . $s;
3206 $s = $l[$i] . $comma . $s;
3213 * Take a list of strings and build a locale-friendly comma-separated
3214 * list, using the local comma-separator message.
3215 * @param $list array of strings to put in a comma list
3218 function commaList( array $list ) {
3220 wfMessage( 'comma-separator' )->inLanguage( $this )->escaped(),
3226 * Take a list of strings and build a locale-friendly semicolon-separated
3227 * list, using the local semicolon-separator message.
3228 * @param $list array of strings to put in a semicolon list
3231 function semicolonList( array $list ) {
3233 wfMessage( 'semicolon-separator' )->inLanguage( $this )->escaped(),
3239 * Same as commaList, but separate it with the pipe instead.
3240 * @param $list array of strings to put in a pipe list
3243 function pipeList( array $list ) {
3245 wfMessage( 'pipe-separator' )->inLanguage( $this )->escaped(),
3251 * Truncate a string to a specified length in bytes, appending an optional
3252 * string (e.g. for ellipses)
3254 * The database offers limited byte lengths for some columns in the database;
3255 * multi-byte character sets mean we need to ensure that only whole characters
3256 * are included, otherwise broken characters can be passed to the user
3258 * If $length is negative, the string will be truncated from the beginning
3260 * @param $string String to truncate
3261 * @param $length Int: maximum length (including ellipses)
3262 * @param $ellipsis String to append to the truncated text
3263 * @param $adjustLength Boolean: Subtract length of ellipsis from $length.
3264 * $adjustLength was introduced in 1.18, before that behaved as if false.
3267 function truncate( $string, $length, $ellipsis = '...', $adjustLength = true ) {
3268 # Use the localized ellipsis character
3269 if ( $ellipsis == '...' ) {
3270 $ellipsis = wfMessage( 'ellipsis' )->inLanguage( $this )->escaped();
3272 # Check if there is no need to truncate
3273 if ( $length == 0 ) {
3274 return $ellipsis; // convention
3275 } elseif ( strlen( $string ) <= abs( $length ) ) {
3276 return $string; // no need to truncate
3278 $stringOriginal = $string;
3279 # If ellipsis length is >= $length then we can't apply $adjustLength
3280 if ( $adjustLength && strlen( $ellipsis ) >= abs( $length ) ) {
3281 $string = $ellipsis; // this can be slightly unexpected
3282 # Otherwise, truncate and add ellipsis...
3284 $eLength = $adjustLength ?
strlen( $ellipsis ) : 0;
3285 if ( $length > 0 ) {
3286 $length -= $eLength;
3287 $string = substr( $string, 0, $length ); // xyz...
3288 $string = $this->removeBadCharLast( $string );
3289 $string = $string . $ellipsis;
3291 $length +
= $eLength;
3292 $string = substr( $string, $length ); // ...xyz
3293 $string = $this->removeBadCharFirst( $string );
3294 $string = $ellipsis . $string;
3297 # Do not truncate if the ellipsis makes the string longer/equal (bug 22181).
3298 # This check is *not* redundant if $adjustLength, due to the single case where
3299 # LEN($ellipsis) > ABS($limit arg); $stringOriginal could be shorter than $string.
3300 if ( strlen( $string ) < strlen( $stringOriginal ) ) {
3303 return $stringOriginal;
3308 * Remove bytes that represent an incomplete Unicode character
3309 * at the end of string (e.g. bytes of the char are missing)
3311 * @param $string String
3314 protected function removeBadCharLast( $string ) {
3315 if ( $string != '' ) {
3316 $char = ord( $string[strlen( $string ) - 1] );
3318 if ( $char >= 0xc0 ) {
3319 # We got the first byte only of a multibyte char; remove it.
3320 $string = substr( $string, 0, -1 );
3321 } elseif ( $char >= 0x80 &&
3322 preg_match( '/^(.*)(?:[\xe0-\xef][\x80-\xbf]|' .
3323 '[\xf0-\xf7][\x80-\xbf]{1,2})$/', $string, $m )
3325 # We chopped in the middle of a character; remove it
3333 * Remove bytes that represent an incomplete Unicode character
3334 * at the start of string (e.g. bytes of the char are missing)
3336 * @param $string String
3339 protected function removeBadCharFirst( $string ) {
3340 if ( $string != '' ) {
3341 $char = ord( $string[0] );
3342 if ( $char >= 0x80 && $char < 0xc0 ) {
3343 # We chopped in the middle of a character; remove the whole thing
3344 $string = preg_replace( '/^[\x80-\xbf]+/', '', $string );
3351 * Truncate a string of valid HTML to a specified length in bytes,
3352 * appending an optional string (e.g. for ellipses), and return valid HTML
3354 * This is only intended for styled/linked text, such as HTML with
3355 * tags like <span> and <a>, were the tags are self-contained (valid HTML).
3356 * Also, this will not detect things like "display:none" CSS.
3358 * Note: since 1.18 you do not need to leave extra room in $length for ellipses.
3360 * @param string $text HTML string to truncate
3361 * @param int $length (zero/positive) Maximum length (including ellipses)
3362 * @param string $ellipsis String to append to the truncated text
3365 function truncateHtml( $text, $length, $ellipsis = '...' ) {
3366 # Use the localized ellipsis character
3367 if ( $ellipsis == '...' ) {
3368 $ellipsis = wfMessage( 'ellipsis' )->inLanguage( $this )->escaped();
3370 # Check if there is clearly no need to truncate
3371 if ( $length <= 0 ) {
3372 return $ellipsis; // no text shown, nothing to format (convention)
3373 } elseif ( strlen( $text ) <= $length ) {
3374 return $text; // string short enough even *with* HTML (short-circuit)
3377 $dispLen = 0; // innerHTML legth so far
3378 $testingEllipsis = false; // checking if ellipses will make string longer/equal?
3379 $tagType = 0; // 0-open, 1-close
3380 $bracketState = 0; // 1-tag start, 2-tag name, 0-neither
3381 $entityState = 0; // 0-not entity, 1-entity
3382 $tag = $ret = ''; // accumulated tag name, accumulated result string
3383 $openTags = array(); // open tag stack
3384 $maybeState = null; // possible truncation state
3386 $textLen = strlen( $text );
3387 $neLength = max( 0, $length - strlen( $ellipsis ) ); // non-ellipsis len if truncated
3388 for ( $pos = 0; true; ++
$pos ) {
3389 # Consider truncation once the display length has reached the maximim.
3390 # We check if $dispLen > 0 to grab tags for the $neLength = 0 case.
3391 # Check that we're not in the middle of a bracket/entity...
3392 if ( $dispLen && $dispLen >= $neLength && $bracketState == 0 && !$entityState ) {
3393 if ( !$testingEllipsis ) {
3394 $testingEllipsis = true;
3395 # Save where we are; we will truncate here unless there turn out to
3396 # be so few remaining characters that truncation is not necessary.
3397 if ( !$maybeState ) { // already saved? ($neLength = 0 case)
3398 $maybeState = array( $ret, $openTags ); // save state
3400 } elseif ( $dispLen > $length && $dispLen > strlen( $ellipsis ) ) {
3401 # String in fact does need truncation, the truncation point was OK.
3402 list( $ret, $openTags ) = $maybeState; // reload state
3403 $ret = $this->removeBadCharLast( $ret ); // multi-byte char fix
3404 $ret .= $ellipsis; // add ellipsis
3408 if ( $pos >= $textLen ) {
3409 break; // extra iteration just for above checks
3412 # Read the next char...
3414 $lastCh = $pos ?
$text[$pos - 1] : '';
3415 $ret .= $ch; // add to result string
3417 $this->truncate_endBracket( $tag, $tagType, $lastCh, $openTags ); // for bad HTML
3418 $entityState = 0; // for bad HTML
3419 $bracketState = 1; // tag started (checking for backslash)
3420 } elseif ( $ch == '>' ) {
3421 $this->truncate_endBracket( $tag, $tagType, $lastCh, $openTags );
3422 $entityState = 0; // for bad HTML
3423 $bracketState = 0; // out of brackets
3424 } elseif ( $bracketState == 1 ) {
3426 $tagType = 1; // close tag (e.g. "</span>")
3428 $tagType = 0; // open tag (e.g. "<span>")
3431 $bracketState = 2; // building tag name
3432 } elseif ( $bracketState == 2 ) {
3436 // Name found (e.g. "<a href=..."), add on tag attributes...
3437 $pos +
= $this->truncate_skip( $ret, $text, "<>", $pos +
1 );
3439 } elseif ( $bracketState == 0 ) {
3440 if ( $entityState ) {
3443 $dispLen++
; // entity is one displayed char
3446 if ( $neLength == 0 && !$maybeState ) {
3447 // Save state without $ch. We want to *hit* the first
3448 // display char (to get tags) but not *use* it if truncating.
3449 $maybeState = array( substr( $ret, 0, -1 ), $openTags );
3452 $entityState = 1; // entity found, (e.g. " ")
3454 $dispLen++
; // this char is displayed
3455 // Add the next $max display text chars after this in one swoop...
3456 $max = ( $testingEllipsis ?
$length : $neLength ) - $dispLen;
3457 $skipped = $this->truncate_skip( $ret, $text, "<>&", $pos +
1, $max );
3458 $dispLen +
= $skipped;
3464 // Close the last tag if left unclosed by bad HTML
3465 $this->truncate_endBracket( $tag, $text[$textLen - 1], $tagType, $openTags );
3466 while ( count( $openTags ) > 0 ) {
3467 $ret .= '</' . array_pop( $openTags ) . '>'; // close open tags
3473 * truncateHtml() helper function
3474 * like strcspn() but adds the skipped chars to $ret
3483 private function truncate_skip( &$ret, $text, $search, $start, $len = null ) {
3484 if ( $len === null ) {
3485 $len = -1; // -1 means "no limit" for strcspn
3486 } elseif ( $len < 0 ) {
3490 if ( $start < strlen( $text ) ) {
3491 $skipCount = strcspn( $text, $search, $start, $len );
3492 $ret .= substr( $text, $start, $skipCount );
3498 * truncateHtml() helper function
3499 * (a) push or pop $tag from $openTags as needed
3500 * (b) clear $tag value
3501 * @param &$tag string Current HTML tag name we are looking at
3502 * @param $tagType int (0-open tag, 1-close tag)
3503 * @param $lastCh string Character before the '>' that ended this tag
3504 * @param &$openTags array Open tag stack (not accounting for $tag)
3506 private function truncate_endBracket( &$tag, $tagType, $lastCh, &$openTags ) {
3507 $tag = ltrim( $tag );
3509 if ( $tagType == 0 && $lastCh != '/' ) {
3510 $openTags[] = $tag; // tag opened (didn't close itself)
3511 } elseif ( $tagType == 1 ) {
3512 if ( $openTags && $tag == $openTags[count( $openTags ) - 1] ) {
3513 array_pop( $openTags ); // tag closed
3521 * Grammatical transformations, needed for inflected languages
3522 * Invoked by putting {{grammar:case|word}} in a message
3524 * @param $word string
3525 * @param $case string
3528 function convertGrammar( $word, $case ) {
3529 global $wgGrammarForms;
3530 if ( isset( $wgGrammarForms[$this->getCode()][$case][$word] ) ) {
3531 return $wgGrammarForms[$this->getCode()][$case][$word];
3536 * Get the grammar forms for the content language
3537 * @return array of grammar forms
3540 function getGrammarForms() {
3541 global $wgGrammarForms;
3542 if ( isset( $wgGrammarForms[$this->getCode()] ) && is_array( $wgGrammarForms[$this->getCode()] ) ) {
3543 return $wgGrammarForms[$this->getCode()];
3548 * Provides an alternative text depending on specified gender.
3549 * Usage {{gender:username|masculine|feminine|neutral}}.
3550 * username is optional, in which case the gender of current user is used,
3551 * but only in (some) interface messages; otherwise default gender is used.
3553 * If no forms are given, an empty string is returned. If only one form is
3554 * given, it will be returned unconditionally. These details are implied by
3555 * the caller and cannot be overridden in subclasses.
3557 * If more than one form is given, the default is to use the neutral one
3558 * if it is specified, and to use the masculine one otherwise. These
3559 * details can be overridden in subclasses.
3561 * @param $gender string
3562 * @param $forms array
3566 function gender( $gender, $forms ) {
3567 if ( !count( $forms ) ) {
3570 $forms = $this->preConvertPlural( $forms, 2 );
3571 if ( $gender === 'male' ) {
3574 if ( $gender === 'female' ) {
3577 return isset( $forms[2] ) ?
$forms[2] : $forms[0];
3581 * Plural form transformations, needed for some languages.
3582 * For example, there are 3 form of plural in Russian and Polish,
3583 * depending on "count mod 10". See [[w:Plural]]
3584 * For English it is pretty simple.
3586 * Invoked by putting {{plural:count|wordform1|wordform2}}
3587 * or {{plural:count|wordform1|wordform2|wordform3}}
3589 * Example: {{plural:{{NUMBEROFARTICLES}}|article|articles}}
3591 * @param $count Integer: non-localized number
3592 * @param $forms Array: different plural forms
3593 * @return string Correct form of plural for $count in this language
3595 function convertPlural( $count, $forms ) {
3596 if ( !count( $forms ) ) {
3600 // Handle explicit n=pluralform cases
3601 foreach ( $forms as $index => $form ) {
3602 if ( preg_match( '/\d+=/i', $form ) ) {
3603 $pos = strpos( $form, '=' );
3604 if ( substr( $form, 0, $pos ) === (string) $count ) {
3605 return substr( $form, $pos +
1 );
3607 unset( $forms[$index] );
3610 $forms = array_values( $forms );
3612 $pluralForm = $this->getPluralRuleIndexNumber( $count );
3613 $pluralForm = min( $pluralForm, count( $forms ) - 1 );
3614 return $forms[$pluralForm];
3618 * Checks that convertPlural was given an array and pads it to requested
3619 * amount of forms by copying the last one.
3621 * @param $count Integer: How many forms should there be at least
3622 * @param $forms Array of forms given to convertPlural
3623 * @return array Padded array of forms or an exception if not an array
3625 protected function preConvertPlural( /* Array */ $forms, $count ) {
3626 while ( count( $forms ) < $count ) {
3627 $forms[] = $forms[count( $forms ) - 1];
3633 * @todo Maybe translate block durations. Note that this function is somewhat misnamed: it
3634 * deals with translating the *duration* ("1 week", "4 days", etc), not the expiry time
3635 * (which is an absolute timestamp). Please note: do NOT add this blindly, as it is used
3636 * on old expiry lengths recorded in log entries. You'd need to provide the start date to
3639 * @param $str String: the validated block duration in English
3640 * @return string Somehow translated block duration
3641 * @see LanguageFi.php for example implementation
3643 function translateBlockExpiry( $str ) {
3644 $duration = SpecialBlock
::getSuggestedDurations( $this );
3645 foreach ( $duration as $show => $value ) {
3646 if ( strcmp( $str, $value ) == 0 ) {
3647 return htmlspecialchars( trim( $show ) );
3651 // Since usually only infinite or indefinite is only on list, so try
3652 // equivalents if still here.
3653 $indefs = array( 'infinite', 'infinity', 'indefinite' );
3654 if ( in_array( $str, $indefs ) ) {
3655 foreach ( $indefs as $val ) {
3656 $show = array_search( $val, $duration, true );
3657 if ( $show !== false ) {
3658 return htmlspecialchars( trim( $show ) );
3663 // If all else fails, return a standard duration or timestamp description.
3664 $time = strtotime( $str, 0 );
3665 if ( $time === false ) { // Unknown format. Return it as-is in case.
3667 } elseif ( $time !== strtotime( $str, 1 ) ) { // It's a relative timestamp.
3668 // $time is relative to 0 so it's a duration length.
3669 return $this->formatDuration( $time );
3670 } else { // It's an absolute timestamp.
3671 if ( $time === 0 ) {
3672 // wfTimestamp() handles 0 as current time instead of epoch.
3673 return $this->timeanddate( '19700101000000' );
3675 return $this->timeanddate( $time );
3681 * languages like Chinese need to be segmented in order for the diff
3684 * @param $text String
3687 public function segmentForDiff( $text ) {
3692 * and unsegment to show the result
3694 * @param $text String
3697 public function unsegmentForDiff( $text ) {
3702 * Return the LanguageConverter used in the Language
3705 * @return LanguageConverter
3707 public function getConverter() {
3708 return $this->mConverter
;
3712 * convert text to all supported variants
3714 * @param $text string
3717 public function autoConvertToAllVariants( $text ) {
3718 return $this->mConverter
->autoConvertToAllVariants( $text );
3722 * convert text to different variants of a language.
3724 * @param $text string
3727 public function convert( $text ) {
3728 return $this->mConverter
->convert( $text );
3732 * Convert a Title object to a string in the preferred variant
3734 * @param $title Title
3737 public function convertTitle( $title ) {
3738 return $this->mConverter
->convertTitle( $title );
3742 * Convert a namespace index to a string in the preferred variant
3747 public function convertNamespace( $ns ) {
3748 return $this->mConverter
->convertNamespace( $ns );
3752 * Check if this is a language with variants
3756 public function hasVariants() {
3757 return count( $this->getVariants() ) > 1;
3761 * Check if the language has the specific variant
3764 * @param $variant string
3767 public function hasVariant( $variant ) {
3768 return (bool)$this->mConverter
->validateVariant( $variant );
3772 * Put custom tags (e.g. -{ }-) around math to prevent conversion
3774 * @param $text string
3777 public function armourMath( $text ) {
3778 return $this->mConverter
->armourMath( $text );
3782 * Perform output conversion on a string, and encode for safe HTML output.
3783 * @param $text String text to be converted
3784 * @param $isTitle Bool whether this conversion is for the article title
3786 * @todo this should get integrated somewhere sane
3788 public function convertHtml( $text, $isTitle = false ) {
3789 return htmlspecialchars( $this->convert( $text, $isTitle ) );
3793 * @param $key string
3796 public function convertCategoryKey( $key ) {
3797 return $this->mConverter
->convertCategoryKey( $key );
3801 * Get the list of variants supported by this language
3802 * see sample implementation in LanguageZh.php
3804 * @return array an array of language codes
3806 public function getVariants() {
3807 return $this->mConverter
->getVariants();
3813 public function getPreferredVariant() {
3814 return $this->mConverter
->getPreferredVariant();
3820 public function getDefaultVariant() {
3821 return $this->mConverter
->getDefaultVariant();
3827 public function getURLVariant() {
3828 return $this->mConverter
->getURLVariant();
3832 * If a language supports multiple variants, it is
3833 * possible that non-existing link in one variant
3834 * actually exists in another variant. this function
3835 * tries to find it. See e.g. LanguageZh.php
3837 * @param $link String: the name of the link
3838 * @param $nt Mixed: the title object of the link
3839 * @param $ignoreOtherCond Boolean: to disable other conditions when
3840 * we need to transclude a template or update a category's link
3841 * @return null the input parameters may be modified upon return
3843 public function findVariantLink( &$link, &$nt, $ignoreOtherCond = false ) {
3844 $this->mConverter
->findVariantLink( $link, $nt, $ignoreOtherCond );
3848 * If a language supports multiple variants, converts text
3849 * into an array of all possible variants of the text:
3850 * 'variant' => text in that variant
3852 * @deprecated since 1.17 Use autoConvertToAllVariants()
3854 * @param $text string
3858 public function convertLinkToAllVariants( $text ) {
3859 return $this->mConverter
->convertLinkToAllVariants( $text );
3863 * returns language specific options used by User::getPageRenderHash()
3864 * for example, the preferred language variant
3868 function getExtraHashOptions() {
3869 return $this->mConverter
->getExtraHashOptions();
3873 * For languages that support multiple variants, the title of an
3874 * article may be displayed differently in different variants. this
3875 * function returns the apporiate title defined in the body of the article.
3879 public function getParsedTitle() {
3880 return $this->mConverter
->getParsedTitle();
3884 * Prepare external link text for conversion. When the text is
3885 * a URL, it shouldn't be converted, and it'll be wrapped in
3886 * the "raw" tag (-{R| }-) to prevent conversion.
3888 * This function is called "markNoConversion" for historical
3891 * @param $text String: text to be used for external link
3892 * @param $noParse bool: wrap it without confirming it's a real URL first
3893 * @return string the tagged text
3895 public function markNoConversion( $text, $noParse = false ) {
3896 // Excluding protocal-relative URLs may avoid many false positives.
3897 if ( $noParse ||
preg_match( '/^(?:' . wfUrlProtocolsWithoutProtRel() . ')/', $text ) ) {
3898 return $this->mConverter
->markNoConversion( $text );
3905 * A regular expression to match legal word-trailing characters
3906 * which should be merged onto a link of the form [[foo]]bar.
3910 public function linkTrail() {
3911 return self
::$dataCache->getItem( $this->mCode
, 'linkTrail' );
3917 function getLangObj() {
3922 * Get the RFC 3066 code for this language object
3924 * NOTE: The return value of this function is NOT HTML-safe and must be escaped with
3925 * htmlspecialchars() or similar
3929 public function getCode() {
3930 return $this->mCode
;
3934 * Get the code in Bcp47 format which we can use
3935 * inside of html lang="" tags.
3937 * NOTE: The return value of this function is NOT HTML-safe and must be escaped with
3938 * htmlspecialchars() or similar.
3943 public function getHtmlCode() {
3944 if ( is_null( $this->mHtmlCode
) ) {
3945 $this->mHtmlCode
= wfBCP47( $this->getCode() );
3947 return $this->mHtmlCode
;
3951 * @param $code string
3953 public function setCode( $code ) {
3954 $this->mCode
= $code;
3955 // Ensure we don't leave an incorrect html code lying around
3956 $this->mHtmlCode
= null;
3960 * Get the name of a file for a certain language code
3961 * @param $prefix string Prepend this to the filename
3962 * @param $code string Language code
3963 * @param $suffix string Append this to the filename
3964 * @throws MWException
3965 * @return string $prefix . $mangledCode . $suffix
3967 public static function getFileName( $prefix = 'Language', $code, $suffix = '.php' ) {
3968 // Protect against path traversal
3969 if ( !Language
::isValidCode( $code )
3970 ||
strcspn( $code, ":/\\\000" ) !== strlen( $code ) )
3972 throw new MWException( "Invalid language code \"$code\"" );
3975 return $prefix . str_replace( '-', '_', ucfirst( $code ) ) . $suffix;
3979 * Get the language code from a file name. Inverse of getFileName()
3980 * @param $filename string $prefix . $languageCode . $suffix
3981 * @param $prefix string Prefix before the language code
3982 * @param $suffix string Suffix after the language code
3983 * @return string Language code, or false if $prefix or $suffix isn't found
3985 public static function getCodeFromFileName( $filename, $prefix = 'Language', $suffix = '.php' ) {
3987 preg_match( '/' . preg_quote( $prefix, '/' ) . '([A-Z][a-z_]+)' .
3988 preg_quote( $suffix, '/' ) . '/', $filename, $m );
3989 if ( !count( $m ) ) {
3992 return str_replace( '_', '-', strtolower( $m[1] ) );
3996 * @param $code string
3999 public static function getMessagesFileName( $code ) {
4001 $file = self
::getFileName( "$IP/languages/messages/Messages", $code, '.php' );
4002 wfRunHooks( 'Language::getMessagesFileName', array( $code, &$file ) );
4007 * @param $code string
4010 public static function getClassFileName( $code ) {
4012 return self
::getFileName( "$IP/languages/classes/Language", $code, '.php' );
4016 * Get the first fallback for a given language.
4018 * @param $code string
4020 * @return bool|string
4022 public static function getFallbackFor( $code ) {
4023 if ( $code === 'en' ||
!Language
::isValidBuiltInCode( $code ) ) {
4026 $fallbacks = self
::getFallbacksFor( $code );
4027 $first = array_shift( $fallbacks );
4033 * Get the ordered list of fallback languages.
4036 * @param $code string Language code
4039 public static function getFallbacksFor( $code ) {
4040 if ( $code === 'en' ||
!Language
::isValidBuiltInCode( $code ) ) {
4043 $v = self
::getLocalisationCache()->getItem( $code, 'fallback' );
4044 $v = array_map( 'trim', explode( ',', $v ) );
4045 if ( $v[count( $v ) - 1] !== 'en' ) {
4053 * Get all messages for a given language
4054 * WARNING: this may take a long time. If you just need all message *keys*
4055 * but need the *contents* of only a few messages, consider using getMessageKeysFor().
4057 * @param $code string
4061 public static function getMessagesFor( $code ) {
4062 return self
::getLocalisationCache()->getItem( $code, 'messages' );
4066 * Get a message for a given language
4068 * @param $key string
4069 * @param $code string
4073 public static function getMessageFor( $key, $code ) {
4074 return self
::getLocalisationCache()->getSubitem( $code, 'messages', $key );
4078 * Get all message keys for a given language. This is a faster alternative to
4079 * array_keys( Language::getMessagesFor( $code ) )
4082 * @param $code string Language code
4083 * @return array of message keys (strings)
4085 public static function getMessageKeysFor( $code ) {
4086 return self
::getLocalisationCache()->getSubItemList( $code, 'messages' );
4093 function fixVariableInNamespace( $talk ) {
4094 if ( strpos( $talk, '$1' ) === false ) {
4098 global $wgMetaNamespace;
4099 $talk = str_replace( '$1', $wgMetaNamespace, $talk );
4101 # Allow grammar transformations
4102 # Allowing full message-style parsing would make simple requests
4103 # such as action=raw much more expensive than they need to be.
4104 # This will hopefully cover most cases.
4105 $talk = preg_replace_callback( '/{{grammar:(.*?)\|(.*?)}}/i',
4106 array( &$this, 'replaceGrammarInNamespace' ), $talk );
4107 return str_replace( ' ', '_', $talk );
4114 function replaceGrammarInNamespace( $m ) {
4115 return $this->convertGrammar( trim( $m[2] ), trim( $m[1] ) );
4119 * @throws MWException
4122 static function getCaseMaps() {
4123 static $wikiUpperChars, $wikiLowerChars;
4124 if ( isset( $wikiUpperChars ) ) {
4125 return array( $wikiUpperChars, $wikiLowerChars );
4128 wfProfileIn( __METHOD__
);
4129 $arr = wfGetPrecompiledData( 'Utf8Case.ser' );
4130 if ( $arr === false ) {
4131 throw new MWException(
4132 "Utf8Case.ser is missing, please run \"make\" in the serialized directory\n" );
4134 $wikiUpperChars = $arr['wikiUpperChars'];
4135 $wikiLowerChars = $arr['wikiLowerChars'];
4136 wfProfileOut( __METHOD__
);
4137 return array( $wikiUpperChars, $wikiLowerChars );
4141 * Decode an expiry (block, protection, etc) which has come from the DB
4143 * @todo FIXME: why are we returnings DBMS-dependent strings???
4145 * @param $expiry String: Database expiry String
4146 * @param $format Bool|Int true to process using language functions, or TS_ constant
4147 * to return the expiry in a given timestamp
4151 public function formatExpiry( $expiry, $format = true ) {
4153 if ( $infinity === null ) {
4154 $infinity = wfGetDB( DB_SLAVE
)->getInfinity();
4157 if ( $expiry == '' ||
$expiry == $infinity ) {
4158 return $format === true
4159 ?
$this->getMessageFromDB( 'infiniteblock' )
4162 return $format === true
4163 ?
$this->timeanddate( $expiry, /* User preference timezone */ true )
4164 : wfTimestamp( $format, $expiry );
4170 * @param $seconds int|float
4171 * @param $format Array Optional
4172 * If $format['avoid'] == 'avoidseconds' - don't mention seconds if $seconds >= 1 hour
4173 * If $format['avoid'] == 'avoidminutes' - don't mention seconds/minutes if $seconds > 48 hours
4174 * If $format['noabbrevs'] is true - use 'seconds' and friends instead of 'seconds-abbrev' and friends
4175 * For backwards compatibility, $format may also be one of the strings 'avoidseconds' or 'avoidminutes'
4178 function formatTimePeriod( $seconds, $format = array() ) {
4179 if ( !is_array( $format ) ) {
4180 $format = array( 'avoid' => $format ); // For backwards compatibility
4182 if ( !isset( $format['avoid'] ) ) {
4183 $format['avoid'] = false;
4185 if ( !isset( $format['noabbrevs' ] ) ) {
4186 $format['noabbrevs'] = false;
4188 $secondsMsg = wfMessage(
4189 $format['noabbrevs'] ?
'seconds' : 'seconds-abbrev' )->inLanguage( $this );
4190 $minutesMsg = wfMessage(
4191 $format['noabbrevs'] ?
'minutes' : 'minutes-abbrev' )->inLanguage( $this );
4192 $hoursMsg = wfMessage(
4193 $format['noabbrevs'] ?
'hours' : 'hours-abbrev' )->inLanguage( $this );
4194 $daysMsg = wfMessage(
4195 $format['noabbrevs'] ?
'days' : 'days-abbrev' )->inLanguage( $this );
4197 if ( round( $seconds * 10 ) < 100 ) {
4198 $s = $this->formatNum( sprintf( "%.1f", round( $seconds * 10 ) / 10 ) );
4199 $s = $secondsMsg->params( $s )->text();
4200 } elseif ( round( $seconds ) < 60 ) {
4201 $s = $this->formatNum( round( $seconds ) );
4202 $s = $secondsMsg->params( $s )->text();
4203 } elseif ( round( $seconds ) < 3600 ) {
4204 $minutes = floor( $seconds / 60 );
4205 $secondsPart = round( fmod( $seconds, 60 ) );
4206 if ( $secondsPart == 60 ) {
4210 $s = $minutesMsg->params( $this->formatNum( $minutes ) )->text();
4212 $s .= $secondsMsg->params( $this->formatNum( $secondsPart ) )->text();
4213 } elseif ( round( $seconds ) <= 2 * 86400 ) {
4214 $hours = floor( $seconds / 3600 );
4215 $minutes = floor( ( $seconds - $hours * 3600 ) / 60 );
4216 $secondsPart = round( $seconds - $hours * 3600 - $minutes * 60 );
4217 if ( $secondsPart == 60 ) {
4221 if ( $minutes == 60 ) {
4225 $s = $hoursMsg->params( $this->formatNum( $hours ) )->text();
4227 $s .= $minutesMsg->params( $this->formatNum( $minutes ) )->text();
4228 if ( !in_array( $format['avoid'], array( 'avoidseconds', 'avoidminutes' ) ) ) {
4229 $s .= ' ' . $secondsMsg->params( $this->formatNum( $secondsPart ) )->text();
4232 $days = floor( $seconds / 86400 );
4233 if ( $format['avoid'] === 'avoidminutes' ) {
4234 $hours = round( ( $seconds - $days * 86400 ) / 3600 );
4235 if ( $hours == 24 ) {
4239 $s = $daysMsg->params( $this->formatNum( $days ) )->text();
4241 $s .= $hoursMsg->params( $this->formatNum( $hours ) )->text();
4242 } elseif ( $format['avoid'] === 'avoidseconds' ) {
4243 $hours = floor( ( $seconds - $days * 86400 ) / 3600 );
4244 $minutes = round( ( $seconds - $days * 86400 - $hours * 3600 ) / 60 );
4245 if ( $minutes == 60 ) {
4249 if ( $hours == 24 ) {
4253 $s = $daysMsg->params( $this->formatNum( $days ) )->text();
4255 $s .= $hoursMsg->params( $this->formatNum( $hours ) )->text();
4257 $s .= $minutesMsg->params( $this->formatNum( $minutes ) )->text();
4259 $s = $daysMsg->params( $this->formatNum( $days ) )->text();
4261 $s .= $this->formatTimePeriod( $seconds - $days * 86400, $format );
4268 * Format a bitrate for output, using an appropriate
4269 * unit (bps, kbps, Mbps, Gbps, Tbps, Pbps, Ebps, Zbps or Ybps) according to the magnitude in question
4271 * This use base 1000. For base 1024 use formatSize(), for another base
4272 * see formatComputingNumbers()
4277 function formatBitrate( $bps ) {
4278 return $this->formatComputingNumbers( $bps, 1000, "bitrate-$1bits" );
4282 * @param $size int Size of the unit
4283 * @param $boundary int Size boundary (1000, or 1024 in most cases)
4284 * @param $messageKey string Message key to be uesd
4287 function formatComputingNumbers( $size, $boundary, $messageKey ) {
4289 return str_replace( '$1', $this->formatNum( $size ),
4290 $this->getMessageFromDB( str_replace( '$1', '', $messageKey ) )
4293 $sizes = array( '', 'kilo', 'mega', 'giga', 'tera', 'peta', 'exa', 'zeta', 'yotta' );
4296 $maxIndex = count( $sizes ) - 1;
4297 while ( $size >= $boundary && $index < $maxIndex ) {
4302 // For small sizes no decimal places necessary
4305 // For MB and bigger two decimal places are smarter
4308 $msg = str_replace( '$1', $sizes[$index], $messageKey );
4310 $size = round( $size, $round );
4311 $text = $this->getMessageFromDB( $msg );
4312 return str_replace( '$1', $this->formatNum( $size ), $text );
4316 * Format a size in bytes for output, using an appropriate
4317 * unit (B, KB, MB, GB, TB, PB, EB, ZB or YB) according to the magnitude in question
4319 * This method use base 1024. For base 1000 use formatBitrate(), for
4320 * another base see formatComputingNumbers()
4322 * @param $size int Size to format
4323 * @return string Plain text (not HTML)
4325 function formatSize( $size ) {
4326 return $this->formatComputingNumbers( $size, 1024, "size-$1bytes" );
4330 * Make a list item, used by various special pages
4332 * @param $page String Page link
4333 * @param $details String Text between brackets
4334 * @param $oppositedm Boolean Add the direction mark opposite to your
4335 * language, to display text properly
4338 function specialList( $page, $details, $oppositedm = true ) {
4339 $dirmark = ( $oppositedm ?
$this->getDirMark( true ) : '' ) .
4340 $this->getDirMark();
4341 $details = $details ?
$dirmark . $this->getMessageFromDB( 'word-separator' ) .
4342 wfMessage( 'parentheses' )->rawParams( $details )->inLanguage( $this )->escaped() : '';
4343 return $page . $details;
4347 * Generate (prev x| next x) (20|50|100...) type links for paging
4349 * @param $title Title object to link
4350 * @param $offset Integer offset parameter
4351 * @param $limit Integer limit parameter
4352 * @param $query array|String optional URL query parameter string
4353 * @param $atend Bool optional param for specified if this is the last page
4356 public function viewPrevNext( Title
$title, $offset, $limit, array $query = array(), $atend = false ) {
4357 // @todo FIXME: Why on earth this needs one message for the text and another one for tooltip?
4359 # Make 'previous' link
4360 $prev = wfMessage( 'prevn' )->inLanguage( $this )->title( $title )->numParams( $limit )->text();
4361 if ( $offset > 0 ) {
4362 $plink = $this->numLink( $title, max( $offset - $limit, 0 ), $limit,
4363 $query, $prev, 'prevn-title', 'mw-prevlink' );
4365 $plink = htmlspecialchars( $prev );
4369 $next = wfMessage( 'nextn' )->inLanguage( $this )->title( $title )->numParams( $limit )->text();
4371 $nlink = htmlspecialchars( $next );
4373 $nlink = $this->numLink( $title, $offset +
$limit, $limit,
4374 $query, $next, 'prevn-title', 'mw-nextlink' );
4377 # Make links to set number of items per page
4378 $numLinks = array();
4379 foreach ( array( 20, 50, 100, 250, 500 ) as $num ) {
4380 $numLinks[] = $this->numLink( $title, $offset, $num,
4381 $query, $this->formatNum( $num ), 'shown-title', 'mw-numlink' );
4384 return wfMessage( 'viewprevnext' )->inLanguage( $this )->title( $title
4385 )->rawParams( $plink, $nlink, $this->pipeList( $numLinks ) )->escaped();
4389 * Helper function for viewPrevNext() that generates links
4391 * @param $title Title object to link
4392 * @param $offset Integer offset parameter
4393 * @param $limit Integer limit parameter
4394 * @param $query Array extra query parameters
4395 * @param $link String text to use for the link; will be escaped
4396 * @param $tooltipMsg String name of the message to use as tooltip
4397 * @param $class String value of the "class" attribute of the link
4398 * @return String HTML fragment
4400 private function numLink( Title
$title, $offset, $limit, array $query, $link, $tooltipMsg, $class ) {
4401 $query = array( 'limit' => $limit, 'offset' => $offset ) +
$query;
4402 $tooltip = wfMessage( $tooltipMsg )->inLanguage( $this )->title( $title )->numParams( $limit )->text();
4403 return Html
::element( 'a', array( 'href' => $title->getLocalURL( $query ),
4404 'title' => $tooltip, 'class' => $class ), $link );
4408 * Get the conversion rule title, if any.
4412 public function getConvRuleTitle() {
4413 return $this->mConverter
->getConvRuleTitle();
4417 * Get the compiled plural rules for the language
4419 * @return array Associative array with plural form, and plural rule as key-value pairs
4421 public function getCompiledPluralRules() {
4422 $pluralRules = self
::$dataCache->getItem( strtolower( $this->mCode
), 'compiledPluralRules' );
4423 $fallbacks = Language
::getFallbacksFor( $this->mCode
);
4424 if ( !$pluralRules ) {
4425 foreach ( $fallbacks as $fallbackCode ) {
4426 $pluralRules = self
::$dataCache->getItem( strtolower( $fallbackCode ), 'compiledPluralRules' );
4427 if ( $pluralRules ) {
4432 return $pluralRules;
4436 * Get the plural rules for the language
4438 * @return array Associative array with plural form number and plural rule as key-value pairs
4440 public function getPluralRules() {
4441 $pluralRules = self
::$dataCache->getItem( strtolower( $this->mCode
), 'pluralRules' );
4442 $fallbacks = Language
::getFallbacksFor( $this->mCode
);
4443 if ( !$pluralRules ) {
4444 foreach ( $fallbacks as $fallbackCode ) {
4445 $pluralRules = self
::$dataCache->getItem( strtolower( $fallbackCode ), 'pluralRules' );
4446 if ( $pluralRules ) {
4451 return $pluralRules;
4455 * Get the plural rule types for the language
4457 * @return array Associative array with plural form number and plural rule type as key-value pairs
4459 public function getPluralRuleTypes() {
4460 $pluralRuleTypes = self
::$dataCache->getItem( strtolower( $this->mCode
), 'pluralRuleTypes' );
4461 $fallbacks = Language
::getFallbacksFor( $this->mCode
);
4462 if ( !$pluralRuleTypes ) {
4463 foreach ( $fallbacks as $fallbackCode ) {
4464 $pluralRuleTypes = self
::$dataCache->getItem( strtolower( $fallbackCode ), 'pluralRuleTypes' );
4465 if ( $pluralRuleTypes ) {
4470 return $pluralRuleTypes;
4474 * Find the index number of the plural rule appropriate for the given number
4475 * @return int The index number of the plural rule
4477 public function getPluralRuleIndexNumber( $number ) {
4478 $pluralRules = $this->getCompiledPluralRules();
4479 $form = CLDRPluralRuleEvaluator
::evaluateCompiled( $number, $pluralRules );
4484 * Find the plural rule type appropriate for the given number
4485 * For example, if the language is set to Arabic, getPluralType(5) should
4488 * @return string The name of the plural rule type, e.g. one, two, few, many
4490 public function getPluralRuleType( $number ) {
4491 $index = $this->getPluralRuleIndexNumber( $number );
4492 $pluralRuleTypes = $this->getPluralRuleTypes();
4493 if ( isset( $pluralRuleTypes[$index] ) ) {
4494 return $pluralRuleTypes[$index];