Translation updates from translatewiki.net
[mediawiki.git] / languages / Language.php
blob1ef5a74591b23cfcbd0ef181521582a4b2070bb0
1 <?php
2 /**
3 * Internationalisation code
5 * @file
6 * @ingroup Language
7 */
9 /**
10 * @defgroup Language Language
13 if ( !defined( 'MEDIAWIKI' ) ) {
14 echo "This file is part of MediaWiki, it is not a valid entry point.\n";
15 exit( 1 );
18 # Read language names
19 global $wgLanguageNames;
20 require_once( dirname( __FILE__ ) . '/Names.php' );
22 if ( function_exists( 'mb_strtoupper' ) ) {
23 mb_internal_encoding( 'UTF-8' );
26 /**
27 * a fake language converter
29 * @ingroup Language
31 class FakeConverter {
33 /**
34 * @var Language
36 var $mLang;
37 function __construct( $langobj ) { $this->mLang = $langobj; }
38 function autoConvertToAllVariants( $text ) { return array( $this->mLang->getCode() => $text ); }
39 function convert( $t ) { return $t; }
40 function convertTo( $text, $variant ) { return $text; }
41 function convertTitle( $t ) { return $t->getPrefixedText(); }
42 function getVariants() { return array( $this->mLang->getCode() ); }
43 function getPreferredVariant() { return $this->mLang->getCode(); }
44 function getDefaultVariant() { return $this->mLang->getCode(); }
45 function getURLVariant() { return ''; }
46 function getConvRuleTitle() { return false; }
47 function findVariantLink( &$l, &$n, $ignoreOtherCond = false ) { }
48 function getExtraHashOptions() { return ''; }
49 function getParsedTitle() { return ''; }
50 function markNoConversion( $text, $noParse = false ) { return $text; }
51 function convertCategoryKey( $key ) { return $key; }
52 function convertLinkToAllVariants( $text ) { return $this->autoConvertToAllVariants( $text ); }
53 function armourMath( $text ) { return $text; }
56 /**
57 * Internationalisation code
58 * @ingroup Language
60 class Language {
62 /**
63 * @var LanguageConverter
65 var $mConverter;
67 var $mVariants, $mCode, $mLoaded = false;
68 var $mMagicExtensions = array(), $mMagicHookDone = false;
69 private $mHtmlCode = null;
71 var $dateFormatStrings = array();
72 var $mExtendedSpecialPageAliases;
74 protected $namespaceNames, $mNamespaceIds, $namespaceAliases;
76 /**
77 * ReplacementArray object caches
79 var $transformData = array();
81 /**
82 * @var LocalisationCache
84 static public $dataCache;
86 static public $mLangObjCache = array();
88 static public $mWeekdayMsgs = array(
89 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday',
90 'friday', 'saturday'
93 static public $mWeekdayAbbrevMsgs = array(
94 'sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'
97 static public $mMonthMsgs = array(
98 'january', 'february', 'march', 'april', 'may_long', 'june',
99 'july', 'august', 'september', 'october', 'november',
100 'december'
102 static public $mMonthGenMsgs = array(
103 'january-gen', 'february-gen', 'march-gen', 'april-gen', 'may-gen', 'june-gen',
104 'july-gen', 'august-gen', 'september-gen', 'october-gen', 'november-gen',
105 'december-gen'
107 static public $mMonthAbbrevMsgs = array(
108 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug',
109 'sep', 'oct', 'nov', 'dec'
112 static public $mIranianCalendarMonthMsgs = array(
113 'iranian-calendar-m1', 'iranian-calendar-m2', 'iranian-calendar-m3',
114 'iranian-calendar-m4', 'iranian-calendar-m5', 'iranian-calendar-m6',
115 'iranian-calendar-m7', 'iranian-calendar-m8', 'iranian-calendar-m9',
116 'iranian-calendar-m10', 'iranian-calendar-m11', 'iranian-calendar-m12'
119 static public $mHebrewCalendarMonthMsgs = array(
120 'hebrew-calendar-m1', 'hebrew-calendar-m2', 'hebrew-calendar-m3',
121 'hebrew-calendar-m4', 'hebrew-calendar-m5', 'hebrew-calendar-m6',
122 'hebrew-calendar-m7', 'hebrew-calendar-m8', 'hebrew-calendar-m9',
123 'hebrew-calendar-m10', 'hebrew-calendar-m11', 'hebrew-calendar-m12',
124 'hebrew-calendar-m6a', 'hebrew-calendar-m6b'
127 static public $mHebrewCalendarMonthGenMsgs = array(
128 'hebrew-calendar-m1-gen', 'hebrew-calendar-m2-gen', 'hebrew-calendar-m3-gen',
129 'hebrew-calendar-m4-gen', 'hebrew-calendar-m5-gen', 'hebrew-calendar-m6-gen',
130 'hebrew-calendar-m7-gen', 'hebrew-calendar-m8-gen', 'hebrew-calendar-m9-gen',
131 'hebrew-calendar-m10-gen', 'hebrew-calendar-m11-gen', 'hebrew-calendar-m12-gen',
132 'hebrew-calendar-m6a-gen', 'hebrew-calendar-m6b-gen'
135 static public $mHijriCalendarMonthMsgs = array(
136 'hijri-calendar-m1', 'hijri-calendar-m2', 'hijri-calendar-m3',
137 'hijri-calendar-m4', 'hijri-calendar-m5', 'hijri-calendar-m6',
138 'hijri-calendar-m7', 'hijri-calendar-m8', 'hijri-calendar-m9',
139 'hijri-calendar-m10', 'hijri-calendar-m11', 'hijri-calendar-m12'
143 * Get a cached language object for a given language code
144 * @param $code String
145 * @return Language
147 static function factory( $code ) {
148 if ( !isset( self::$mLangObjCache[$code] ) ) {
149 if ( count( self::$mLangObjCache ) > 10 ) {
150 // Don't keep a billion objects around, that's stupid.
151 self::$mLangObjCache = array();
153 self::$mLangObjCache[$code] = self::newFromCode( $code );
155 return self::$mLangObjCache[$code];
159 * Create a language object for a given language code
160 * @param $code String
161 * @throws MWException
162 * @return Language
164 protected static function newFromCode( $code ) {
165 // Protect against path traversal below
166 if ( !Language::isValidCode( $code )
167 || strcspn( $code, ":/\\\000" ) !== strlen( $code ) )
169 throw new MWException( "Invalid language code \"$code\"" );
172 if ( !Language::isValidBuiltInCode( $code ) ) {
173 // It's not possible to customise this code with class files, so
174 // just return a Language object. This is to support uselang= hacks.
175 $lang = new Language;
176 $lang->setCode( $code );
177 return $lang;
180 // Check if there is a language class for the code
181 $class = self::classFromCode( $code );
182 self::preloadLanguageClass( $class );
183 if ( MWInit::classExists( $class ) ) {
184 $lang = new $class;
185 return $lang;
188 // Keep trying the fallback list until we find an existing class
189 $fallbacks = Language::getFallbacksFor( $code );
190 foreach ( $fallbacks as $fallbackCode ) {
191 if ( !Language::isValidBuiltInCode( $fallbackCode ) ) {
192 throw new MWException( "Invalid fallback '$fallbackCode' in fallback sequence for '$code'" );
195 $class = self::classFromCode( $fallbackCode );
196 self::preloadLanguageClass( $class );
197 if ( MWInit::classExists( $class ) ) {
198 $lang = Language::newFromCode( $fallbackCode );
199 $lang->setCode( $code );
200 return $lang;
204 throw new MWException( "Invalid fallback sequence for language '$code'" );
208 * Returns true if a language code string is of a valid form, whether or
209 * not it exists. This includes codes which are used solely for
210 * customisation via the MediaWiki namespace.
212 * @param $code string
214 * @return bool
216 public static function isValidCode( $code ) {
217 return
218 strcspn( $code, ":/\\\000" ) === strlen( $code )
219 && !preg_match( Title::getTitleInvalidRegex(), $code );
223 * Returns true if a language code is of a valid form for the purposes of
224 * internal customisation of MediaWiki, via Messages*.php.
226 * @param $code string
228 * @since 1.18
229 * @return bool
231 public static function isValidBuiltInCode( $code ) {
232 return preg_match( '/^[a-z0-9-]+$/i', $code );
236 * @param $code
237 * @return String Name of the language class
239 public static function classFromCode( $code ) {
240 if ( $code == 'en' ) {
241 return 'Language';
242 } else {
243 return 'Language' . str_replace( '-', '_', ucfirst( $code ) );
248 * Includes language class files
250 * @param $class string Name of the language class
252 public static function preloadLanguageClass( $class ) {
253 global $IP;
255 if ( $class === 'Language' ) {
256 return;
259 if ( !defined( 'MW_COMPILED' ) ) {
260 // Preload base classes to work around APC/PHP5 bug
261 if ( file_exists( "$IP/languages/classes/$class.deps.php" ) ) {
262 include_once( "$IP/languages/classes/$class.deps.php" );
264 if ( file_exists( "$IP/languages/classes/$class.php" ) ) {
265 include_once( "$IP/languages/classes/$class.php" );
271 * Get the LocalisationCache instance
273 * @return LocalisationCache
275 public static function getLocalisationCache() {
276 if ( is_null( self::$dataCache ) ) {
277 global $wgLocalisationCacheConf;
278 $class = $wgLocalisationCacheConf['class'];
279 self::$dataCache = new $class( $wgLocalisationCacheConf );
281 return self::$dataCache;
284 function __construct() {
285 $this->mConverter = new FakeConverter( $this );
286 // Set the code to the name of the descendant
287 if ( get_class( $this ) == 'Language' ) {
288 $this->mCode = 'en';
289 } else {
290 $this->mCode = str_replace( '_', '-', strtolower( substr( get_class( $this ), 8 ) ) );
292 self::getLocalisationCache();
296 * Reduce memory usage
298 function __destruct() {
299 foreach ( $this as $name => $value ) {
300 unset( $this->$name );
305 * Hook which will be called if this is the content language.
306 * Descendants can use this to register hook functions or modify globals
308 function initContLang() { }
311 * Same as getFallbacksFor for current language.
312 * @return array|bool
313 * @deprecated in 1.19
315 function getFallbackLanguageCode() {
316 wfDeprecated( __METHOD__ );
317 return self::getFallbackFor( $this->mCode );
321 * @return array
322 * @since 1.19
324 function getFallbackLanguages() {
325 return self::getFallbacksFor( $this->mCode );
329 * Exports $wgBookstoreListEn
330 * @return array
332 function getBookstoreList() {
333 return self::$dataCache->getItem( $this->mCode, 'bookstoreList' );
337 * @return array
339 public function getNamespaces() {
340 if ( is_null( $this->namespaceNames ) ) {
341 global $wgMetaNamespace, $wgMetaNamespaceTalk, $wgExtraNamespaces;
343 $this->namespaceNames = self::$dataCache->getItem( $this->mCode, 'namespaceNames' );
344 $validNamespaces = MWNamespace::getCanonicalNamespaces();
346 $this->namespaceNames = $wgExtraNamespaces + $this->namespaceNames + $validNamespaces;
348 $this->namespaceNames[NS_PROJECT] = $wgMetaNamespace;
349 if ( $wgMetaNamespaceTalk ) {
350 $this->namespaceNames[NS_PROJECT_TALK] = $wgMetaNamespaceTalk;
351 } else {
352 $talk = $this->namespaceNames[NS_PROJECT_TALK];
353 $this->namespaceNames[NS_PROJECT_TALK] =
354 $this->fixVariableInNamespace( $talk );
357 # Sometimes a language will be localised but not actually exist on this wiki.
358 foreach ( $this->namespaceNames as $key => $text ) {
359 if ( !isset( $validNamespaces[$key] ) ) {
360 unset( $this->namespaceNames[$key] );
364 # The above mixing may leave namespaces out of canonical order.
365 # Re-order by namespace ID number...
366 ksort( $this->namespaceNames );
368 wfRunHooks( 'LanguageGetNamespaces', array( &$this->namespaceNames ) );
370 return $this->namespaceNames;
374 * Arbitrarily set all of the namespace names at once. Mainly used for testing
375 * @param $namespaces Array of namespaces (id => name)
377 public function setNamespaces( array $namespaces ) {
378 $this->namespaceNames = $namespaces;
382 * A convenience function that returns the same thing as
383 * getNamespaces() except with the array values changed to ' '
384 * where it found '_', useful for producing output to be displayed
385 * e.g. in <select> forms.
387 * @return array
389 function getFormattedNamespaces() {
390 $ns = $this->getNamespaces();
391 foreach ( $ns as $k => $v ) {
392 $ns[$k] = strtr( $v, '_', ' ' );
394 return $ns;
398 * Get a namespace value by key
399 * <code>
400 * $mw_ns = $wgContLang->getNsText( NS_MEDIAWIKI );
401 * echo $mw_ns; // prints 'MediaWiki'
402 * </code>
404 * @param $index Int: the array key of the namespace to return
405 * @return mixed, string if the namespace value exists, otherwise false
407 function getNsText( $index ) {
408 $ns = $this->getNamespaces();
409 return isset( $ns[$index] ) ? $ns[$index] : false;
413 * A convenience function that returns the same thing as
414 * getNsText() except with '_' changed to ' ', useful for
415 * producing output.
417 * @param $index string
419 * @return array
421 function getFormattedNsText( $index ) {
422 $ns = $this->getNsText( $index );
423 return strtr( $ns, '_', ' ' );
427 * Returns gender-dependent namespace alias if available.
428 * @param $index Int: namespace index
429 * @param $gender String: gender key (male, female... )
430 * @return String
431 * @since 1.18
433 function getGenderNsText( $index, $gender ) {
434 global $wgExtraGenderNamespaces;
436 $ns = $wgExtraGenderNamespaces + self::$dataCache->getItem( $this->mCode, 'namespaceGenderAliases' );
437 return isset( $ns[$index][$gender] ) ? $ns[$index][$gender] : $this->getNsText( $index );
441 * Whether this language makes distinguishes genders for example in
442 * namespaces.
443 * @return bool
444 * @since 1.18
446 function needsGenderDistinction() {
447 global $wgExtraGenderNamespaces, $wgExtraNamespaces;
448 if ( count( $wgExtraGenderNamespaces ) > 0 ) {
449 // $wgExtraGenderNamespaces overrides everything
450 return true;
451 } elseif ( isset( $wgExtraNamespaces[NS_USER] ) && isset( $wgExtraNamespaces[NS_USER_TALK] ) ) {
452 /// @todo There may be other gender namespace than NS_USER & NS_USER_TALK in the future
453 // $wgExtraNamespaces overrides any gender aliases specified in i18n files
454 return false;
455 } else {
456 // Check what is in i18n files
457 $aliases = self::$dataCache->getItem( $this->mCode, 'namespaceGenderAliases' );
458 return count( $aliases ) > 0;
463 * Get a namespace key by value, case insensitive.
464 * Only matches namespace names for the current language, not the
465 * canonical ones defined in Namespace.php.
467 * @param $text String
468 * @return mixed An integer if $text is a valid value otherwise false
470 function getLocalNsIndex( $text ) {
471 $lctext = $this->lc( $text );
472 $ids = $this->getNamespaceIds();
473 return isset( $ids[$lctext] ) ? $ids[$lctext] : false;
477 * @return array
479 function getNamespaceAliases() {
480 if ( is_null( $this->namespaceAliases ) ) {
481 $aliases = self::$dataCache->getItem( $this->mCode, 'namespaceAliases' );
482 if ( !$aliases ) {
483 $aliases = array();
484 } else {
485 foreach ( $aliases as $name => $index ) {
486 if ( $index === NS_PROJECT_TALK ) {
487 unset( $aliases[$name] );
488 $name = $this->fixVariableInNamespace( $name );
489 $aliases[$name] = $index;
494 global $wgExtraGenderNamespaces;
495 $genders = $wgExtraGenderNamespaces + (array)self::$dataCache->getItem( $this->mCode, 'namespaceGenderAliases' );
496 foreach ( $genders as $index => $forms ) {
497 foreach ( $forms as $alias ) {
498 $aliases[$alias] = $index;
502 $this->namespaceAliases = $aliases;
504 return $this->namespaceAliases;
508 * @return array
510 function getNamespaceIds() {
511 if ( is_null( $this->mNamespaceIds ) ) {
512 global $wgNamespaceAliases;
513 # Put namespace names and aliases into a hashtable.
514 # If this is too slow, then we should arrange it so that it is done
515 # before caching. The catch is that at pre-cache time, the above
516 # class-specific fixup hasn't been done.
517 $this->mNamespaceIds = array();
518 foreach ( $this->getNamespaces() as $index => $name ) {
519 $this->mNamespaceIds[$this->lc( $name )] = $index;
521 foreach ( $this->getNamespaceAliases() as $name => $index ) {
522 $this->mNamespaceIds[$this->lc( $name )] = $index;
524 if ( $wgNamespaceAliases ) {
525 foreach ( $wgNamespaceAliases as $name => $index ) {
526 $this->mNamespaceIds[$this->lc( $name )] = $index;
530 return $this->mNamespaceIds;
534 * Get a namespace key by value, case insensitive. Canonical namespace
535 * names override custom ones defined for the current language.
537 * @param $text String
538 * @return mixed An integer if $text is a valid value otherwise false
540 function getNsIndex( $text ) {
541 $lctext = $this->lc( $text );
542 $ns = MWNamespace::getCanonicalIndex( $lctext );
543 if ( $ns !== null ) {
544 return $ns;
546 $ids = $this->getNamespaceIds();
547 return isset( $ids[$lctext] ) ? $ids[$lctext] : false;
551 * short names for language variants used for language conversion links.
553 * @param $code String
554 * @param $usemsg bool Use the "variantname-xyz" message if it exists
555 * @return string
557 function getVariantname( $code, $usemsg = true ) {
558 $msg = "variantname-$code";
559 list( $rootCode ) = explode( '-', $code );
560 if ( $usemsg && wfMessage( $msg )->exists() ) {
561 return $this->getMessageFromDB( $msg );
563 $name = self::fetchLanguageName( $code );
564 if ( $name ) {
565 return $name; # if it's defined as a language name, show that
566 } else {
567 # otherwise, output the language code
568 return $code;
573 * @param $name string
574 * @return string
576 function specialPage( $name ) {
577 $aliases = $this->getSpecialPageAliases();
578 if ( isset( $aliases[$name][0] ) ) {
579 $name = $aliases[$name][0];
581 return $this->getNsText( NS_SPECIAL ) . ':' . $name;
585 * @return array
587 function getQuickbarSettings() {
588 return array(
589 $this->getMessage( 'qbsettings-none' ),
590 $this->getMessage( 'qbsettings-fixedleft' ),
591 $this->getMessage( 'qbsettings-fixedright' ),
592 $this->getMessage( 'qbsettings-floatingleft' ),
593 $this->getMessage( 'qbsettings-floatingright' ),
594 $this->getMessage( 'qbsettings-directionality' )
599 * @return array
601 function getDatePreferences() {
602 return self::$dataCache->getItem( $this->mCode, 'datePreferences' );
606 * @return array
608 function getDateFormats() {
609 return self::$dataCache->getItem( $this->mCode, 'dateFormats' );
613 * @return array|string
615 function getDefaultDateFormat() {
616 $df = self::$dataCache->getItem( $this->mCode, 'defaultDateFormat' );
617 if ( $df === 'dmy or mdy' ) {
618 global $wgAmericanDates;
619 return $wgAmericanDates ? 'mdy' : 'dmy';
620 } else {
621 return $df;
626 * @return array
628 function getDatePreferenceMigrationMap() {
629 return self::$dataCache->getItem( $this->mCode, 'datePreferenceMigrationMap' );
633 * @param $image
634 * @return array|null
636 function getImageFile( $image ) {
637 return self::$dataCache->getSubitem( $this->mCode, 'imageFiles', $image );
641 * @return array
643 function getExtraUserToggles() {
644 return (array)self::$dataCache->getItem( $this->mCode, 'extraUserToggles' );
648 * @param $tog
649 * @return string
651 function getUserToggle( $tog ) {
652 return $this->getMessageFromDB( "tog-$tog" );
656 * Get native language names, indexed by code.
657 * Only those defined in MediaWiki, no other data like CLDR.
658 * If $customisedOnly is true, only returns codes with a messages file
660 * @param $customisedOnly bool
662 * @return array
663 * @deprecated in 1.20, use fetchLanguageNames()
665 public static function getLanguageNames( $customisedOnly = false ) {
666 return self::fetchLanguageNames( null, $customisedOnly ? 'mwfile' : 'mw' );
670 * Get translated language names. This is done on best effort and
671 * by default this is exactly the same as Language::getLanguageNames.
672 * The CLDR extension provides translated names.
673 * @param $code String Language code.
674 * @return Array language code => language name
675 * @since 1.18.0
676 * @deprecated in 1.20, use fetchLanguageNames()
678 public static function getTranslatedLanguageNames( $code ) {
679 return self::fetchLanguageNames( $code, 'all' );
683 * Get an array of language names, indexed by code.
684 * @param $inLanguage null|string: Code of language in which to return the names
685 * Use null for autonyms (native names)
686 * @param $include string:
687 * 'all' all available languages
688 * 'mw' only if the language is defined in MediaWiki or wgExtraLanguageNames
689 * 'mwfile' only if the language is in 'mw' *and* has a message file
690 * @return array|bool: language code => language name, false if $include is wrong
691 * @since 1.20
693 public static function fetchLanguageNames( $inLanguage = null, $include = 'mw' ) {
694 global $wgExtraLanguageNames;
695 static $coreLanguageNames;
697 if ( $coreLanguageNames === null ) {
698 include( MWInit::compiledPath( 'languages/Names.php' ) );
701 $names = array();
703 if( $inLanguage ) {
704 # TODO: also include when $inLanguage is null, when this code is more efficient
705 wfRunHooks( 'LanguageGetTranslatedLanguageNames', array( &$names, $inLanguage ) );
708 $mwNames = $wgExtraLanguageNames + $coreLanguageNames;
709 foreach ( $mwNames as $mwCode => $mwName ) {
710 # - Prefer own MediaWiki native name when not using the hook
711 # TODO: prefer it always to make it consistent, but casing is different in CLDR
712 # - For other names just add if not added through the hook
713 if ( ( $mwCode === $inLanguage && !$inLanguage ) || !isset( $names[$mwCode] ) ) {
714 $names[$mwCode] = $mwName;
718 if ( $include === 'all' ) {
719 return $names;
722 $returnMw = array();
723 $coreCodes = array_keys( $mwNames );
724 foreach( $coreCodes as $coreCode ) {
725 $returnMw[$coreCode] = $names[$coreCode];
728 if( $include === 'mw' ) {
729 return $returnMw;
730 } elseif( $include === 'mwfile' ) {
731 $namesMwFile = array();
732 # We do this using a foreach over the codes instead of a directory
733 # loop so that messages files in extensions will work correctly.
734 foreach ( $returnMw as $code => $value ) {
735 if ( is_readable( self::getMessagesFileName( $code ) ) ) {
736 $namesMwFile[$code] = $names[$code];
739 return $namesMwFile;
741 return false;
745 * @param $code string: The code of the language for which to get the name
746 * @param $inLanguage null|string: Code of language in which to return the name (null for autonyms)
747 * @param $include string: 'all', 'mw' or 'mwfile'; see fetchLanguageNames()
748 * @return string: Language name or empty
749 * @since 1.20
751 public static function fetchLanguageName( $code, $inLanguage = null, $include = 'all' ) {
752 $array = self::fetchLanguageNames( $inLanguage, $include );
753 return !array_key_exists( $code, $array ) ? '' : $array[$code];
757 * Get a message from the MediaWiki namespace.
759 * @param $msg String: message name
760 * @return string
762 function getMessageFromDB( $msg ) {
763 return wfMsgExt( $msg, array( 'parsemag', 'language' => $this ) );
767 * Get the native language name of $code.
768 * Only if defined in MediaWiki, no other data like CLDR.
769 * @param $code string
770 * @return string
771 * @deprecated in 1.20, use fetchLanguageName()
773 function getLanguageName( $code ) {
774 return self::fetchLanguageName( $code );
778 * @param $key string
779 * @return string
781 function getMonthName( $key ) {
782 return $this->getMessageFromDB( self::$mMonthMsgs[$key - 1] );
786 * @return array
788 function getMonthNamesArray() {
789 $monthNames = array( '' );
790 for ( $i = 1; $i < 13; $i++ ) {
791 $monthNames[] = $this->getMonthName( $i );
793 return $monthNames;
797 * @param $key string
798 * @return string
800 function getMonthNameGen( $key ) {
801 return $this->getMessageFromDB( self::$mMonthGenMsgs[$key - 1] );
805 * @param $key string
806 * @return string
808 function getMonthAbbreviation( $key ) {
809 return $this->getMessageFromDB( self::$mMonthAbbrevMsgs[$key - 1] );
813 * @return array
815 function getMonthAbbreviationsArray() {
816 $monthNames = array( '' );
817 for ( $i = 1; $i < 13; $i++ ) {
818 $monthNames[] = $this->getMonthAbbreviation( $i );
820 return $monthNames;
824 * @param $key string
825 * @return string
827 function getWeekdayName( $key ) {
828 return $this->getMessageFromDB( self::$mWeekdayMsgs[$key - 1] );
832 * @param $key string
833 * @return string
835 function getWeekdayAbbreviation( $key ) {
836 return $this->getMessageFromDB( self::$mWeekdayAbbrevMsgs[$key - 1] );
840 * @param $key string
841 * @return string
843 function getIranianCalendarMonthName( $key ) {
844 return $this->getMessageFromDB( self::$mIranianCalendarMonthMsgs[$key - 1] );
848 * @param $key string
849 * @return string
851 function getHebrewCalendarMonthName( $key ) {
852 return $this->getMessageFromDB( self::$mHebrewCalendarMonthMsgs[$key - 1] );
856 * @param $key string
857 * @return string
859 function getHebrewCalendarMonthNameGen( $key ) {
860 return $this->getMessageFromDB( self::$mHebrewCalendarMonthGenMsgs[$key - 1] );
864 * @param $key string
865 * @return string
867 function getHijriCalendarMonthName( $key ) {
868 return $this->getMessageFromDB( self::$mHijriCalendarMonthMsgs[$key - 1] );
872 * This is a workalike of PHP's date() function, but with better
873 * internationalisation, a reduced set of format characters, and a better
874 * escaping format.
876 * Supported format characters are dDjlNwzWFmMntLoYyaAgGhHiscrU. See the
877 * PHP manual for definitions. There are a number of extensions, which
878 * start with "x":
880 * xn Do not translate digits of the next numeric format character
881 * xN Toggle raw digit (xn) flag, stays set until explicitly unset
882 * xr Use roman numerals for the next numeric format character
883 * xh Use hebrew numerals for the next numeric format character
884 * xx Literal x
885 * xg Genitive month name
887 * xij j (day number) in Iranian calendar
888 * xiF F (month name) in Iranian calendar
889 * xin n (month number) in Iranian calendar
890 * xiy y (two digit year) in Iranian calendar
891 * xiY Y (full year) in Iranian calendar
893 * xjj j (day number) in Hebrew calendar
894 * xjF F (month name) in Hebrew calendar
895 * xjt t (days in month) in Hebrew calendar
896 * xjx xg (genitive month name) in Hebrew calendar
897 * xjn n (month number) in Hebrew calendar
898 * xjY Y (full year) in Hebrew calendar
900 * xmj j (day number) in Hijri calendar
901 * xmF F (month name) in Hijri calendar
902 * xmn n (month number) in Hijri calendar
903 * xmY Y (full year) in Hijri calendar
905 * xkY Y (full year) in Thai solar calendar. Months and days are
906 * identical to the Gregorian calendar
907 * xoY Y (full year) in Minguo calendar or Juche year.
908 * Months and days are identical to the
909 * Gregorian calendar
910 * xtY Y (full year) in Japanese nengo. Months and days are
911 * identical to the Gregorian calendar
913 * Characters enclosed in double quotes will be considered literal (with
914 * the quotes themselves removed). Unmatched quotes will be considered
915 * literal quotes. Example:
917 * "The month is" F => The month is January
918 * i's" => 20'11"
920 * Backslash escaping is also supported.
922 * Input timestamp is assumed to be pre-normalized to the desired local
923 * time zone, if any.
925 * @param $format String
926 * @param $ts String: 14-character timestamp
927 * YYYYMMDDHHMMSS
928 * 01234567890123
929 * @todo handling of "o" format character for Iranian, Hebrew, Hijri & Thai?
931 * @return string
933 function sprintfDate( $format, $ts ) {
934 $s = '';
935 $raw = false;
936 $roman = false;
937 $hebrewNum = false;
938 $unix = false;
939 $rawToggle = false;
940 $iranian = false;
941 $hebrew = false;
942 $hijri = false;
943 $thai = false;
944 $minguo = false;
945 $tenno = false;
946 for ( $p = 0; $p < strlen( $format ); $p++ ) {
947 $num = false;
948 $code = $format[$p];
949 if ( $code == 'x' && $p < strlen( $format ) - 1 ) {
950 $code .= $format[++$p];
953 if ( ( $code === 'xi' || $code == 'xj' || $code == 'xk' || $code == 'xm' || $code == 'xo' || $code == 'xt' ) && $p < strlen( $format ) - 1 ) {
954 $code .= $format[++$p];
957 switch ( $code ) {
958 case 'xx':
959 $s .= 'x';
960 break;
961 case 'xn':
962 $raw = true;
963 break;
964 case 'xN':
965 $rawToggle = !$rawToggle;
966 break;
967 case 'xr':
968 $roman = true;
969 break;
970 case 'xh':
971 $hebrewNum = true;
972 break;
973 case 'xg':
974 $s .= $this->getMonthNameGen( substr( $ts, 4, 2 ) );
975 break;
976 case 'xjx':
977 if ( !$hebrew ) $hebrew = self::tsToHebrew( $ts );
978 $s .= $this->getHebrewCalendarMonthNameGen( $hebrew[1] );
979 break;
980 case 'd':
981 $num = substr( $ts, 6, 2 );
982 break;
983 case 'D':
984 if ( !$unix ) $unix = wfTimestamp( TS_UNIX, $ts );
985 $s .= $this->getWeekdayAbbreviation( gmdate( 'w', $unix ) + 1 );
986 break;
987 case 'j':
988 $num = intval( substr( $ts, 6, 2 ) );
989 break;
990 case 'xij':
991 if ( !$iranian ) {
992 $iranian = self::tsToIranian( $ts );
994 $num = $iranian[2];
995 break;
996 case 'xmj':
997 if ( !$hijri ) {
998 $hijri = self::tsToHijri( $ts );
1000 $num = $hijri[2];
1001 break;
1002 case 'xjj':
1003 if ( !$hebrew ) {
1004 $hebrew = self::tsToHebrew( $ts );
1006 $num = $hebrew[2];
1007 break;
1008 case 'l':
1009 if ( !$unix ) {
1010 $unix = wfTimestamp( TS_UNIX, $ts );
1012 $s .= $this->getWeekdayName( gmdate( 'w', $unix ) + 1 );
1013 break;
1014 case 'N':
1015 if ( !$unix ) {
1016 $unix = wfTimestamp( TS_UNIX, $ts );
1018 $w = gmdate( 'w', $unix );
1019 $num = $w ? $w : 7;
1020 break;
1021 case 'w':
1022 if ( !$unix ) {
1023 $unix = wfTimestamp( TS_UNIX, $ts );
1025 $num = gmdate( 'w', $unix );
1026 break;
1027 case 'z':
1028 if ( !$unix ) {
1029 $unix = wfTimestamp( TS_UNIX, $ts );
1031 $num = gmdate( 'z', $unix );
1032 break;
1033 case 'W':
1034 if ( !$unix ) {
1035 $unix = wfTimestamp( TS_UNIX, $ts );
1037 $num = gmdate( 'W', $unix );
1038 break;
1039 case 'F':
1040 $s .= $this->getMonthName( substr( $ts, 4, 2 ) );
1041 break;
1042 case 'xiF':
1043 if ( !$iranian ) {
1044 $iranian = self::tsToIranian( $ts );
1046 $s .= $this->getIranianCalendarMonthName( $iranian[1] );
1047 break;
1048 case 'xmF':
1049 if ( !$hijri ) {
1050 $hijri = self::tsToHijri( $ts );
1052 $s .= $this->getHijriCalendarMonthName( $hijri[1] );
1053 break;
1054 case 'xjF':
1055 if ( !$hebrew ) {
1056 $hebrew = self::tsToHebrew( $ts );
1058 $s .= $this->getHebrewCalendarMonthName( $hebrew[1] );
1059 break;
1060 case 'm':
1061 $num = substr( $ts, 4, 2 );
1062 break;
1063 case 'M':
1064 $s .= $this->getMonthAbbreviation( substr( $ts, 4, 2 ) );
1065 break;
1066 case 'n':
1067 $num = intval( substr( $ts, 4, 2 ) );
1068 break;
1069 case 'xin':
1070 if ( !$iranian ) {
1071 $iranian = self::tsToIranian( $ts );
1073 $num = $iranian[1];
1074 break;
1075 case 'xmn':
1076 if ( !$hijri ) {
1077 $hijri = self::tsToHijri ( $ts );
1079 $num = $hijri[1];
1080 break;
1081 case 'xjn':
1082 if ( !$hebrew ) {
1083 $hebrew = self::tsToHebrew( $ts );
1085 $num = $hebrew[1];
1086 break;
1087 case 't':
1088 if ( !$unix ) {
1089 $unix = wfTimestamp( TS_UNIX, $ts );
1091 $num = gmdate( 't', $unix );
1092 break;
1093 case 'xjt':
1094 if ( !$hebrew ) {
1095 $hebrew = self::tsToHebrew( $ts );
1097 $num = $hebrew[3];
1098 break;
1099 case 'L':
1100 if ( !$unix ) {
1101 $unix = wfTimestamp( TS_UNIX, $ts );
1103 $num = gmdate( 'L', $unix );
1104 break;
1105 case 'o':
1106 if ( !$unix ) {
1107 $unix = wfTimestamp( TS_UNIX, $ts );
1109 $num = gmdate( 'o', $unix );
1110 break;
1111 case 'Y':
1112 $num = substr( $ts, 0, 4 );
1113 break;
1114 case 'xiY':
1115 if ( !$iranian ) {
1116 $iranian = self::tsToIranian( $ts );
1118 $num = $iranian[0];
1119 break;
1120 case 'xmY':
1121 if ( !$hijri ) {
1122 $hijri = self::tsToHijri( $ts );
1124 $num = $hijri[0];
1125 break;
1126 case 'xjY':
1127 if ( !$hebrew ) {
1128 $hebrew = self::tsToHebrew( $ts );
1130 $num = $hebrew[0];
1131 break;
1132 case 'xkY':
1133 if ( !$thai ) {
1134 $thai = self::tsToYear( $ts, 'thai' );
1136 $num = $thai[0];
1137 break;
1138 case 'xoY':
1139 if ( !$minguo ) {
1140 $minguo = self::tsToYear( $ts, 'minguo' );
1142 $num = $minguo[0];
1143 break;
1144 case 'xtY':
1145 if ( !$tenno ) {
1146 $tenno = self::tsToYear( $ts, 'tenno' );
1148 $num = $tenno[0];
1149 break;
1150 case 'y':
1151 $num = substr( $ts, 2, 2 );
1152 break;
1153 case 'xiy':
1154 if ( !$iranian ) {
1155 $iranian = self::tsToIranian( $ts );
1157 $num = substr( $iranian[0], -2 );
1158 break;
1159 case 'a':
1160 $s .= intval( substr( $ts, 8, 2 ) ) < 12 ? 'am' : 'pm';
1161 break;
1162 case 'A':
1163 $s .= intval( substr( $ts, 8, 2 ) ) < 12 ? 'AM' : 'PM';
1164 break;
1165 case 'g':
1166 $h = substr( $ts, 8, 2 );
1167 $num = $h % 12 ? $h % 12 : 12;
1168 break;
1169 case 'G':
1170 $num = intval( substr( $ts, 8, 2 ) );
1171 break;
1172 case 'h':
1173 $h = substr( $ts, 8, 2 );
1174 $num = sprintf( '%02d', $h % 12 ? $h % 12 : 12 );
1175 break;
1176 case 'H':
1177 $num = substr( $ts, 8, 2 );
1178 break;
1179 case 'i':
1180 $num = substr( $ts, 10, 2 );
1181 break;
1182 case 's':
1183 $num = substr( $ts, 12, 2 );
1184 break;
1185 case 'c':
1186 if ( !$unix ) {
1187 $unix = wfTimestamp( TS_UNIX, $ts );
1189 $s .= gmdate( 'c', $unix );
1190 break;
1191 case 'r':
1192 if ( !$unix ) {
1193 $unix = wfTimestamp( TS_UNIX, $ts );
1195 $s .= gmdate( 'r', $unix );
1196 break;
1197 case 'U':
1198 if ( !$unix ) {
1199 $unix = wfTimestamp( TS_UNIX, $ts );
1201 $num = $unix;
1202 break;
1203 case '\\':
1204 # Backslash escaping
1205 if ( $p < strlen( $format ) - 1 ) {
1206 $s .= $format[++$p];
1207 } else {
1208 $s .= '\\';
1210 break;
1211 case '"':
1212 # Quoted literal
1213 if ( $p < strlen( $format ) - 1 ) {
1214 $endQuote = strpos( $format, '"', $p + 1 );
1215 if ( $endQuote === false ) {
1216 # No terminating quote, assume literal "
1217 $s .= '"';
1218 } else {
1219 $s .= substr( $format, $p + 1, $endQuote - $p - 1 );
1220 $p = $endQuote;
1222 } else {
1223 # Quote at end of string, assume literal "
1224 $s .= '"';
1226 break;
1227 default:
1228 $s .= $format[$p];
1230 if ( $num !== false ) {
1231 if ( $rawToggle || $raw ) {
1232 $s .= $num;
1233 $raw = false;
1234 } elseif ( $roman ) {
1235 $s .= self::romanNumeral( $num );
1236 $roman = false;
1237 } elseif ( $hebrewNum ) {
1238 $s .= self::hebrewNumeral( $num );
1239 $hebrewNum = false;
1240 } else {
1241 $s .= $this->formatNum( $num, true );
1245 return $s;
1248 private static $GREG_DAYS = array( 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 );
1249 private static $IRANIAN_DAYS = array( 31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29 );
1252 * Algorithm by Roozbeh Pournader and Mohammad Toossi to convert
1253 * Gregorian dates to Iranian dates. Originally written in C, it
1254 * is released under the terms of GNU Lesser General Public
1255 * License. Conversion to PHP was performed by Niklas Laxström.
1257 * Link: http://www.farsiweb.info/jalali/jalali.c
1259 * @param $ts string
1261 * @return string
1263 private static function tsToIranian( $ts ) {
1264 $gy = substr( $ts, 0, 4 ) -1600;
1265 $gm = substr( $ts, 4, 2 ) -1;
1266 $gd = substr( $ts, 6, 2 ) -1;
1268 # Days passed from the beginning (including leap years)
1269 $gDayNo = 365 * $gy
1270 + floor( ( $gy + 3 ) / 4 )
1271 - floor( ( $gy + 99 ) / 100 )
1272 + floor( ( $gy + 399 ) / 400 );
1274 // Add days of the past months of this year
1275 for ( $i = 0; $i < $gm; $i++ ) {
1276 $gDayNo += self::$GREG_DAYS[$i];
1279 // Leap years
1280 if ( $gm > 1 && ( ( $gy % 4 === 0 && $gy % 100 !== 0 || ( $gy % 400 == 0 ) ) ) ) {
1281 $gDayNo++;
1284 // Days passed in current month
1285 $gDayNo += (int)$gd;
1287 $jDayNo = $gDayNo - 79;
1289 $jNp = floor( $jDayNo / 12053 );
1290 $jDayNo %= 12053;
1292 $jy = 979 + 33 * $jNp + 4 * floor( $jDayNo / 1461 );
1293 $jDayNo %= 1461;
1295 if ( $jDayNo >= 366 ) {
1296 $jy += floor( ( $jDayNo - 1 ) / 365 );
1297 $jDayNo = floor( ( $jDayNo - 1 ) % 365 );
1300 for ( $i = 0; $i < 11 && $jDayNo >= self::$IRANIAN_DAYS[$i]; $i++ ) {
1301 $jDayNo -= self::$IRANIAN_DAYS[$i];
1304 $jm = $i + 1;
1305 $jd = $jDayNo + 1;
1307 return array( $jy, $jm, $jd );
1311 * Converting Gregorian dates to Hijri dates.
1313 * Based on a PHP-Nuke block by Sharjeel which is released under GNU/GPL license
1315 * @see http://phpnuke.org/modules.php?name=News&file=article&sid=8234&mode=thread&order=0&thold=0
1317 * @param $ts string
1319 * @return string
1321 private static function tsToHijri( $ts ) {
1322 $year = substr( $ts, 0, 4 );
1323 $month = substr( $ts, 4, 2 );
1324 $day = substr( $ts, 6, 2 );
1326 $zyr = $year;
1327 $zd = $day;
1328 $zm = $month;
1329 $zy = $zyr;
1331 if (
1332 ( $zy > 1582 ) || ( ( $zy == 1582 ) && ( $zm > 10 ) ) ||
1333 ( ( $zy == 1582 ) && ( $zm == 10 ) && ( $zd > 14 ) )
1336 $zjd = (int)( ( 1461 * ( $zy + 4800 + (int)( ( $zm - 14 ) / 12 ) ) ) / 4 ) +
1337 (int)( ( 367 * ( $zm - 2 - 12 * ( (int)( ( $zm - 14 ) / 12 ) ) ) ) / 12 ) -
1338 (int)( ( 3 * (int)( ( ( $zy + 4900 + (int)( ( $zm - 14 ) / 12 ) ) / 100 ) ) ) / 4 ) +
1339 $zd - 32075;
1340 } else {
1341 $zjd = 367 * $zy - (int)( ( 7 * ( $zy + 5001 + (int)( ( $zm - 9 ) / 7 ) ) ) / 4 ) +
1342 (int)( ( 275 * $zm ) / 9 ) + $zd + 1729777;
1345 $zl = $zjd -1948440 + 10632;
1346 $zn = (int)( ( $zl - 1 ) / 10631 );
1347 $zl = $zl - 10631 * $zn + 354;
1348 $zj = ( (int)( ( 10985 - $zl ) / 5316 ) ) * ( (int)( ( 50 * $zl ) / 17719 ) ) + ( (int)( $zl / 5670 ) ) * ( (int)( ( 43 * $zl ) / 15238 ) );
1349 $zl = $zl - ( (int)( ( 30 - $zj ) / 15 ) ) * ( (int)( ( 17719 * $zj ) / 50 ) ) - ( (int)( $zj / 16 ) ) * ( (int)( ( 15238 * $zj ) / 43 ) ) + 29;
1350 $zm = (int)( ( 24 * $zl ) / 709 );
1351 $zd = $zl - (int)( ( 709 * $zm ) / 24 );
1352 $zy = 30 * $zn + $zj - 30;
1354 return array( $zy, $zm, $zd );
1358 * Converting Gregorian dates to Hebrew dates.
1360 * Based on a JavaScript code by Abu Mami and Yisrael Hersch
1361 * (abu-mami@kaluach.net, http://www.kaluach.net), who permitted
1362 * to translate the relevant functions into PHP and release them under
1363 * GNU GPL.
1365 * The months are counted from Tishrei = 1. In a leap year, Adar I is 13
1366 * and Adar II is 14. In a non-leap year, Adar is 6.
1368 * @param $ts string
1370 * @return string
1372 private static function tsToHebrew( $ts ) {
1373 # Parse date
1374 $year = substr( $ts, 0, 4 );
1375 $month = substr( $ts, 4, 2 );
1376 $day = substr( $ts, 6, 2 );
1378 # Calculate Hebrew year
1379 $hebrewYear = $year + 3760;
1381 # Month number when September = 1, August = 12
1382 $month += 4;
1383 if ( $month > 12 ) {
1384 # Next year
1385 $month -= 12;
1386 $year++;
1387 $hebrewYear++;
1390 # Calculate day of year from 1 September
1391 $dayOfYear = $day;
1392 for ( $i = 1; $i < $month; $i++ ) {
1393 if ( $i == 6 ) {
1394 # February
1395 $dayOfYear += 28;
1396 # Check if the year is leap
1397 if ( $year % 400 == 0 || ( $year % 4 == 0 && $year % 100 > 0 ) ) {
1398 $dayOfYear++;
1400 } elseif ( $i == 8 || $i == 10 || $i == 1 || $i == 3 ) {
1401 $dayOfYear += 30;
1402 } else {
1403 $dayOfYear += 31;
1407 # Calculate the start of the Hebrew year
1408 $start = self::hebrewYearStart( $hebrewYear );
1410 # Calculate next year's start
1411 if ( $dayOfYear <= $start ) {
1412 # Day is before the start of the year - it is the previous year
1413 # Next year's start
1414 $nextStart = $start;
1415 # Previous year
1416 $year--;
1417 $hebrewYear--;
1418 # Add days since previous year's 1 September
1419 $dayOfYear += 365;
1420 if ( ( $year % 400 == 0 ) || ( $year % 100 != 0 && $year % 4 == 0 ) ) {
1421 # Leap year
1422 $dayOfYear++;
1424 # Start of the new (previous) year
1425 $start = self::hebrewYearStart( $hebrewYear );
1426 } else {
1427 # Next year's start
1428 $nextStart = self::hebrewYearStart( $hebrewYear + 1 );
1431 # Calculate Hebrew day of year
1432 $hebrewDayOfYear = $dayOfYear - $start;
1434 # Difference between year's days
1435 $diff = $nextStart - $start;
1436 # Add 12 (or 13 for leap years) days to ignore the difference between
1437 # Hebrew and Gregorian year (353 at least vs. 365/6) - now the
1438 # difference is only about the year type
1439 if ( ( $year % 400 == 0 ) || ( $year % 100 != 0 && $year % 4 == 0 ) ) {
1440 $diff += 13;
1441 } else {
1442 $diff += 12;
1445 # Check the year pattern, and is leap year
1446 # 0 means an incomplete year, 1 means a regular year, 2 means a complete year
1447 # This is mod 30, to work on both leap years (which add 30 days of Adar I)
1448 # and non-leap years
1449 $yearPattern = $diff % 30;
1450 # Check if leap year
1451 $isLeap = $diff >= 30;
1453 # Calculate day in the month from number of day in the Hebrew year
1454 # Don't check Adar - if the day is not in Adar, we will stop before;
1455 # if it is in Adar, we will use it to check if it is Adar I or Adar II
1456 $hebrewDay = $hebrewDayOfYear;
1457 $hebrewMonth = 1;
1458 $days = 0;
1459 while ( $hebrewMonth <= 12 ) {
1460 # Calculate days in this month
1461 if ( $isLeap && $hebrewMonth == 6 ) {
1462 # Adar in a leap year
1463 if ( $isLeap ) {
1464 # Leap year - has Adar I, with 30 days, and Adar II, with 29 days
1465 $days = 30;
1466 if ( $hebrewDay <= $days ) {
1467 # Day in Adar I
1468 $hebrewMonth = 13;
1469 } else {
1470 # Subtract the days of Adar I
1471 $hebrewDay -= $days;
1472 # Try Adar II
1473 $days = 29;
1474 if ( $hebrewDay <= $days ) {
1475 # Day in Adar II
1476 $hebrewMonth = 14;
1480 } elseif ( $hebrewMonth == 2 && $yearPattern == 2 ) {
1481 # Cheshvan in a complete year (otherwise as the rule below)
1482 $days = 30;
1483 } elseif ( $hebrewMonth == 3 && $yearPattern == 0 ) {
1484 # Kislev in an incomplete year (otherwise as the rule below)
1485 $days = 29;
1486 } else {
1487 # Odd months have 30 days, even have 29
1488 $days = 30 - ( $hebrewMonth - 1 ) % 2;
1490 if ( $hebrewDay <= $days ) {
1491 # In the current month
1492 break;
1493 } else {
1494 # Subtract the days of the current month
1495 $hebrewDay -= $days;
1496 # Try in the next month
1497 $hebrewMonth++;
1501 return array( $hebrewYear, $hebrewMonth, $hebrewDay, $days );
1505 * This calculates the Hebrew year start, as days since 1 September.
1506 * Based on Carl Friedrich Gauss algorithm for finding Easter date.
1507 * Used for Hebrew date.
1509 * @param $year int
1511 * @return string
1513 private static function hebrewYearStart( $year ) {
1514 $a = intval( ( 12 * ( $year - 1 ) + 17 ) % 19 );
1515 $b = intval( ( $year - 1 ) % 4 );
1516 $m = 32.044093161144 + 1.5542417966212 * $a + $b / 4.0 - 0.0031777940220923 * ( $year - 1 );
1517 if ( $m < 0 ) {
1518 $m--;
1520 $Mar = intval( $m );
1521 if ( $m < 0 ) {
1522 $m++;
1524 $m -= $Mar;
1526 $c = intval( ( $Mar + 3 * ( $year - 1 ) + 5 * $b + 5 ) % 7 );
1527 if ( $c == 0 && $a > 11 && $m >= 0.89772376543210 ) {
1528 $Mar++;
1529 } elseif ( $c == 1 && $a > 6 && $m >= 0.63287037037037 ) {
1530 $Mar += 2;
1531 } elseif ( $c == 2 || $c == 4 || $c == 6 ) {
1532 $Mar++;
1535 $Mar += intval( ( $year - 3761 ) / 100 ) - intval( ( $year - 3761 ) / 400 ) - 24;
1536 return $Mar;
1540 * Algorithm to convert Gregorian dates to Thai solar dates,
1541 * Minguo dates or Minguo dates.
1543 * Link: http://en.wikipedia.org/wiki/Thai_solar_calendar
1544 * http://en.wikipedia.org/wiki/Minguo_calendar
1545 * http://en.wikipedia.org/wiki/Japanese_era_name
1547 * @param $ts String: 14-character timestamp
1548 * @param $cName String: calender name
1549 * @return Array: converted year, month, day
1551 private static function tsToYear( $ts, $cName ) {
1552 $gy = substr( $ts, 0, 4 );
1553 $gm = substr( $ts, 4, 2 );
1554 $gd = substr( $ts, 6, 2 );
1556 if ( !strcmp( $cName, 'thai' ) ) {
1557 # Thai solar dates
1558 # Add 543 years to the Gregorian calendar
1559 # Months and days are identical
1560 $gy_offset = $gy + 543;
1561 } elseif ( ( !strcmp( $cName, 'minguo' ) ) || !strcmp( $cName, 'juche' ) ) {
1562 # Minguo dates
1563 # Deduct 1911 years from the Gregorian calendar
1564 # Months and days are identical
1565 $gy_offset = $gy - 1911;
1566 } elseif ( !strcmp( $cName, 'tenno' ) ) {
1567 # Nengō dates up to Meiji period
1568 # Deduct years from the Gregorian calendar
1569 # depending on the nengo periods
1570 # Months and days are identical
1571 if ( ( $gy < 1912 ) || ( ( $gy == 1912 ) && ( $gm < 7 ) ) || ( ( $gy == 1912 ) && ( $gm == 7 ) && ( $gd < 31 ) ) ) {
1572 # Meiji period
1573 $gy_gannen = $gy - 1868 + 1;
1574 $gy_offset = $gy_gannen;
1575 if ( $gy_gannen == 1 ) {
1576 $gy_offset = '元';
1578 $gy_offset = '明治' . $gy_offset;
1579 } elseif (
1580 ( ( $gy == 1912 ) && ( $gm == 7 ) && ( $gd == 31 ) ) ||
1581 ( ( $gy == 1912 ) && ( $gm >= 8 ) ) ||
1582 ( ( $gy > 1912 ) && ( $gy < 1926 ) ) ||
1583 ( ( $gy == 1926 ) && ( $gm < 12 ) ) ||
1584 ( ( $gy == 1926 ) && ( $gm == 12 ) && ( $gd < 26 ) )
1587 # Taishō period
1588 $gy_gannen = $gy - 1912 + 1;
1589 $gy_offset = $gy_gannen;
1590 if ( $gy_gannen == 1 ) {
1591 $gy_offset = '元';
1593 $gy_offset = '大正' . $gy_offset;
1594 } elseif (
1595 ( ( $gy == 1926 ) && ( $gm == 12 ) && ( $gd >= 26 ) ) ||
1596 ( ( $gy > 1926 ) && ( $gy < 1989 ) ) ||
1597 ( ( $gy == 1989 ) && ( $gm == 1 ) && ( $gd < 8 ) )
1600 # Shōwa period
1601 $gy_gannen = $gy - 1926 + 1;
1602 $gy_offset = $gy_gannen;
1603 if ( $gy_gannen == 1 ) {
1604 $gy_offset = '元';
1606 $gy_offset = '昭和' . $gy_offset;
1607 } else {
1608 # Heisei period
1609 $gy_gannen = $gy - 1989 + 1;
1610 $gy_offset = $gy_gannen;
1611 if ( $gy_gannen == 1 ) {
1612 $gy_offset = '元';
1614 $gy_offset = '平成' . $gy_offset;
1616 } else {
1617 $gy_offset = $gy;
1620 return array( $gy_offset, $gm, $gd );
1624 * Roman number formatting up to 3000
1626 * @param $num int
1628 * @return string
1630 static function romanNumeral( $num ) {
1631 static $table = array(
1632 array( '', 'I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX', 'X' ),
1633 array( '', 'X', 'XX', 'XXX', 'XL', 'L', 'LX', 'LXX', 'LXXX', 'XC', 'C' ),
1634 array( '', 'C', 'CC', 'CCC', 'CD', 'D', 'DC', 'DCC', 'DCCC', 'CM', 'M' ),
1635 array( '', 'M', 'MM', 'MMM' )
1638 $num = intval( $num );
1639 if ( $num > 3000 || $num <= 0 ) {
1640 return $num;
1643 $s = '';
1644 for ( $pow10 = 1000, $i = 3; $i >= 0; $pow10 /= 10, $i-- ) {
1645 if ( $num >= $pow10 ) {
1646 $s .= $table[$i][(int)floor( $num / $pow10 )];
1648 $num = $num % $pow10;
1650 return $s;
1654 * Hebrew Gematria number formatting up to 9999
1656 * @param $num int
1658 * @return string
1660 static function hebrewNumeral( $num ) {
1661 static $table = array(
1662 array( '', 'א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז', 'ח', 'ט', 'י' ),
1663 array( '', 'י', 'כ', 'ל', 'מ', 'נ', 'ס', 'ע', 'פ', 'צ', 'ק' ),
1664 array( '', 'ק', 'ר', 'ש', 'ת', 'תק', 'תר', 'תש', 'תת', 'תתק', 'תתר' ),
1665 array( '', 'א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז', 'ח', 'ט', 'י' )
1668 $num = intval( $num );
1669 if ( $num > 9999 || $num <= 0 ) {
1670 return $num;
1673 $s = '';
1674 for ( $pow10 = 1000, $i = 3; $i >= 0; $pow10 /= 10, $i-- ) {
1675 if ( $num >= $pow10 ) {
1676 if ( $num == 15 || $num == 16 ) {
1677 $s .= $table[0][9] . $table[0][$num - 9];
1678 $num = 0;
1679 } else {
1680 $s .= $table[$i][intval( ( $num / $pow10 ) )];
1681 if ( $pow10 == 1000 ) {
1682 $s .= "'";
1686 $num = $num % $pow10;
1688 if ( strlen( $s ) == 2 ) {
1689 $str = $s . "'";
1690 } else {
1691 $str = substr( $s, 0, strlen( $s ) - 2 ) . '"';
1692 $str .= substr( $s, strlen( $s ) - 2, 2 );
1694 $start = substr( $str, 0, strlen( $str ) - 2 );
1695 $end = substr( $str, strlen( $str ) - 2 );
1696 switch( $end ) {
1697 case 'כ':
1698 $str = $start . 'ך';
1699 break;
1700 case 'מ':
1701 $str = $start . 'ם';
1702 break;
1703 case 'נ':
1704 $str = $start . 'ן';
1705 break;
1706 case 'פ':
1707 $str = $start . 'ף';
1708 break;
1709 case 'צ':
1710 $str = $start . 'ץ';
1711 break;
1713 return $str;
1717 * Used by date() and time() to adjust the time output.
1719 * @param $ts Int the time in date('YmdHis') format
1720 * @param $tz Mixed: adjust the time by this amount (default false, mean we
1721 * get user timecorrection setting)
1722 * @return int
1724 function userAdjust( $ts, $tz = false ) {
1725 global $wgUser, $wgLocalTZoffset;
1727 if ( $tz === false ) {
1728 $tz = $wgUser->getOption( 'timecorrection' );
1731 $data = explode( '|', $tz, 3 );
1733 if ( $data[0] == 'ZoneInfo' ) {
1734 wfSuppressWarnings();
1735 $userTZ = timezone_open( $data[2] );
1736 wfRestoreWarnings();
1737 if ( $userTZ !== false ) {
1738 $date = date_create( $ts, timezone_open( 'UTC' ) );
1739 date_timezone_set( $date, $userTZ );
1740 $date = date_format( $date, 'YmdHis' );
1741 return $date;
1743 # Unrecognized timezone, default to 'Offset' with the stored offset.
1744 $data[0] = 'Offset';
1747 $minDiff = 0;
1748 if ( $data[0] == 'System' || $tz == '' ) {
1749 #  Global offset in minutes.
1750 if ( isset( $wgLocalTZoffset ) ) {
1751 $minDiff = $wgLocalTZoffset;
1753 } elseif ( $data[0] == 'Offset' ) {
1754 $minDiff = intval( $data[1] );
1755 } else {
1756 $data = explode( ':', $tz );
1757 if ( count( $data ) == 2 ) {
1758 $data[0] = intval( $data[0] );
1759 $data[1] = intval( $data[1] );
1760 $minDiff = abs( $data[0] ) * 60 + $data[1];
1761 if ( $data[0] < 0 ) {
1762 $minDiff = -$minDiff;
1764 } else {
1765 $minDiff = intval( $data[0] ) * 60;
1769 # No difference ? Return time unchanged
1770 if ( 0 == $minDiff ) {
1771 return $ts;
1774 wfSuppressWarnings(); // E_STRICT system time bitching
1775 # Generate an adjusted date; take advantage of the fact that mktime
1776 # will normalize out-of-range values so we don't have to split $minDiff
1777 # into hours and minutes.
1778 $t = mktime( (
1779 (int)substr( $ts, 8, 2 ) ), # Hours
1780 (int)substr( $ts, 10, 2 ) + $minDiff, # Minutes
1781 (int)substr( $ts, 12, 2 ), # Seconds
1782 (int)substr( $ts, 4, 2 ), # Month
1783 (int)substr( $ts, 6, 2 ), # Day
1784 (int)substr( $ts, 0, 4 ) ); # Year
1786 $date = date( 'YmdHis', $t );
1787 wfRestoreWarnings();
1789 return $date;
1793 * This is meant to be used by time(), date(), and timeanddate() to get
1794 * the date preference they're supposed to use, it should be used in
1795 * all children.
1797 *<code>
1798 * function timeanddate([...], $format = true) {
1799 * $datePreference = $this->dateFormat($format);
1800 * [...]
1802 *</code>
1804 * @param $usePrefs Mixed: if true, the user's preference is used
1805 * if false, the site/language default is used
1806 * if int/string, assumed to be a format.
1807 * @return string
1809 function dateFormat( $usePrefs = true ) {
1810 global $wgUser;
1812 if ( is_bool( $usePrefs ) ) {
1813 if ( $usePrefs ) {
1814 $datePreference = $wgUser->getDatePreference();
1815 } else {
1816 $datePreference = (string)User::getDefaultOption( 'date' );
1818 } else {
1819 $datePreference = (string)$usePrefs;
1822 // return int
1823 if ( $datePreference == '' ) {
1824 return 'default';
1827 return $datePreference;
1831 * Get a format string for a given type and preference
1832 * @param $type string May be date, time or both
1833 * @param $pref string The format name as it appears in Messages*.php
1835 * @return string
1837 function getDateFormatString( $type, $pref ) {
1838 if ( !isset( $this->dateFormatStrings[$type][$pref] ) ) {
1839 if ( $pref == 'default' ) {
1840 $pref = $this->getDefaultDateFormat();
1841 $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" );
1842 } else {
1843 $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" );
1844 if ( is_null( $df ) ) {
1845 $pref = $this->getDefaultDateFormat();
1846 $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" );
1849 $this->dateFormatStrings[$type][$pref] = $df;
1851 return $this->dateFormatStrings[$type][$pref];
1855 * @param $ts Mixed: the time format which needs to be turned into a
1856 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1857 * @param $adj Bool: whether to adjust the time output according to the
1858 * user configured offset ($timecorrection)
1859 * @param $format Mixed: true to use user's date format preference
1860 * @param $timecorrection String|bool the time offset as returned by
1861 * validateTimeZone() in Special:Preferences
1862 * @return string
1864 function date( $ts, $adj = false, $format = true, $timecorrection = false ) {
1865 $ts = wfTimestamp( TS_MW, $ts );
1866 if ( $adj ) {
1867 $ts = $this->userAdjust( $ts, $timecorrection );
1869 $df = $this->getDateFormatString( 'date', $this->dateFormat( $format ) );
1870 return $this->sprintfDate( $df, $ts );
1874 * @param $ts Mixed: the time format which needs to be turned into a
1875 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1876 * @param $adj Bool: whether to adjust the time output according to the
1877 * user configured offset ($timecorrection)
1878 * @param $format Mixed: true to use user's date format preference
1879 * @param $timecorrection String|bool the time offset as returned by
1880 * validateTimeZone() in Special:Preferences
1881 * @return string
1883 function time( $ts, $adj = false, $format = true, $timecorrection = false ) {
1884 $ts = wfTimestamp( TS_MW, $ts );
1885 if ( $adj ) {
1886 $ts = $this->userAdjust( $ts, $timecorrection );
1888 $df = $this->getDateFormatString( 'time', $this->dateFormat( $format ) );
1889 return $this->sprintfDate( $df, $ts );
1893 * @param $ts Mixed: the time format which needs to be turned into a
1894 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1895 * @param $adj Bool: whether to adjust the time output according to the
1896 * user configured offset ($timecorrection)
1897 * @param $format Mixed: what format to return, if it's false output the
1898 * default one (default true)
1899 * @param $timecorrection String|bool the time offset as returned by
1900 * validateTimeZone() in Special:Preferences
1901 * @return string
1903 function timeanddate( $ts, $adj = false, $format = true, $timecorrection = false ) {
1904 $ts = wfTimestamp( TS_MW, $ts );
1905 if ( $adj ) {
1906 $ts = $this->userAdjust( $ts, $timecorrection );
1908 $df = $this->getDateFormatString( 'both', $this->dateFormat( $format ) );
1909 return $this->sprintfDate( $df, $ts );
1913 * Internal helper function for userDate(), userTime() and userTimeAndDate()
1915 * @param $type String: can be 'date', 'time' or 'both'
1916 * @param $ts Mixed: the time format which needs to be turned into a
1917 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1918 * @param $user User object used to get preferences for timezone and format
1919 * @param $options Array, can contain the following keys:
1920 * - 'timecorrection': time correction, can have the following values:
1921 * - true: use user's preference
1922 * - false: don't use time correction
1923 * - integer: value of time correction in minutes
1924 * - 'format': format to use, can have the following values:
1925 * - true: use user's preference
1926 * - false: use default preference
1927 * - string: format to use
1928 * @since 1.19
1929 * @return String
1931 private function internalUserTimeAndDate( $type, $ts, User $user, array $options ) {
1932 $ts = wfTimestamp( TS_MW, $ts );
1933 $options += array( 'timecorrection' => true, 'format' => true );
1934 if ( $options['timecorrection'] !== false ) {
1935 if ( $options['timecorrection'] === true ) {
1936 $offset = $user->getOption( 'timecorrection' );
1937 } else {
1938 $offset = $options['timecorrection'];
1940 $ts = $this->userAdjust( $ts, $offset );
1942 if ( $options['format'] === true ) {
1943 $format = $user->getDatePreference();
1944 } else {
1945 $format = $options['format'];
1947 $df = $this->getDateFormatString( $type, $this->dateFormat( $format ) );
1948 return $this->sprintfDate( $df, $ts );
1952 * Get the formatted date for the given timestamp and formatted for
1953 * the given user.
1955 * @param $ts Mixed: the time format which needs to be turned into a
1956 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1957 * @param $user User object used to get preferences for timezone and format
1958 * @param $options Array, can contain the following keys:
1959 * - 'timecorrection': time correction, can have the following values:
1960 * - true: use user's preference
1961 * - false: don't use time correction
1962 * - integer: value of time correction in minutes
1963 * - 'format': format to use, can have the following values:
1964 * - true: use user's preference
1965 * - false: use default preference
1966 * - string: format to use
1967 * @since 1.19
1968 * @return String
1970 public function userDate( $ts, User $user, array $options = array() ) {
1971 return $this->internalUserTimeAndDate( 'date', $ts, $user, $options );
1975 * Get the formatted time for the given timestamp and formatted for
1976 * the given user.
1978 * @param $ts Mixed: the time format which needs to be turned into a
1979 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1980 * @param $user User object used to get preferences for timezone and format
1981 * @param $options Array, can contain the following keys:
1982 * - 'timecorrection': time correction, can have the following values:
1983 * - true: use user's preference
1984 * - false: don't use time correction
1985 * - integer: value of time correction in minutes
1986 * - 'format': format to use, can have the following values:
1987 * - true: use user's preference
1988 * - false: use default preference
1989 * - string: format to use
1990 * @since 1.19
1991 * @return String
1993 public function userTime( $ts, User $user, array $options = array() ) {
1994 return $this->internalUserTimeAndDate( 'time', $ts, $user, $options );
1998 * Get the formatted date and time for the given timestamp and formatted for
1999 * the given user.
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 $user User object used to get preferences for timezone and format
2004 * @param $options Array, can contain the following keys:
2005 * - 'timecorrection': time correction, can have the following values:
2006 * - true: use user's preference
2007 * - false: don't use time correction
2008 * - integer: value of time correction in minutes
2009 * - 'format': format to use, can have the following values:
2010 * - true: use user's preference
2011 * - false: use default preference
2012 * - string: format to use
2013 * @since 1.19
2014 * @return String
2016 public function userTimeAndDate( $ts, User $user, array $options = array() ) {
2017 return $this->internalUserTimeAndDate( 'both', $ts, $user, $options );
2021 * @param $key string
2022 * @return array|null
2024 function getMessage( $key ) {
2025 return self::$dataCache->getSubitem( $this->mCode, 'messages', $key );
2029 * @return array
2031 function getAllMessages() {
2032 return self::$dataCache->getItem( $this->mCode, 'messages' );
2036 * @param $in
2037 * @param $out
2038 * @param $string
2039 * @return string
2041 function iconv( $in, $out, $string ) {
2042 # This is a wrapper for iconv in all languages except esperanto,
2043 # which does some nasty x-conversions beforehand
2045 # Even with //IGNORE iconv can whine about illegal characters in
2046 # *input* string. We just ignore those too.
2047 # REF: http://bugs.php.net/bug.php?id=37166
2048 # REF: https://bugzilla.wikimedia.org/show_bug.cgi?id=16885
2049 wfSuppressWarnings();
2050 $text = iconv( $in, $out . '//IGNORE', $string );
2051 wfRestoreWarnings();
2052 return $text;
2055 // callback functions for uc(), lc(), ucwords(), ucwordbreaks()
2058 * @param $matches array
2059 * @return mixed|string
2061 function ucwordbreaksCallbackAscii( $matches ) {
2062 return $this->ucfirst( $matches[1] );
2066 * @param $matches array
2067 * @return string
2069 function ucwordbreaksCallbackMB( $matches ) {
2070 return mb_strtoupper( $matches[0] );
2074 * @param $matches array
2075 * @return string
2077 function ucCallback( $matches ) {
2078 list( $wikiUpperChars ) = self::getCaseMaps();
2079 return strtr( $matches[1], $wikiUpperChars );
2083 * @param $matches array
2084 * @return string
2086 function lcCallback( $matches ) {
2087 list( , $wikiLowerChars ) = self::getCaseMaps();
2088 return strtr( $matches[1], $wikiLowerChars );
2092 * @param $matches array
2093 * @return string
2095 function ucwordsCallbackMB( $matches ) {
2096 return mb_strtoupper( $matches[0] );
2100 * @param $matches array
2101 * @return string
2103 function ucwordsCallbackWiki( $matches ) {
2104 list( $wikiUpperChars ) = self::getCaseMaps();
2105 return strtr( $matches[0], $wikiUpperChars );
2109 * Make a string's first character uppercase
2111 * @param $str string
2113 * @return string
2115 function ucfirst( $str ) {
2116 $o = ord( $str );
2117 if ( $o < 96 ) { // if already uppercase...
2118 return $str;
2119 } elseif ( $o < 128 ) {
2120 return ucfirst( $str ); // use PHP's ucfirst()
2121 } else {
2122 // fall back to more complex logic in case of multibyte strings
2123 return $this->uc( $str, true );
2128 * Convert a string to uppercase
2130 * @param $str string
2131 * @param $first bool
2133 * @return string
2135 function uc( $str, $first = false ) {
2136 if ( function_exists( 'mb_strtoupper' ) ) {
2137 if ( $first ) {
2138 if ( $this->isMultibyte( $str ) ) {
2139 return mb_strtoupper( mb_substr( $str, 0, 1 ) ) . mb_substr( $str, 1 );
2140 } else {
2141 return ucfirst( $str );
2143 } else {
2144 return $this->isMultibyte( $str ) ? mb_strtoupper( $str ) : strtoupper( $str );
2146 } else {
2147 if ( $this->isMultibyte( $str ) ) {
2148 $x = $first ? '^' : '';
2149 return preg_replace_callback(
2150 "/$x([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/",
2151 array( $this, 'ucCallback' ),
2152 $str
2154 } else {
2155 return $first ? ucfirst( $str ) : strtoupper( $str );
2161 * @param $str string
2162 * @return mixed|string
2164 function lcfirst( $str ) {
2165 $o = ord( $str );
2166 if ( !$o ) {
2167 return strval( $str );
2168 } elseif ( $o >= 128 ) {
2169 return $this->lc( $str, true );
2170 } elseif ( $o > 96 ) {
2171 return $str;
2172 } else {
2173 $str[0] = strtolower( $str[0] );
2174 return $str;
2179 * @param $str string
2180 * @param $first bool
2181 * @return mixed|string
2183 function lc( $str, $first = false ) {
2184 if ( function_exists( 'mb_strtolower' ) ) {
2185 if ( $first ) {
2186 if ( $this->isMultibyte( $str ) ) {
2187 return mb_strtolower( mb_substr( $str, 0, 1 ) ) . mb_substr( $str, 1 );
2188 } else {
2189 return strtolower( substr( $str, 0, 1 ) ) . substr( $str, 1 );
2191 } else {
2192 return $this->isMultibyte( $str ) ? mb_strtolower( $str ) : strtolower( $str );
2194 } else {
2195 if ( $this->isMultibyte( $str ) ) {
2196 $x = $first ? '^' : '';
2197 return preg_replace_callback(
2198 "/$x([A-Z]|[\\xc0-\\xff][\\x80-\\xbf]*)/",
2199 array( $this, 'lcCallback' ),
2200 $str
2202 } else {
2203 return $first ? strtolower( substr( $str, 0, 1 ) ) . substr( $str, 1 ) : strtolower( $str );
2209 * @param $str string
2210 * @return bool
2212 function isMultibyte( $str ) {
2213 return (bool)preg_match( '/[\x80-\xff]/', $str );
2217 * @param $str string
2218 * @return mixed|string
2220 function ucwords( $str ) {
2221 if ( $this->isMultibyte( $str ) ) {
2222 $str = $this->lc( $str );
2224 // regexp to find first letter in each word (i.e. after each space)
2225 $replaceRegexp = "/^([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)| ([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/";
2227 // function to use to capitalize a single char
2228 if ( function_exists( 'mb_strtoupper' ) ) {
2229 return preg_replace_callback(
2230 $replaceRegexp,
2231 array( $this, 'ucwordsCallbackMB' ),
2232 $str
2234 } else {
2235 return preg_replace_callback(
2236 $replaceRegexp,
2237 array( $this, 'ucwordsCallbackWiki' ),
2238 $str
2241 } else {
2242 return ucwords( strtolower( $str ) );
2247 * capitalize words at word breaks
2249 * @param $str string
2250 * @return mixed
2252 function ucwordbreaks( $str ) {
2253 if ( $this->isMultibyte( $str ) ) {
2254 $str = $this->lc( $str );
2256 // since \b doesn't work for UTF-8, we explicitely define word break chars
2257 $breaks = "[ \-\(\)\}\{\.,\?!]";
2259 // find first letter after word break
2260 $replaceRegexp = "/^([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)|$breaks([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/";
2262 if ( function_exists( 'mb_strtoupper' ) ) {
2263 return preg_replace_callback(
2264 $replaceRegexp,
2265 array( $this, 'ucwordbreaksCallbackMB' ),
2266 $str
2268 } else {
2269 return preg_replace_callback(
2270 $replaceRegexp,
2271 array( $this, 'ucwordsCallbackWiki' ),
2272 $str
2275 } else {
2276 return preg_replace_callback(
2277 '/\b([\w\x80-\xff]+)\b/',
2278 array( $this, 'ucwordbreaksCallbackAscii' ),
2279 $str
2285 * Return a case-folded representation of $s
2287 * This is a representation such that caseFold($s1)==caseFold($s2) if $s1
2288 * and $s2 are the same except for the case of their characters. It is not
2289 * necessary for the value returned to make sense when displayed.
2291 * Do *not* perform any other normalisation in this function. If a caller
2292 * uses this function when it should be using a more general normalisation
2293 * function, then fix the caller.
2295 * @param $s string
2297 * @return string
2299 function caseFold( $s ) {
2300 return $this->uc( $s );
2304 * @param $s string
2305 * @return string
2307 function checkTitleEncoding( $s ) {
2308 if ( is_array( $s ) ) {
2309 wfDebugDieBacktrace( 'Given array to checkTitleEncoding.' );
2311 # Check for non-UTF-8 URLs
2312 $ishigh = preg_match( '/[\x80-\xff]/', $s );
2313 if ( !$ishigh ) {
2314 return $s;
2317 $isutf8 = preg_match( '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
2318 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})+$/', $s );
2319 if ( $isutf8 ) {
2320 return $s;
2323 return $this->iconv( $this->fallback8bitEncoding(), 'utf-8', $s );
2327 * @return array
2329 function fallback8bitEncoding() {
2330 return self::$dataCache->getItem( $this->mCode, 'fallback8bitEncoding' );
2334 * Most writing systems use whitespace to break up words.
2335 * Some languages such as Chinese don't conventionally do this,
2336 * which requires special handling when breaking up words for
2337 * searching etc.
2339 * @return bool
2341 function hasWordBreaks() {
2342 return true;
2346 * Some languages such as Chinese require word segmentation,
2347 * Specify such segmentation when overridden in derived class.
2349 * @param $string String
2350 * @return String
2352 function segmentByWord( $string ) {
2353 return $string;
2357 * Some languages have special punctuation need to be normalized.
2358 * Make such changes here.
2360 * @param $string String
2361 * @return String
2363 function normalizeForSearch( $string ) {
2364 return self::convertDoubleWidth( $string );
2368 * convert double-width roman characters to single-width.
2369 * range: ff00-ff5f ~= 0020-007f
2371 * @param $string string
2373 * @return string
2375 protected static function convertDoubleWidth( $string ) {
2376 static $full = null;
2377 static $half = null;
2379 if ( $full === null ) {
2380 $fullWidth = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
2381 $halfWidth = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
2382 $full = str_split( $fullWidth, 3 );
2383 $half = str_split( $halfWidth );
2386 $string = str_replace( $full, $half, $string );
2387 return $string;
2391 * @param $string string
2392 * @param $pattern string
2393 * @return string
2395 protected static function insertSpace( $string, $pattern ) {
2396 $string = preg_replace( $pattern, " $1 ", $string );
2397 $string = preg_replace( '/ +/', ' ', $string );
2398 return $string;
2402 * @param $termsArray array
2403 * @return array
2405 function convertForSearchResult( $termsArray ) {
2406 # some languages, e.g. Chinese, need to do a conversion
2407 # in order for search results to be displayed correctly
2408 return $termsArray;
2412 * Get the first character of a string.
2414 * @param $s string
2415 * @return string
2417 function firstChar( $s ) {
2418 $matches = array();
2419 preg_match(
2420 '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
2421 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})/',
2423 $matches
2426 if ( isset( $matches[1] ) ) {
2427 if ( strlen( $matches[1] ) != 3 ) {
2428 return $matches[1];
2431 // Break down Hangul syllables to grab the first jamo
2432 $code = utf8ToCodepoint( $matches[1] );
2433 if ( $code < 0xac00 || 0xd7a4 <= $code ) {
2434 return $matches[1];
2435 } elseif ( $code < 0xb098 ) {
2436 return "\xe3\x84\xb1";
2437 } elseif ( $code < 0xb2e4 ) {
2438 return "\xe3\x84\xb4";
2439 } elseif ( $code < 0xb77c ) {
2440 return "\xe3\x84\xb7";
2441 } elseif ( $code < 0xb9c8 ) {
2442 return "\xe3\x84\xb9";
2443 } elseif ( $code < 0xbc14 ) {
2444 return "\xe3\x85\x81";
2445 } elseif ( $code < 0xc0ac ) {
2446 return "\xe3\x85\x82";
2447 } elseif ( $code < 0xc544 ) {
2448 return "\xe3\x85\x85";
2449 } elseif ( $code < 0xc790 ) {
2450 return "\xe3\x85\x87";
2451 } elseif ( $code < 0xcc28 ) {
2452 return "\xe3\x85\x88";
2453 } elseif ( $code < 0xce74 ) {
2454 return "\xe3\x85\x8a";
2455 } elseif ( $code < 0xd0c0 ) {
2456 return "\xe3\x85\x8b";
2457 } elseif ( $code < 0xd30c ) {
2458 return "\xe3\x85\x8c";
2459 } elseif ( $code < 0xd558 ) {
2460 return "\xe3\x85\x8d";
2461 } else {
2462 return "\xe3\x85\x8e";
2464 } else {
2465 return '';
2469 function initEncoding() {
2470 # Some languages may have an alternate char encoding option
2471 # (Esperanto X-coding, Japanese furigana conversion, etc)
2472 # If this language is used as the primary content language,
2473 # an override to the defaults can be set here on startup.
2477 * @param $s string
2478 * @return string
2480 function recodeForEdit( $s ) {
2481 # For some languages we'll want to explicitly specify
2482 # which characters make it into the edit box raw
2483 # or are converted in some way or another.
2484 global $wgEditEncoding;
2485 if ( $wgEditEncoding == '' || $wgEditEncoding == 'UTF-8' ) {
2486 return $s;
2487 } else {
2488 return $this->iconv( 'UTF-8', $wgEditEncoding, $s );
2493 * @param $s string
2494 * @return string
2496 function recodeInput( $s ) {
2497 # Take the previous into account.
2498 global $wgEditEncoding;
2499 if ( $wgEditEncoding != '' ) {
2500 $enc = $wgEditEncoding;
2501 } else {
2502 $enc = 'UTF-8';
2504 if ( $enc == 'UTF-8' ) {
2505 return $s;
2506 } else {
2507 return $this->iconv( $enc, 'UTF-8', $s );
2512 * Convert a UTF-8 string to normal form C. In Malayalam and Arabic, this
2513 * also cleans up certain backwards-compatible sequences, converting them
2514 * to the modern Unicode equivalent.
2516 * This is language-specific for performance reasons only.
2518 * @param $s string
2520 * @return string
2522 function normalize( $s ) {
2523 global $wgAllUnicodeFixes;
2524 $s = UtfNormal::cleanUp( $s );
2525 if ( $wgAllUnicodeFixes ) {
2526 $s = $this->transformUsingPairFile( 'normalize-ar.ser', $s );
2527 $s = $this->transformUsingPairFile( 'normalize-ml.ser', $s );
2530 return $s;
2534 * Transform a string using serialized data stored in the given file (which
2535 * must be in the serialized subdirectory of $IP). The file contains pairs
2536 * mapping source characters to destination characters.
2538 * The data is cached in process memory. This will go faster if you have the
2539 * FastStringSearch extension.
2541 * @param $file string
2542 * @param $string string
2544 * @throws MWException
2545 * @return string
2547 function transformUsingPairFile( $file, $string ) {
2548 if ( !isset( $this->transformData[$file] ) ) {
2549 $data = wfGetPrecompiledData( $file );
2550 if ( $data === false ) {
2551 throw new MWException( __METHOD__ . ": The transformation file $file is missing" );
2553 $this->transformData[$file] = new ReplacementArray( $data );
2555 return $this->transformData[$file]->replace( $string );
2559 * For right-to-left language support
2561 * @return bool
2563 function isRTL() {
2564 return self::$dataCache->getItem( $this->mCode, 'rtl' );
2568 * Return the correct HTML 'dir' attribute value for this language.
2569 * @return String
2571 function getDir() {
2572 return $this->isRTL() ? 'rtl' : 'ltr';
2576 * Return 'left' or 'right' as appropriate alignment for line-start
2577 * for this language's text direction.
2579 * Should be equivalent to CSS3 'start' text-align value....
2581 * @return String
2583 function alignStart() {
2584 return $this->isRTL() ? 'right' : 'left';
2588 * Return 'right' or 'left' as appropriate alignment for line-end
2589 * for this language's text direction.
2591 * Should be equivalent to CSS3 'end' text-align value....
2593 * @return String
2595 function alignEnd() {
2596 return $this->isRTL() ? 'left' : 'right';
2600 * A hidden direction mark (LRM or RLM), depending on the language direction.
2601 * Unlike getDirMark(), this function returns the character as an HTML entity.
2602 * This function should be used when the output is guaranteed to be HTML,
2603 * because it makes the output HTML source code more readable. When
2604 * the output is plain text or can be escaped, getDirMark() should be used.
2606 * @param $opposite Boolean Get the direction mark opposite to your language
2607 * @return string
2609 function getDirMarkEntity( $opposite = false ) {
2610 if ( $opposite ) { return $this->isRTL() ? '&lrm;' : '&rlm;'; }
2611 return $this->isRTL() ? '&rlm;' : '&lrm;';
2615 * A hidden direction mark (LRM or RLM), depending on the language direction.
2616 * This function produces them as invisible Unicode characters and
2617 * the output may be hard to read and debug, so it should only be used
2618 * when the output is plain text or can be escaped. When the output is
2619 * HTML, use getDirMarkEntity() instead.
2621 * @param $opposite Boolean Get the direction mark opposite to your language
2622 * @return string
2624 function getDirMark( $opposite = false ) {
2625 $lrm = "\xE2\x80\x8E"; # LEFT-TO-RIGHT MARK, commonly abbreviated LRM
2626 $rlm = "\xE2\x80\x8F"; # RIGHT-TO-LEFT MARK, commonly abbreviated RLM
2627 if ( $opposite ) { return $this->isRTL() ? $lrm : $rlm; }
2628 return $this->isRTL() ? $rlm : $lrm;
2632 * @return array
2634 function capitalizeAllNouns() {
2635 return self::$dataCache->getItem( $this->mCode, 'capitalizeAllNouns' );
2639 * An arrow, depending on the language direction
2641 * @return string
2643 function getArrow() {
2644 return $this->isRTL() ? '←' : '→';
2648 * To allow "foo[[bar]]" to extend the link over the whole word "foobar"
2650 * @return bool
2652 function linkPrefixExtension() {
2653 return self::$dataCache->getItem( $this->mCode, 'linkPrefixExtension' );
2657 * @return array
2659 function getMagicWords() {
2660 return self::$dataCache->getItem( $this->mCode, 'magicWords' );
2663 protected function doMagicHook() {
2664 if ( $this->mMagicHookDone ) {
2665 return;
2667 $this->mMagicHookDone = true;
2668 wfProfileIn( 'LanguageGetMagic' );
2669 wfRunHooks( 'LanguageGetMagic', array( &$this->mMagicExtensions, $this->getCode() ) );
2670 wfProfileOut( 'LanguageGetMagic' );
2674 * Fill a MagicWord object with data from here
2676 * @param $mw
2678 function getMagic( $mw ) {
2679 $this->doMagicHook();
2681 if ( isset( $this->mMagicExtensions[$mw->mId] ) ) {
2682 $rawEntry = $this->mMagicExtensions[$mw->mId];
2683 } else {
2684 $magicWords = $this->getMagicWords();
2685 if ( isset( $magicWords[$mw->mId] ) ) {
2686 $rawEntry = $magicWords[$mw->mId];
2687 } else {
2688 $rawEntry = false;
2692 if ( !is_array( $rawEntry ) ) {
2693 error_log( "\"$rawEntry\" is not a valid magic word for \"$mw->mId\"" );
2694 } else {
2695 $mw->mCaseSensitive = $rawEntry[0];
2696 $mw->mSynonyms = array_slice( $rawEntry, 1 );
2701 * Add magic words to the extension array
2703 * @param $newWords array
2705 function addMagicWordsByLang( $newWords ) {
2706 $fallbackChain = $this->getFallbackLanguages();
2707 $fallbackChain = array_reverse( $fallbackChain );
2708 foreach ( $fallbackChain as $code ) {
2709 if ( isset( $newWords[$code] ) ) {
2710 $this->mMagicExtensions = $newWords[$code] + $this->mMagicExtensions;
2716 * Get special page names, as an associative array
2717 * case folded alias => real name
2719 function getSpecialPageAliases() {
2720 // Cache aliases because it may be slow to load them
2721 if ( is_null( $this->mExtendedSpecialPageAliases ) ) {
2722 // Initialise array
2723 $this->mExtendedSpecialPageAliases =
2724 self::$dataCache->getItem( $this->mCode, 'specialPageAliases' );
2725 wfRunHooks( 'LanguageGetSpecialPageAliases',
2726 array( &$this->mExtendedSpecialPageAliases, $this->getCode() ) );
2729 return $this->mExtendedSpecialPageAliases;
2733 * Italic is unsuitable for some languages
2735 * @param $text String: the text to be emphasized.
2736 * @return string
2738 function emphasize( $text ) {
2739 return "<em>$text</em>";
2743 * Normally we output all numbers in plain en_US style, that is
2744 * 293,291.235 for twohundredninetythreethousand-twohundredninetyone
2745 * point twohundredthirtyfive. However this is not suitable for all
2746 * languages, some such as Pakaran want ੨੯੩,੨੯੫.੨੩੫ and others such as
2747 * Icelandic just want to use commas instead of dots, and dots instead
2748 * of commas like "293.291,235".
2750 * An example of this function being called:
2751 * <code>
2752 * wfMsg( 'message', $wgLang->formatNum( $num ) )
2753 * </code>
2755 * See LanguageGu.php for the Gujarati implementation and
2756 * $separatorTransformTable on MessageIs.php for
2757 * the , => . and . => , implementation.
2759 * @todo check if it's viable to use localeconv() for the decimal
2760 * separator thing.
2761 * @param $number Mixed: the string to be formatted, should be an integer
2762 * or a floating point number.
2763 * @param $nocommafy Bool: set to true for special numbers like dates
2764 * @return string
2766 public function formatNum( $number, $nocommafy = false ) {
2767 global $wgTranslateNumerals;
2768 if ( !$nocommafy ) {
2769 $number = $this->commafy( $number );
2770 $s = $this->separatorTransformTable();
2771 if ( $s ) {
2772 $number = strtr( $number, $s );
2776 if ( $wgTranslateNumerals ) {
2777 $s = $this->digitTransformTable();
2778 if ( $s ) {
2779 $number = strtr( $number, $s );
2783 return $number;
2787 * @param $number string
2788 * @return string
2790 function parseFormattedNumber( $number ) {
2791 $s = $this->digitTransformTable();
2792 if ( $s ) {
2793 $number = strtr( $number, array_flip( $s ) );
2796 $s = $this->separatorTransformTable();
2797 if ( $s ) {
2798 $number = strtr( $number, array_flip( $s ) );
2801 $number = strtr( $number, array( ',' => '' ) );
2802 return $number;
2806 * Adds commas to a given number
2807 * @since 1.19
2808 * @param $_ mixed
2809 * @return string
2811 function commafy( $_ ) {
2812 $digitGroupingPattern = $this->digitGroupingPattern();
2813 if ( $_ === null ) {
2814 return '';
2817 if ( !$digitGroupingPattern || $digitGroupingPattern === "###,###,###" ) {
2818 // default grouping is at thousands, use the same for ###,###,### pattern too.
2819 return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) );
2820 } else {
2821 // Ref: http://cldr.unicode.org/translation/number-patterns
2822 $sign = "";
2823 if ( intval( $_ ) < 0 ) {
2824 // For negative numbers apply the algorithm like positive number and add sign.
2825 $sign = "-";
2826 $_ = substr( $_, 1 );
2828 $numberpart = array();
2829 $decimalpart = array();
2830 $numMatches = preg_match_all( "/(#+)/", $digitGroupingPattern, $matches );
2831 preg_match( "/\d+/", $_, $numberpart );
2832 preg_match( "/\.\d*/", $_, $decimalpart );
2833 $groupedNumber = ( count( $decimalpart ) > 0 ) ? $decimalpart[0]:"";
2834 if ( $groupedNumber === $_ ) {
2835 // the string does not have any number part. Eg: .12345
2836 return $sign . $groupedNumber;
2838 $start = $end = strlen( $numberpart[0] );
2839 while ( $start > 0 ) {
2840 $match = $matches[0][$numMatches -1] ;
2841 $matchLen = strlen( $match );
2842 $start = $end - $matchLen;
2843 if ( $start < 0 ) {
2844 $start = 0;
2846 $groupedNumber = substr( $_ , $start, $end -$start ) . $groupedNumber ;
2847 $end = $start;
2848 if ( $numMatches > 1 ) {
2849 // use the last pattern for the rest of the number
2850 $numMatches--;
2852 if ( $start > 0 ) {
2853 $groupedNumber = "," . $groupedNumber;
2856 return $sign . $groupedNumber;
2860 * @return String
2862 function digitGroupingPattern() {
2863 return self::$dataCache->getItem( $this->mCode, 'digitGroupingPattern' );
2867 * @return array
2869 function digitTransformTable() {
2870 return self::$dataCache->getItem( $this->mCode, 'digitTransformTable' );
2874 * @return array
2876 function separatorTransformTable() {
2877 return self::$dataCache->getItem( $this->mCode, 'separatorTransformTable' );
2881 * Take a list of strings and build a locale-friendly comma-separated
2882 * list, using the local comma-separator message.
2883 * The last two strings are chained with an "and".
2885 * @param $l Array
2886 * @return string
2888 function listToText( array $l ) {
2889 $s = '';
2890 $m = count( $l ) - 1;
2891 if ( $m == 1 ) {
2892 return $l[0] . $this->getMessageFromDB( 'and' ) . $this->getMessageFromDB( 'word-separator' ) . $l[1];
2893 } else {
2894 for ( $i = $m; $i >= 0; $i-- ) {
2895 if ( $i == $m ) {
2896 $s = $l[$i];
2897 } elseif ( $i == $m - 1 ) {
2898 $s = $l[$i] . $this->getMessageFromDB( 'and' ) . $this->getMessageFromDB( 'word-separator' ) . $s;
2899 } else {
2900 $s = $l[$i] . $this->getMessageFromDB( 'comma-separator' ) . $s;
2903 return $s;
2908 * Take a list of strings and build a locale-friendly comma-separated
2909 * list, using the local comma-separator message.
2910 * @param $list array of strings to put in a comma list
2911 * @return string
2913 function commaList( array $list ) {
2914 return implode(
2915 wfMsgExt(
2916 'comma-separator',
2917 array( 'parsemag', 'escapenoentities', 'language' => $this )
2919 $list
2924 * Take a list of strings and build a locale-friendly semicolon-separated
2925 * list, using the local semicolon-separator message.
2926 * @param $list array of strings to put in a semicolon list
2927 * @return string
2929 function semicolonList( array $list ) {
2930 return implode(
2931 wfMsgExt(
2932 'semicolon-separator',
2933 array( 'parsemag', 'escapenoentities', 'language' => $this )
2935 $list
2940 * Same as commaList, but separate it with the pipe instead.
2941 * @param $list array of strings to put in a pipe list
2942 * @return string
2944 function pipeList( array $list ) {
2945 return implode(
2946 wfMsgExt(
2947 'pipe-separator',
2948 array( 'escapenoentities', 'language' => $this )
2950 $list
2955 * Truncate a string to a specified length in bytes, appending an optional
2956 * string (e.g. for ellipses)
2958 * The database offers limited byte lengths for some columns in the database;
2959 * multi-byte character sets mean we need to ensure that only whole characters
2960 * are included, otherwise broken characters can be passed to the user
2962 * If $length is negative, the string will be truncated from the beginning
2964 * @param $string String to truncate
2965 * @param $length Int: maximum length (including ellipses)
2966 * @param $ellipsis String to append to the truncated text
2967 * @param $adjustLength Boolean: Subtract length of ellipsis from $length.
2968 * $adjustLength was introduced in 1.18, before that behaved as if false.
2969 * @return string
2971 function truncate( $string, $length, $ellipsis = '...', $adjustLength = true ) {
2972 # Use the localized ellipsis character
2973 if ( $ellipsis == '...' ) {
2974 $ellipsis = wfMsgExt( 'ellipsis', array( 'escapenoentities', 'language' => $this ) );
2976 # Check if there is no need to truncate
2977 if ( $length == 0 ) {
2978 return $ellipsis; // convention
2979 } elseif ( strlen( $string ) <= abs( $length ) ) {
2980 return $string; // no need to truncate
2982 $stringOriginal = $string;
2983 # If ellipsis length is >= $length then we can't apply $adjustLength
2984 if ( $adjustLength && strlen( $ellipsis ) >= abs( $length ) ) {
2985 $string = $ellipsis; // this can be slightly unexpected
2986 # Otherwise, truncate and add ellipsis...
2987 } else {
2988 $eLength = $adjustLength ? strlen( $ellipsis ) : 0;
2989 if ( $length > 0 ) {
2990 $length -= $eLength;
2991 $string = substr( $string, 0, $length ); // xyz...
2992 $string = $this->removeBadCharLast( $string );
2993 $string = $string . $ellipsis;
2994 } else {
2995 $length += $eLength;
2996 $string = substr( $string, $length ); // ...xyz
2997 $string = $this->removeBadCharFirst( $string );
2998 $string = $ellipsis . $string;
3001 # Do not truncate if the ellipsis makes the string longer/equal (bug 22181).
3002 # This check is *not* redundant if $adjustLength, due to the single case where
3003 # LEN($ellipsis) > ABS($limit arg); $stringOriginal could be shorter than $string.
3004 if ( strlen( $string ) < strlen( $stringOriginal ) ) {
3005 return $string;
3006 } else {
3007 return $stringOriginal;
3012 * Remove bytes that represent an incomplete Unicode character
3013 * at the end of string (e.g. bytes of the char are missing)
3015 * @param $string String
3016 * @return string
3018 protected function removeBadCharLast( $string ) {
3019 if ( $string != '' ) {
3020 $char = ord( $string[strlen( $string ) - 1] );
3021 $m = array();
3022 if ( $char >= 0xc0 ) {
3023 # We got the first byte only of a multibyte char; remove it.
3024 $string = substr( $string, 0, -1 );
3025 } elseif ( $char >= 0x80 &&
3026 preg_match( '/^(.*)(?:[\xe0-\xef][\x80-\xbf]|' .
3027 '[\xf0-\xf7][\x80-\xbf]{1,2})$/', $string, $m ) )
3029 # We chopped in the middle of a character; remove it
3030 $string = $m[1];
3033 return $string;
3037 * Remove bytes that represent an incomplete Unicode character
3038 * at the start of string (e.g. bytes of the char are missing)
3040 * @param $string String
3041 * @return string
3043 protected function removeBadCharFirst( $string ) {
3044 if ( $string != '' ) {
3045 $char = ord( $string[0] );
3046 if ( $char >= 0x80 && $char < 0xc0 ) {
3047 # We chopped in the middle of a character; remove the whole thing
3048 $string = preg_replace( '/^[\x80-\xbf]+/', '', $string );
3051 return $string;
3055 * Truncate a string of valid HTML to a specified length in bytes,
3056 * appending an optional string (e.g. for ellipses), and return valid HTML
3058 * This is only intended for styled/linked text, such as HTML with
3059 * tags like <span> and <a>, were the tags are self-contained (valid HTML).
3060 * Also, this will not detect things like "display:none" CSS.
3062 * Note: since 1.18 you do not need to leave extra room in $length for ellipses.
3064 * @param string $text HTML string to truncate
3065 * @param int $length (zero/positive) Maximum length (including ellipses)
3066 * @param string $ellipsis String to append to the truncated text
3067 * @return string
3069 function truncateHtml( $text, $length, $ellipsis = '...' ) {
3070 # Use the localized ellipsis character
3071 if ( $ellipsis == '...' ) {
3072 $ellipsis = wfMsgExt( 'ellipsis', array( 'escapenoentities', 'language' => $this ) );
3074 # Check if there is clearly no need to truncate
3075 if ( $length <= 0 ) {
3076 return $ellipsis; // no text shown, nothing to format (convention)
3077 } elseif ( strlen( $text ) <= $length ) {
3078 return $text; // string short enough even *with* HTML (short-circuit)
3081 $dispLen = 0; // innerHTML legth so far
3082 $testingEllipsis = false; // checking if ellipses will make string longer/equal?
3083 $tagType = 0; // 0-open, 1-close
3084 $bracketState = 0; // 1-tag start, 2-tag name, 0-neither
3085 $entityState = 0; // 0-not entity, 1-entity
3086 $tag = $ret = ''; // accumulated tag name, accumulated result string
3087 $openTags = array(); // open tag stack
3088 $maybeState = null; // possible truncation state
3090 $textLen = strlen( $text );
3091 $neLength = max( 0, $length - strlen( $ellipsis ) ); // non-ellipsis len if truncated
3092 for ( $pos = 0; true; ++$pos ) {
3093 # Consider truncation once the display length has reached the maximim.
3094 # We check if $dispLen > 0 to grab tags for the $neLength = 0 case.
3095 # Check that we're not in the middle of a bracket/entity...
3096 if ( $dispLen && $dispLen >= $neLength && $bracketState == 0 && !$entityState ) {
3097 if ( !$testingEllipsis ) {
3098 $testingEllipsis = true;
3099 # Save where we are; we will truncate here unless there turn out to
3100 # be so few remaining characters that truncation is not necessary.
3101 if ( !$maybeState ) { // already saved? ($neLength = 0 case)
3102 $maybeState = array( $ret, $openTags ); // save state
3104 } elseif ( $dispLen > $length && $dispLen > strlen( $ellipsis ) ) {
3105 # String in fact does need truncation, the truncation point was OK.
3106 list( $ret, $openTags ) = $maybeState; // reload state
3107 $ret = $this->removeBadCharLast( $ret ); // multi-byte char fix
3108 $ret .= $ellipsis; // add ellipsis
3109 break;
3112 if ( $pos >= $textLen ) break; // extra iteration just for above checks
3114 # Read the next char...
3115 $ch = $text[$pos];
3116 $lastCh = $pos ? $text[$pos - 1] : '';
3117 $ret .= $ch; // add to result string
3118 if ( $ch == '<' ) {
3119 $this->truncate_endBracket( $tag, $tagType, $lastCh, $openTags ); // for bad HTML
3120 $entityState = 0; // for bad HTML
3121 $bracketState = 1; // tag started (checking for backslash)
3122 } elseif ( $ch == '>' ) {
3123 $this->truncate_endBracket( $tag, $tagType, $lastCh, $openTags );
3124 $entityState = 0; // for bad HTML
3125 $bracketState = 0; // out of brackets
3126 } elseif ( $bracketState == 1 ) {
3127 if ( $ch == '/' ) {
3128 $tagType = 1; // close tag (e.g. "</span>")
3129 } else {
3130 $tagType = 0; // open tag (e.g. "<span>")
3131 $tag .= $ch;
3133 $bracketState = 2; // building tag name
3134 } elseif ( $bracketState == 2 ) {
3135 if ( $ch != ' ' ) {
3136 $tag .= $ch;
3137 } else {
3138 // Name found (e.g. "<a href=..."), add on tag attributes...
3139 $pos += $this->truncate_skip( $ret, $text, "<>", $pos + 1 );
3141 } elseif ( $bracketState == 0 ) {
3142 if ( $entityState ) {
3143 if ( $ch == ';' ) {
3144 $entityState = 0;
3145 $dispLen++; // entity is one displayed char
3147 } else {
3148 if ( $neLength == 0 && !$maybeState ) {
3149 // Save state without $ch. We want to *hit* the first
3150 // display char (to get tags) but not *use* it if truncating.
3151 $maybeState = array( substr( $ret, 0, -1 ), $openTags );
3153 if ( $ch == '&' ) {
3154 $entityState = 1; // entity found, (e.g. "&#160;")
3155 } else {
3156 $dispLen++; // this char is displayed
3157 // Add the next $max display text chars after this in one swoop...
3158 $max = ( $testingEllipsis ? $length : $neLength ) - $dispLen;
3159 $skipped = $this->truncate_skip( $ret, $text, "<>&", $pos + 1, $max );
3160 $dispLen += $skipped;
3161 $pos += $skipped;
3166 // Close the last tag if left unclosed by bad HTML
3167 $this->truncate_endBracket( $tag, $text[$textLen - 1], $tagType, $openTags );
3168 while ( count( $openTags ) > 0 ) {
3169 $ret .= '</' . array_pop( $openTags ) . '>'; // close open tags
3171 return $ret;
3175 * truncateHtml() helper function
3176 * like strcspn() but adds the skipped chars to $ret
3178 * @param $ret
3179 * @param $text
3180 * @param $search
3181 * @param $start
3182 * @param $len
3183 * @return int
3185 private function truncate_skip( &$ret, $text, $search, $start, $len = null ) {
3186 if ( $len === null ) {
3187 $len = -1; // -1 means "no limit" for strcspn
3188 } elseif ( $len < 0 ) {
3189 $len = 0; // sanity
3191 $skipCount = 0;
3192 if ( $start < strlen( $text ) ) {
3193 $skipCount = strcspn( $text, $search, $start, $len );
3194 $ret .= substr( $text, $start, $skipCount );
3196 return $skipCount;
3200 * truncateHtml() helper function
3201 * (a) push or pop $tag from $openTags as needed
3202 * (b) clear $tag value
3203 * @param &$tag string Current HTML tag name we are looking at
3204 * @param $tagType int (0-open tag, 1-close tag)
3205 * @param $lastCh string Character before the '>' that ended this tag
3206 * @param &$openTags array Open tag stack (not accounting for $tag)
3208 private function truncate_endBracket( &$tag, $tagType, $lastCh, &$openTags ) {
3209 $tag = ltrim( $tag );
3210 if ( $tag != '' ) {
3211 if ( $tagType == 0 && $lastCh != '/' ) {
3212 $openTags[] = $tag; // tag opened (didn't close itself)
3213 } elseif ( $tagType == 1 ) {
3214 if ( $openTags && $tag == $openTags[count( $openTags ) - 1] ) {
3215 array_pop( $openTags ); // tag closed
3218 $tag = '';
3223 * Grammatical transformations, needed for inflected languages
3224 * Invoked by putting {{grammar:case|word}} in a message
3226 * @param $word string
3227 * @param $case string
3228 * @return string
3230 function convertGrammar( $word, $case ) {
3231 global $wgGrammarForms;
3232 if ( isset( $wgGrammarForms[$this->getCode()][$case][$word] ) ) {
3233 return $wgGrammarForms[$this->getCode()][$case][$word];
3235 return $word;
3239 * Provides an alternative text depending on specified gender.
3240 * Usage {{gender:username|masculine|feminine|neutral}}.
3241 * username is optional, in which case the gender of current user is used,
3242 * but only in (some) interface messages; otherwise default gender is used.
3244 * If no forms are given, an empty string is returned. If only one form is
3245 * given, it will be returned unconditionally. These details are implied by
3246 * the caller and cannot be overridden in subclasses.
3248 * If more than one form is given, the default is to use the neutral one
3249 * if it is specified, and to use the masculine one otherwise. These
3250 * details can be overridden in subclasses.
3252 * @param $gender string
3253 * @param $forms array
3255 * @return string
3257 function gender( $gender, $forms ) {
3258 if ( !count( $forms ) ) {
3259 return '';
3261 $forms = $this->preConvertPlural( $forms, 2 );
3262 if ( $gender === 'male' ) {
3263 return $forms[0];
3265 if ( $gender === 'female' ) {
3266 return $forms[1];
3268 return isset( $forms[2] ) ? $forms[2] : $forms[0];
3272 * Plural form transformations, needed for some languages.
3273 * For example, there are 3 form of plural in Russian and Polish,
3274 * depending on "count mod 10". See [[w:Plural]]
3275 * For English it is pretty simple.
3277 * Invoked by putting {{plural:count|wordform1|wordform2}}
3278 * or {{plural:count|wordform1|wordform2|wordform3}}
3280 * Example: {{plural:{{NUMBEROFARTICLES}}|article|articles}}
3282 * @param $count Integer: non-localized number
3283 * @param $forms Array: different plural forms
3284 * @return string Correct form of plural for $count in this language
3286 function convertPlural( $count, $forms ) {
3287 if ( !count( $forms ) ) {
3288 return '';
3290 $forms = $this->preConvertPlural( $forms, 2 );
3292 return ( $count == 1 ) ? $forms[0] : $forms[1];
3296 * Checks that convertPlural was given an array and pads it to requested
3297 * amount of forms by copying the last one.
3299 * @param $count Integer: How many forms should there be at least
3300 * @param $forms Array of forms given to convertPlural
3301 * @return array Padded array of forms or an exception if not an array
3303 protected function preConvertPlural( /* Array */ $forms, $count ) {
3304 while ( count( $forms ) < $count ) {
3305 $forms[] = $forms[count( $forms ) - 1];
3307 return $forms;
3311 * @todo Maybe translate block durations. Note that this function is somewhat misnamed: it
3312 * deals with translating the *duration* ("1 week", "4 days", etc), not the expiry time
3313 * (which is an absolute timestamp). Please note: do NOT add this blindly, as it is used
3314 * on old expiry lengths recorded in log entries. You'd need to provide the start date to
3315 * match up with it.
3317 * @param $str String: the validated block duration in English
3318 * @return string Somehow translated block duration
3319 * @see LanguageFi.php for example implementation
3321 function translateBlockExpiry( $str ) {
3322 $duration = SpecialBlock::getSuggestedDurations( $this );
3323 foreach ( $duration as $show => $value ) {
3324 if ( strcmp( $str, $value ) == 0 ) {
3325 return htmlspecialchars( trim( $show ) );
3329 // Since usually only infinite or indefinite is only on list, so try
3330 // equivalents if still here.
3331 $indefs = array( 'infinite', 'infinity', 'indefinite' );
3332 if ( in_array( $str, $indefs ) ) {
3333 foreach ( $indefs as $val ) {
3334 $show = array_search( $val, $duration, true );
3335 if ( $show !== false ) {
3336 return htmlspecialchars( trim( $show ) );
3340 // If all else fails, return the original string.
3341 return $str;
3345 * languages like Chinese need to be segmented in order for the diff
3346 * to be of any use
3348 * @param $text String
3349 * @return String
3351 public function segmentForDiff( $text ) {
3352 return $text;
3356 * and unsegment to show the result
3358 * @param $text String
3359 * @return String
3361 public function unsegmentForDiff( $text ) {
3362 return $text;
3366 * Return the LanguageConverter used in the Language
3368 * @since 1.19
3369 * @return LanguageConverter
3371 public function getConverter() {
3372 return $this->mConverter;
3376 * convert text to all supported variants
3378 * @param $text string
3379 * @return array
3381 public function autoConvertToAllVariants( $text ) {
3382 return $this->mConverter->autoConvertToAllVariants( $text );
3386 * convert text to different variants of a language.
3388 * @param $text string
3389 * @return string
3391 public function convert( $text ) {
3392 return $this->mConverter->convert( $text );
3396 * Convert a Title object to a string in the preferred variant
3398 * @param $title Title
3399 * @return string
3401 public function convertTitle( $title ) {
3402 return $this->mConverter->convertTitle( $title );
3406 * Check if this is a language with variants
3408 * @return bool
3410 public function hasVariants() {
3411 return sizeof( $this->getVariants() ) > 1;
3415 * Check if the language has the specific variant
3417 * @since 1.19
3418 * @param $variant string
3419 * @return bool
3421 public function hasVariant( $variant ) {
3422 return (bool)$this->mConverter->validateVariant( $variant );
3426 * Put custom tags (e.g. -{ }-) around math to prevent conversion
3428 * @param $text string
3429 * @return string
3431 public function armourMath( $text ) {
3432 return $this->mConverter->armourMath( $text );
3436 * Perform output conversion on a string, and encode for safe HTML output.
3437 * @param $text String text to be converted
3438 * @param $isTitle Bool whether this conversion is for the article title
3439 * @return string
3440 * @todo this should get integrated somewhere sane
3442 public function convertHtml( $text, $isTitle = false ) {
3443 return htmlspecialchars( $this->convert( $text, $isTitle ) );
3447 * @param $key string
3448 * @return string
3450 public function convertCategoryKey( $key ) {
3451 return $this->mConverter->convertCategoryKey( $key );
3455 * Get the list of variants supported by this language
3456 * see sample implementation in LanguageZh.php
3458 * @return array an array of language codes
3460 public function getVariants() {
3461 return $this->mConverter->getVariants();
3465 * @return string
3467 public function getPreferredVariant() {
3468 return $this->mConverter->getPreferredVariant();
3472 * @return string
3474 public function getDefaultVariant() {
3475 return $this->mConverter->getDefaultVariant();
3479 * @return string
3481 public function getURLVariant() {
3482 return $this->mConverter->getURLVariant();
3486 * If a language supports multiple variants, it is
3487 * possible that non-existing link in one variant
3488 * actually exists in another variant. this function
3489 * tries to find it. See e.g. LanguageZh.php
3491 * @param $link String: the name of the link
3492 * @param $nt Mixed: the title object of the link
3493 * @param $ignoreOtherCond Boolean: to disable other conditions when
3494 * we need to transclude a template or update a category's link
3495 * @return null the input parameters may be modified upon return
3497 public function findVariantLink( &$link, &$nt, $ignoreOtherCond = false ) {
3498 $this->mConverter->findVariantLink( $link, $nt, $ignoreOtherCond );
3502 * If a language supports multiple variants, converts text
3503 * into an array of all possible variants of the text:
3504 * 'variant' => text in that variant
3506 * @deprecated since 1.17 Use autoConvertToAllVariants()
3508 * @param $text string
3510 * @return string
3512 public function convertLinkToAllVariants( $text ) {
3513 return $this->mConverter->convertLinkToAllVariants( $text );
3517 * returns language specific options used by User::getPageRenderHash()
3518 * for example, the preferred language variant
3520 * @return string
3522 function getExtraHashOptions() {
3523 return $this->mConverter->getExtraHashOptions();
3527 * For languages that support multiple variants, the title of an
3528 * article may be displayed differently in different variants. this
3529 * function returns the apporiate title defined in the body of the article.
3531 * @return string
3533 public function getParsedTitle() {
3534 return $this->mConverter->getParsedTitle();
3538 * Enclose a string with the "no conversion" tag. This is used by
3539 * various functions in the Parser
3541 * @param $text String: text to be tagged for no conversion
3542 * @param $noParse bool
3543 * @return string the tagged text
3545 public function markNoConversion( $text, $noParse = false ) {
3546 return $this->mConverter->markNoConversion( $text, $noParse );
3550 * A regular expression to match legal word-trailing characters
3551 * which should be merged onto a link of the form [[foo]]bar.
3553 * @return string
3555 public function linkTrail() {
3556 return self::$dataCache->getItem( $this->mCode, 'linkTrail' );
3560 * @return Language
3562 function getLangObj() {
3563 return $this;
3567 * Get the RFC 3066 code for this language object
3569 * @return string
3571 public function getCode() {
3572 return $this->mCode;
3576 * Get the code in Bcp47 format which we can use
3577 * inside of html lang="" tags.
3578 * @since 1.19
3579 * @return string
3581 public function getHtmlCode() {
3582 if ( is_null( $this->mHtmlCode ) ) {
3583 $this->mHtmlCode = wfBCP47( $this->getCode() );
3585 return $this->mHtmlCode;
3589 * @param $code string
3591 public function setCode( $code ) {
3592 $this->mCode = $code;
3593 // Ensure we don't leave an incorrect html code lying around
3594 $this->mHtmlCode = null;
3598 * Get the name of a file for a certain language code
3599 * @param $prefix string Prepend this to the filename
3600 * @param $code string Language code
3601 * @param $suffix string Append this to the filename
3602 * @throws MWException
3603 * @return string $prefix . $mangledCode . $suffix
3605 public static function getFileName( $prefix = 'Language', $code, $suffix = '.php' ) {
3606 // Protect against path traversal
3607 if ( !Language::isValidCode( $code )
3608 || strcspn( $code, ":/\\\000" ) !== strlen( $code ) )
3610 throw new MWException( "Invalid language code \"$code\"" );
3613 return $prefix . str_replace( '-', '_', ucfirst( $code ) ) . $suffix;
3617 * Get the language code from a file name. Inverse of getFileName()
3618 * @param $filename string $prefix . $languageCode . $suffix
3619 * @param $prefix string Prefix before the language code
3620 * @param $suffix string Suffix after the language code
3621 * @return string Language code, or false if $prefix or $suffix isn't found
3623 public static function getCodeFromFileName( $filename, $prefix = 'Language', $suffix = '.php' ) {
3624 $m = null;
3625 preg_match( '/' . preg_quote( $prefix, '/' ) . '([A-Z][a-z_]+)' .
3626 preg_quote( $suffix, '/' ) . '/', $filename, $m );
3627 if ( !count( $m ) ) {
3628 return false;
3630 return str_replace( '_', '-', strtolower( $m[1] ) );
3634 * @param $code string
3635 * @return string
3637 public static function getMessagesFileName( $code ) {
3638 global $IP;
3639 $file = self::getFileName( "$IP/languages/messages/Messages", $code, '.php' );
3640 wfRunHooks( 'Language::getMessagesFileName', array( $code, &$file ) );
3641 return $file;
3645 * @param $code string
3646 * @return string
3648 public static function getClassFileName( $code ) {
3649 global $IP;
3650 return self::getFileName( "$IP/languages/classes/Language", $code, '.php' );
3654 * Get the first fallback for a given language.
3656 * @param $code string
3658 * @return bool|string
3660 public static function getFallbackFor( $code ) {
3661 if ( $code === 'en' || !Language::isValidBuiltInCode( $code ) ) {
3662 return false;
3663 } else {
3664 $fallbacks = self::getFallbacksFor( $code );
3665 $first = array_shift( $fallbacks );
3666 return $first;
3671 * Get the ordered list of fallback languages.
3673 * @since 1.19
3674 * @param $code string Language code
3675 * @return array
3677 public static function getFallbacksFor( $code ) {
3678 if ( $code === 'en' || !Language::isValidBuiltInCode( $code ) ) {
3679 return array();
3680 } else {
3681 $v = self::getLocalisationCache()->getItem( $code, 'fallback' );
3682 $v = array_map( 'trim', explode( ',', $v ) );
3683 if ( $v[count( $v ) - 1] !== 'en' ) {
3684 $v[] = 'en';
3686 return $v;
3691 * Get all messages for a given language
3692 * WARNING: this may take a long time. If you just need all message *keys*
3693 * but need the *contents* of only a few messages, consider using getMessageKeysFor().
3695 * @param $code string
3697 * @return array
3699 public static function getMessagesFor( $code ) {
3700 return self::getLocalisationCache()->getItem( $code, 'messages' );
3704 * Get a message for a given language
3706 * @param $key string
3707 * @param $code string
3709 * @return string
3711 public static function getMessageFor( $key, $code ) {
3712 return self::getLocalisationCache()->getSubitem( $code, 'messages', $key );
3716 * Get all message keys for a given language. This is a faster alternative to
3717 * array_keys( Language::getMessagesFor( $code ) )
3719 * @since 1.19
3720 * @param $code string Language code
3721 * @return array of message keys (strings)
3723 public static function getMessageKeysFor( $code ) {
3724 return self::getLocalisationCache()->getSubItemList( $code, 'messages' );
3728 * @param $talk
3729 * @return mixed
3731 function fixVariableInNamespace( $talk ) {
3732 if ( strpos( $talk, '$1' ) === false ) {
3733 return $talk;
3736 global $wgMetaNamespace;
3737 $talk = str_replace( '$1', $wgMetaNamespace, $talk );
3739 # Allow grammar transformations
3740 # Allowing full message-style parsing would make simple requests
3741 # such as action=raw much more expensive than they need to be.
3742 # This will hopefully cover most cases.
3743 $talk = preg_replace_callback( '/{{grammar:(.*?)\|(.*?)}}/i',
3744 array( &$this, 'replaceGrammarInNamespace' ), $talk );
3745 return str_replace( ' ', '_', $talk );
3749 * @param $m string
3750 * @return string
3752 function replaceGrammarInNamespace( $m ) {
3753 return $this->convertGrammar( trim( $m[2] ), trim( $m[1] ) );
3757 * @throws MWException
3758 * @return array
3760 static function getCaseMaps() {
3761 static $wikiUpperChars, $wikiLowerChars;
3762 if ( isset( $wikiUpperChars ) ) {
3763 return array( $wikiUpperChars, $wikiLowerChars );
3766 wfProfileIn( __METHOD__ );
3767 $arr = wfGetPrecompiledData( 'Utf8Case.ser' );
3768 if ( $arr === false ) {
3769 throw new MWException(
3770 "Utf8Case.ser is missing, please run \"make\" in the serialized directory\n" );
3772 $wikiUpperChars = $arr['wikiUpperChars'];
3773 $wikiLowerChars = $arr['wikiLowerChars'];
3774 wfProfileOut( __METHOD__ );
3775 return array( $wikiUpperChars, $wikiLowerChars );
3779 * Decode an expiry (block, protection, etc) which has come from the DB
3781 * @FIXME: why are we returnings DBMS-dependent strings???
3783 * @param $expiry String: Database expiry String
3784 * @param $format Bool|Int true to process using language functions, or TS_ constant
3785 * to return the expiry in a given timestamp
3786 * @return String
3788 public function formatExpiry( $expiry, $format = true ) {
3789 static $infinity, $infinityMsg;
3790 if ( $infinity === null ) {
3791 $infinityMsg = wfMessage( 'infiniteblock' );
3792 $infinity = wfGetDB( DB_SLAVE )->getInfinity();
3795 if ( $expiry == '' || $expiry == $infinity ) {
3796 return $format === true
3797 ? $infinityMsg
3798 : $infinity;
3799 } else {
3800 return $format === true
3801 ? $this->timeanddate( $expiry, /* User preference timezone */ true )
3802 : wfTimestamp( $format, $expiry );
3807 * @todo Document
3808 * @param $seconds int|float
3809 * @param $format Array Optional
3810 * If $format['avoid'] == 'avoidseconds' - don't mention seconds if $seconds >= 1 hour
3811 * If $format['avoid'] == 'avoidminutes' - don't mention seconds/minutes if $seconds > 48 hours
3812 * If $format['noabbrevs'] is true - use 'seconds' and friends instead of 'seconds-abbrev' and friends
3813 * For backwards compatibility, $format may also be one of the strings 'avoidseconds' or 'avoidminutes'
3814 * @return string
3816 function formatTimePeriod( $seconds, $format = array() ) {
3817 if ( !is_array( $format ) ) {
3818 $format = array( 'avoid' => $format ); // For backwards compatibility
3820 if ( !isset( $format['avoid'] ) ) {
3821 $format['avoid'] = false;
3823 if ( !isset( $format['noabbrevs' ] ) ) {
3824 $format['noabbrevs'] = false;
3826 $secondsMsg = wfMessage(
3827 $format['noabbrevs'] ? 'seconds' : 'seconds-abbrev' )->inLanguage( $this );
3828 $minutesMsg = wfMessage(
3829 $format['noabbrevs'] ? 'minutes' : 'minutes-abbrev' )->inLanguage( $this );
3830 $hoursMsg = wfMessage(
3831 $format['noabbrevs'] ? 'hours' : 'hours-abbrev' )->inLanguage( $this );
3832 $daysMsg = wfMessage(
3833 $format['noabbrevs'] ? 'days' : 'days-abbrev' )->inLanguage( $this );
3835 if ( round( $seconds * 10 ) < 100 ) {
3836 $s = $this->formatNum( sprintf( "%.1f", round( $seconds * 10 ) / 10 ) );
3837 $s = $secondsMsg->params( $s )->text();
3838 } elseif ( round( $seconds ) < 60 ) {
3839 $s = $this->formatNum( round( $seconds ) );
3840 $s = $secondsMsg->params( $s )->text();
3841 } elseif ( round( $seconds ) < 3600 ) {
3842 $minutes = floor( $seconds / 60 );
3843 $secondsPart = round( fmod( $seconds, 60 ) );
3844 if ( $secondsPart == 60 ) {
3845 $secondsPart = 0;
3846 $minutes++;
3848 $s = $minutesMsg->params( $this->formatNum( $minutes ) )->text();
3849 $s .= ' ';
3850 $s .= $secondsMsg->params( $this->formatNum( $secondsPart ) )->text();
3851 } elseif ( round( $seconds ) <= 2 * 86400 ) {
3852 $hours = floor( $seconds / 3600 );
3853 $minutes = floor( ( $seconds - $hours * 3600 ) / 60 );
3854 $secondsPart = round( $seconds - $hours * 3600 - $minutes * 60 );
3855 if ( $secondsPart == 60 ) {
3856 $secondsPart = 0;
3857 $minutes++;
3859 if ( $minutes == 60 ) {
3860 $minutes = 0;
3861 $hours++;
3863 $s = $hoursMsg->params( $this->formatNum( $hours ) )->text();
3864 $s .= ' ';
3865 $s .= $minutesMsg->params( $this->formatNum( $minutes ) )->text();
3866 if ( !in_array( $format['avoid'], array( 'avoidseconds', 'avoidminutes' ) ) ) {
3867 $s .= ' ' . $secondsMsg->params( $this->formatNum( $secondsPart ) )->text();
3869 } else {
3870 $days = floor( $seconds / 86400 );
3871 if ( $format['avoid'] === 'avoidminutes' ) {
3872 $hours = round( ( $seconds - $days * 86400 ) / 3600 );
3873 if ( $hours == 24 ) {
3874 $hours = 0;
3875 $days++;
3877 $s = $daysMsg->params( $this->formatNum( $days ) )->text();
3878 $s .= ' ';
3879 $s .= $hoursMsg->params( $this->formatNum( $hours ) )->text();
3880 } elseif ( $format['avoid'] === 'avoidseconds' ) {
3881 $hours = floor( ( $seconds - $days * 86400 ) / 3600 );
3882 $minutes = round( ( $seconds - $days * 86400 - $hours * 3600 ) / 60 );
3883 if ( $minutes == 60 ) {
3884 $minutes = 0;
3885 $hours++;
3887 if ( $hours == 24 ) {
3888 $hours = 0;
3889 $days++;
3891 $s = $daysMsg->params( $this->formatNum( $days ) )->text();
3892 $s .= ' ';
3893 $s .= $hoursMsg->params( $this->formatNum( $hours ) )->text();
3894 $s .= ' ';
3895 $s .= $minutesMsg->params( $this->formatNum( $minutes ) )->text();
3896 } else {
3897 $s = $daysMsg->params( $this->formatNum( $days ) )->text();
3898 $s .= ' ';
3899 $s .= $this->formatTimePeriod( $seconds - $days * 86400, $format );
3902 return $s;
3906 * Format a bitrate for output, using an appropriate
3907 * unit (bps, kbps, Mbps, Gbps, Tbps, Pbps, Ebps, Zbps or Ybps) according to the magnitude in question
3909 * This use base 1000. For base 1024 use formatSize(), for another base
3910 * see formatComputingNumbers()
3912 * @param $bps int
3913 * @return string
3915 function formatBitrate( $bps ) {
3916 return $this->formatComputingNumbers( $bps, 1000, "bitrate-$1bits" );
3920 * @param $size int Size of the unit
3921 * @param $boundary int Size boundary (1000, or 1024 in most cases)
3922 * @param $messageKey string Message key to be uesd
3923 * @return string
3925 function formatComputingNumbers( $size, $boundary, $messageKey ) {
3926 if ( $size <= 0 ) {
3927 return str_replace( '$1', $this->formatNum( $size ),
3928 $this->getMessageFromDB( str_replace( '$1', '', $messageKey ) )
3931 $sizes = array( '', 'kilo', 'mega', 'giga', 'tera', 'peta', 'exa', 'zeta', 'yotta' );
3932 $index = 0;
3934 $maxIndex = count( $sizes ) - 1;
3935 while ( $size >= $boundary && $index < $maxIndex ) {
3936 $index++;
3937 $size /= $boundary;
3940 // For small sizes no decimal places necessary
3941 $round = 0;
3942 if ( $index > 1 ) {
3943 // For MB and bigger two decimal places are smarter
3944 $round = 2;
3946 $msg = str_replace( '$1', $sizes[$index], $messageKey );
3948 $size = round( $size, $round );
3949 $text = $this->getMessageFromDB( $msg );
3950 return str_replace( '$1', $this->formatNum( $size ), $text );
3954 * Format a size in bytes for output, using an appropriate
3955 * unit (B, KB, MB, GB, TB, PB, EB, ZB or YB) according to the magnitude in question
3957 * This method use base 1024. For base 1000 use formatBitrate(), for
3958 * another base see formatComputingNumbers()
3960 * @param $size int Size to format
3961 * @return string Plain text (not HTML)
3963 function formatSize( $size ) {
3964 return $this->formatComputingNumbers( $size, 1024, "size-$1bytes" );
3968 * Make a list item, used by various special pages
3970 * @param $page String Page link
3971 * @param $details String Text between brackets
3972 * @param $oppositedm Boolean Add the direction mark opposite to your
3973 * language, to display text properly
3974 * @return String
3976 function specialList( $page, $details, $oppositedm = true ) {
3977 $dirmark = ( $oppositedm ? $this->getDirMark( true ) : '' ) .
3978 $this->getDirMark();
3979 $details = $details ? $dirmark . $this->getMessageFromDB( 'word-separator' ) .
3980 wfMsgExt( 'parentheses', array( 'escape', 'replaceafter', 'language' => $this ), $details ) : '';
3981 return $page . $details;
3985 * Generate (prev x| next x) (20|50|100...) type links for paging
3987 * @param $title Title object to link
3988 * @param $offset Integer offset parameter
3989 * @param $limit Integer limit parameter
3990 * @param $query String optional URL query parameter string
3991 * @param $atend Bool optional param for specified if this is the last page
3992 * @return String
3994 public function viewPrevNext( Title $title, $offset, $limit, array $query = array(), $atend = false ) {
3995 // @todo FIXME: Why on earth this needs one message for the text and another one for tooltip?
3997 # Make 'previous' link
3998 $prev = wfMessage( 'prevn' )->inLanguage( $this )->title( $title )->numParams( $limit )->text();
3999 if ( $offset > 0 ) {
4000 $plink = $this->numLink( $title, max( $offset - $limit, 0 ), $limit,
4001 $query, $prev, 'prevn-title', 'mw-prevlink' );
4002 } else {
4003 $plink = htmlspecialchars( $prev );
4006 # Make 'next' link
4007 $next = wfMessage( 'nextn' )->inLanguage( $this )->title( $title )->numParams( $limit )->text();
4008 if ( $atend ) {
4009 $nlink = htmlspecialchars( $next );
4010 } else {
4011 $nlink = $this->numLink( $title, $offset + $limit, $limit,
4012 $query, $next, 'prevn-title', 'mw-nextlink' );
4015 # Make links to set number of items per page
4016 $numLinks = array();
4017 foreach ( array( 20, 50, 100, 250, 500 ) as $num ) {
4018 $numLinks[] = $this->numLink( $title, $offset, $num,
4019 $query, $this->formatNum( $num ), 'shown-title', 'mw-numlink' );
4022 return wfMessage( 'viewprevnext' )->inLanguage( $this )->title( $title
4023 )->rawParams( $plink, $nlink, $this->pipeList( $numLinks ) )->escaped();
4027 * Helper function for viewPrevNext() that generates links
4029 * @param $title Title object to link
4030 * @param $offset Integer offset parameter
4031 * @param $limit Integer limit parameter
4032 * @param $query Array extra query parameters
4033 * @param $link String text to use for the link; will be escaped
4034 * @param $tooltipMsg String name of the message to use as tooltip
4035 * @param $class String value of the "class" attribute of the link
4036 * @return String HTML fragment
4038 private function numLink( Title $title, $offset, $limit, array $query, $link, $tooltipMsg, $class ) {
4039 $query = array( 'limit' => $limit, 'offset' => $offset ) + $query;
4040 $tooltip = wfMessage( $tooltipMsg )->inLanguage( $this )->title( $title )->numParams( $limit )->text();
4041 return Html::element( 'a', array( 'href' => $title->getLocalURL( $query ),
4042 'title' => $tooltip, 'class' => $class ), $link );
4046 * Get the conversion rule title, if any.
4048 * @return string
4050 public function getConvRuleTitle() {
4051 return $this->mConverter->getConvRuleTitle();