Cast the return value of getExtraUserToggles() to an array in case it's not in the...
[mediawiki.git] / languages / Language.php
blob2e357432f3c278d6adb10b093f8ac1ef696eb17f
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 {
32 var $mLang;
33 function __construct( $langobj ) { $this->mLang = $langobj; }
34 function autoConvertToAllVariants( $text ) { return array( $this->mLang->getCode() => $text ); }
35 function convert( $t ) { return $t; }
36 function convertTitle( $t ) { return $t->getPrefixedText(); }
37 function getVariants() { return array( $this->mLang->getCode() ); }
38 function getPreferredVariant() { return $this->mLang->getCode(); }
39 function getDefaultVariant() { return $this->mLang->getCode(); }
40 function getURLVariant() { return ''; }
41 function getConvRuleTitle() { return false; }
42 function findVariantLink( &$l, &$n, $ignoreOtherCond = false ) { }
43 function getExtraHashOptions() { return ''; }
44 function getParsedTitle() { return ''; }
45 function markNoConversion( $text, $noParse = false ) { return $text; }
46 function convertCategoryKey( $key ) { return $key; }
47 function convertLinkToAllVariants( $text ) { return $this->autoConvertToAllVariants( $text ); }
48 function armourMath( $text ) { return $text; }
51 /**
52 * Internationalisation code
53 * @ingroup Language
55 class Language {
57 /**
58 * @var LanguageConverter
60 var $mConverter;
62 var $mVariants, $mCode, $mLoaded = false;
63 var $mMagicExtensions = array(), $mMagicHookDone = false;
65 var $mNamespaceIds, $namespaceNames, $namespaceAliases;
66 var $dateFormatStrings = array();
67 var $mExtendedSpecialPageAliases;
69 /**
70 * ReplacementArray object caches
72 var $transformData = array();
74 /**
75 * @var LocalisationCache
77 static public $dataCache;
79 static public $mLangObjCache = array();
81 static public $mWeekdayMsgs = array(
82 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday',
83 'friday', 'saturday'
86 static public $mWeekdayAbbrevMsgs = array(
87 'sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'
90 static public $mMonthMsgs = array(
91 'january', 'february', 'march', 'april', 'may_long', 'june',
92 'july', 'august', 'september', 'october', 'november',
93 'december'
95 static public $mMonthGenMsgs = array(
96 'january-gen', 'february-gen', 'march-gen', 'april-gen', 'may-gen', 'june-gen',
97 'july-gen', 'august-gen', 'september-gen', 'october-gen', 'november-gen',
98 'december-gen'
100 static public $mMonthAbbrevMsgs = array(
101 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug',
102 'sep', 'oct', 'nov', 'dec'
105 static public $mIranianCalendarMonthMsgs = array(
106 'iranian-calendar-m1', 'iranian-calendar-m2', 'iranian-calendar-m3',
107 'iranian-calendar-m4', 'iranian-calendar-m5', 'iranian-calendar-m6',
108 'iranian-calendar-m7', 'iranian-calendar-m8', 'iranian-calendar-m9',
109 'iranian-calendar-m10', 'iranian-calendar-m11', 'iranian-calendar-m12'
112 static public $mHebrewCalendarMonthMsgs = array(
113 'hebrew-calendar-m1', 'hebrew-calendar-m2', 'hebrew-calendar-m3',
114 'hebrew-calendar-m4', 'hebrew-calendar-m5', 'hebrew-calendar-m6',
115 'hebrew-calendar-m7', 'hebrew-calendar-m8', 'hebrew-calendar-m9',
116 'hebrew-calendar-m10', 'hebrew-calendar-m11', 'hebrew-calendar-m12',
117 'hebrew-calendar-m6a', 'hebrew-calendar-m6b'
120 static public $mHebrewCalendarMonthGenMsgs = array(
121 'hebrew-calendar-m1-gen', 'hebrew-calendar-m2-gen', 'hebrew-calendar-m3-gen',
122 'hebrew-calendar-m4-gen', 'hebrew-calendar-m5-gen', 'hebrew-calendar-m6-gen',
123 'hebrew-calendar-m7-gen', 'hebrew-calendar-m8-gen', 'hebrew-calendar-m9-gen',
124 'hebrew-calendar-m10-gen', 'hebrew-calendar-m11-gen', 'hebrew-calendar-m12-gen',
125 'hebrew-calendar-m6a-gen', 'hebrew-calendar-m6b-gen'
128 static public $mHijriCalendarMonthMsgs = array(
129 'hijri-calendar-m1', 'hijri-calendar-m2', 'hijri-calendar-m3',
130 'hijri-calendar-m4', 'hijri-calendar-m5', 'hijri-calendar-m6',
131 'hijri-calendar-m7', 'hijri-calendar-m8', 'hijri-calendar-m9',
132 'hijri-calendar-m10', 'hijri-calendar-m11', 'hijri-calendar-m12'
136 * Get a cached language object for a given language code
137 * @param $code String
138 * @return Language
140 static function factory( $code ) {
141 if ( !isset( self::$mLangObjCache[$code] ) ) {
142 if ( count( self::$mLangObjCache ) > 10 ) {
143 // Don't keep a billion objects around, that's stupid.
144 self::$mLangObjCache = array();
146 self::$mLangObjCache[$code] = self::newFromCode( $code );
148 return self::$mLangObjCache[$code];
152 * Create a language object for a given language code
153 * @param $code String
154 * @return Language
156 protected static function newFromCode( $code ) {
157 // Protect against path traversal below
158 if ( !Language::isValidCode( $code )
159 || strcspn( $code, ":/\\\000" ) !== strlen( $code ) )
161 throw new MWException( "Invalid language code \"$code\"" );
164 if ( !Language::isValidBuiltInCode( $code ) ) {
165 // It's not possible to customise this code with class files, so
166 // just return a Language object. This is to support uselang= hacks.
167 $lang = new Language;
168 $lang->setCode( $code );
169 return $lang;
172 // Check if there is a language class for the code
173 $class = self::classFromCode( $code );
174 self::preloadLanguageClass( $class );
175 if ( MWInit::classExists( $class ) ) {
176 $lang = new $class;
177 return $lang;
180 // Keep trying the fallback list until we find an existing class
181 $fallbacks = Language::getFallbacksFor( $code );
182 foreach ( $fallbacks as $fallbackCode ) {
183 if ( !Language::isValidBuiltInCode( $fallbackCode ) ) {
184 throw new MWException( "Invalid fallback '$fallbackCode' in fallback sequence for '$code'" );
187 $class = self::classFromCode( $fallbackCode );
188 self::preloadLanguageClass( $class );
189 if ( MWInit::classExists( $class ) ) {
190 $lang = Language::newFromCode( $fallbackCode );
191 $lang->setCode( $code );
192 return $lang;
196 throw new MWException( "Invalid fallback sequence for language '$code'" );
200 * Returns true if a language code string is of a valid form, whether or
201 * not it exists. This includes codes which are used solely for
202 * customisation via the MediaWiki namespace.
204 * @param $code string
206 * @return bool
208 public static function isValidCode( $code ) {
209 return
210 strcspn( $code, ":/\\\000" ) === strlen( $code )
211 && !preg_match( Title::getTitleInvalidRegex(), $code );
215 * Returns true if a language code is of a valid form for the purposes of
216 * internal customisation of MediaWiki, via Messages*.php.
218 * @param $code string
220 * @since 1.18
221 * @return bool
223 public static function isValidBuiltInCode( $code ) {
224 return preg_match( '/^[a-z0-9-]+$/i', $code );
228 * @param $code
229 * @return String Name of the language class
231 public static function classFromCode( $code ) {
232 if ( $code == 'en' ) {
233 return 'Language';
234 } else {
235 return 'Language' . str_replace( '-', '_', ucfirst( $code ) );
240 * Includes language class files
242 * @param $class string Name of the language class
244 public static function preloadLanguageClass( $class ) {
245 global $IP;
247 if ( $class === 'Language' ) {
248 return;
251 if ( !defined( 'MW_COMPILED' ) ) {
252 // Preload base classes to work around APC/PHP5 bug
253 if ( file_exists( "$IP/languages/classes/$class.deps.php" ) ) {
254 include_once( "$IP/languages/classes/$class.deps.php" );
256 if ( file_exists( "$IP/languages/classes/$class.php" ) ) {
257 include_once( "$IP/languages/classes/$class.php" );
263 * Get the LocalisationCache instance
265 * @return LocalisationCache
267 public static function getLocalisationCache() {
268 if ( is_null( self::$dataCache ) ) {
269 global $wgLocalisationCacheConf;
270 $class = $wgLocalisationCacheConf['class'];
271 self::$dataCache = new $class( $wgLocalisationCacheConf );
273 return self::$dataCache;
276 function __construct() {
277 $this->mConverter = new FakeConverter( $this );
278 // Set the code to the name of the descendant
279 if ( get_class( $this ) == 'Language' ) {
280 $this->mCode = 'en';
281 } else {
282 $this->mCode = str_replace( '_', '-', strtolower( substr( get_class( $this ), 8 ) ) );
284 self::getLocalisationCache();
288 * Reduce memory usage
290 function __destruct() {
291 foreach ( $this as $name => $value ) {
292 unset( $this->$name );
297 * Hook which will be called if this is the content language.
298 * Descendants can use this to register hook functions or modify globals
300 function initContLang() { }
303 * Same as getFallbacksFor for current language.
304 * @return array|bool
305 * @deprecated in 1.19
307 function getFallbackLanguageCode() {
308 wfDeprecated( __METHOD__ );
309 return self::getFallbackFor( $this->mCode );
313 * @return array
314 * @since 1.19
316 function getFallbackLanguages() {
317 return self::getFallbacksFor( $this->mCode );
321 * Exports $wgBookstoreListEn
322 * @return array
324 function getBookstoreList() {
325 return self::$dataCache->getItem( $this->mCode, 'bookstoreList' );
329 * @return array
331 function getNamespaces() {
332 if ( is_null( $this->namespaceNames ) ) {
333 global $wgMetaNamespace, $wgMetaNamespaceTalk, $wgExtraNamespaces;
335 $this->namespaceNames = self::$dataCache->getItem( $this->mCode, 'namespaceNames' );
336 $validNamespaces = MWNamespace::getCanonicalNamespaces();
338 $this->namespaceNames = $wgExtraNamespaces + $this->namespaceNames + $validNamespaces;
340 $this->namespaceNames[NS_PROJECT] = $wgMetaNamespace;
341 if ( $wgMetaNamespaceTalk ) {
342 $this->namespaceNames[NS_PROJECT_TALK] = $wgMetaNamespaceTalk;
343 } else {
344 $talk = $this->namespaceNames[NS_PROJECT_TALK];
345 $this->namespaceNames[NS_PROJECT_TALK] =
346 $this->fixVariableInNamespace( $talk );
349 # Sometimes a language will be localised but not actually exist on this wiki.
350 foreach ( $this->namespaceNames as $key => $text ) {
351 if ( !isset( $validNamespaces[$key] ) ) {
352 unset( $this->namespaceNames[$key] );
356 # The above mixing may leave namespaces out of canonical order.
357 # Re-order by namespace ID number...
358 ksort( $this->namespaceNames );
360 wfRunHooks( 'LanguageGetNamespaces', array( &$this->namespaceNames ) );
362 return $this->namespaceNames;
366 * A convenience function that returns the same thing as
367 * getNamespaces() except with the array values changed to ' '
368 * where it found '_', useful for producing output to be displayed
369 * e.g. in <select> forms.
371 * @return array
373 function getFormattedNamespaces() {
374 $ns = $this->getNamespaces();
375 foreach ( $ns as $k => $v ) {
376 $ns[$k] = strtr( $v, '_', ' ' );
378 return $ns;
382 * Get a namespace value by key
383 * <code>
384 * $mw_ns = $wgContLang->getNsText( NS_MEDIAWIKI );
385 * echo $mw_ns; // prints 'MediaWiki'
386 * </code>
388 * @param $index Int: the array key of the namespace to return
389 * @return mixed, string if the namespace value exists, otherwise false
391 function getNsText( $index ) {
392 $ns = $this->getNamespaces();
393 return isset( $ns[$index] ) ? $ns[$index] : false;
397 * A convenience function that returns the same thing as
398 * getNsText() except with '_' changed to ' ', useful for
399 * producing output.
401 * @param $index string
403 * @return array
405 function getFormattedNsText( $index ) {
406 $ns = $this->getNsText( $index );
407 return strtr( $ns, '_', ' ' );
411 * Returns gender-dependent namespace alias if available.
412 * @param $index Int: namespace index
413 * @param $gender String: gender key (male, female... )
414 * @return String
415 * @since 1.18
417 function getGenderNsText( $index, $gender ) {
418 global $wgExtraGenderNamespaces;
420 $ns = $wgExtraGenderNamespaces + self::$dataCache->getItem( $this->mCode, 'namespaceGenderAliases' );
421 return isset( $ns[$index][$gender] ) ? $ns[$index][$gender] : $this->getNsText( $index );
425 * Whether this language makes distinguishes genders for example in
426 * namespaces.
427 * @return bool
428 * @since 1.18
430 function needsGenderDistinction() {
431 global $wgExtraGenderNamespaces, $wgExtraNamespaces;
432 if ( count( $wgExtraGenderNamespaces ) > 0 ) {
433 // $wgExtraGenderNamespaces overrides everything
434 return true;
435 } elseif ( isset( $wgExtraNamespaces[NS_USER] ) && isset( $wgExtraNamespaces[NS_USER_TALK] ) ) {
436 /// @todo There may be other gender namespace than NS_USER & NS_USER_TALK in the future
437 // $wgExtraNamespaces overrides any gender aliases specified in i18n files
438 return false;
439 } else {
440 // Check what is in i18n files
441 $aliases = self::$dataCache->getItem( $this->mCode, 'namespaceGenderAliases' );
442 return count( $aliases ) > 0;
447 * Get a namespace key by value, case insensitive.
448 * Only matches namespace names for the current language, not the
449 * canonical ones defined in Namespace.php.
451 * @param $text String
452 * @return mixed An integer if $text is a valid value otherwise false
454 function getLocalNsIndex( $text ) {
455 $lctext = $this->lc( $text );
456 $ids = $this->getNamespaceIds();
457 return isset( $ids[$lctext] ) ? $ids[$lctext] : false;
461 * @return array
463 function getNamespaceAliases() {
464 if ( is_null( $this->namespaceAliases ) ) {
465 $aliases = self::$dataCache->getItem( $this->mCode, 'namespaceAliases' );
466 if ( !$aliases ) {
467 $aliases = array();
468 } else {
469 foreach ( $aliases as $name => $index ) {
470 if ( $index === NS_PROJECT_TALK ) {
471 unset( $aliases[$name] );
472 $name = $this->fixVariableInNamespace( $name );
473 $aliases[$name] = $index;
478 global $wgExtraGenderNamespaces;
479 $genders = $wgExtraGenderNamespaces + (array)self::$dataCache->getItem( $this->mCode, 'namespaceGenderAliases' );
480 foreach ( $genders as $index => $forms ) {
481 foreach ( $forms as $alias ) {
482 $aliases[$alias] = $index;
486 $this->namespaceAliases = $aliases;
488 return $this->namespaceAliases;
492 * @return array
494 function getNamespaceIds() {
495 if ( is_null( $this->mNamespaceIds ) ) {
496 global $wgNamespaceAliases;
497 # Put namespace names and aliases into a hashtable.
498 # If this is too slow, then we should arrange it so that it is done
499 # before caching. The catch is that at pre-cache time, the above
500 # class-specific fixup hasn't been done.
501 $this->mNamespaceIds = array();
502 foreach ( $this->getNamespaces() as $index => $name ) {
503 $this->mNamespaceIds[$this->lc( $name )] = $index;
505 foreach ( $this->getNamespaceAliases() as $name => $index ) {
506 $this->mNamespaceIds[$this->lc( $name )] = $index;
508 if ( $wgNamespaceAliases ) {
509 foreach ( $wgNamespaceAliases as $name => $index ) {
510 $this->mNamespaceIds[$this->lc( $name )] = $index;
514 return $this->mNamespaceIds;
518 * Get a namespace key by value, case insensitive. Canonical namespace
519 * names override custom ones defined for the current language.
521 * @param $text String
522 * @return mixed An integer if $text is a valid value otherwise false
524 function getNsIndex( $text ) {
525 $lctext = $this->lc( $text );
526 $ns = MWNamespace::getCanonicalIndex( $lctext );
527 if ( $ns !== null ) {
528 return $ns;
530 $ids = $this->getNamespaceIds();
531 return isset( $ids[$lctext] ) ? $ids[$lctext] : false;
535 * short names for language variants used for language conversion links.
537 * @param $code String
538 * @param $usemsg bool Use the "variantname-xyz" message if it exists
539 * @return string
541 function getVariantname( $code, $usemsg = true ) {
542 $msg = "variantname-$code";
543 list( $rootCode ) = explode( '-', $code );
544 if ( $usemsg && wfMessage( $msg )->exists() ) {
545 return $this->getMessageFromDB( $msg );
547 $name = self::getLanguageName( $code );
548 if ( $name ) {
549 return $name; # if it's defined as a language name, show that
550 } else {
551 # otherwise, output the language code
552 return $code;
557 * @param $name string
558 * @return string
560 function specialPage( $name ) {
561 $aliases = $this->getSpecialPageAliases();
562 if ( isset( $aliases[$name][0] ) ) {
563 $name = $aliases[$name][0];
565 return $this->getNsText( NS_SPECIAL ) . ':' . $name;
569 * @return array
571 function getQuickbarSettings() {
572 return array(
573 $this->getMessage( 'qbsettings-none' ),
574 $this->getMessage( 'qbsettings-fixedleft' ),
575 $this->getMessage( 'qbsettings-fixedright' ),
576 $this->getMessage( 'qbsettings-floatingleft' ),
577 $this->getMessage( 'qbsettings-floatingright' ),
578 $this->getMessage( 'qbsettings-directionality' )
583 * @return array
585 function getDatePreferences() {
586 return self::$dataCache->getItem( $this->mCode, 'datePreferences' );
590 * @return array
592 function getDateFormats() {
593 return self::$dataCache->getItem( $this->mCode, 'dateFormats' );
597 * @return array|string
599 function getDefaultDateFormat() {
600 $df = self::$dataCache->getItem( $this->mCode, 'defaultDateFormat' );
601 if ( $df === 'dmy or mdy' ) {
602 global $wgAmericanDates;
603 return $wgAmericanDates ? 'mdy' : 'dmy';
604 } else {
605 return $df;
610 * @return array
612 function getDatePreferenceMigrationMap() {
613 return self::$dataCache->getItem( $this->mCode, 'datePreferenceMigrationMap' );
617 * @param $image
618 * @return array|null
620 function getImageFile( $image ) {
621 return self::$dataCache->getSubitem( $this->mCode, 'imageFiles', $image );
625 * @return array
627 function getExtraUserToggles() {
628 return (array)self::$dataCache->getItem( $this->mCode, 'extraUserToggles' );
632 * @param $tog
633 * @return string
635 function getUserToggle( $tog ) {
636 return $this->getMessageFromDB( "tog-$tog" );
640 * Get language names, indexed by code.
641 * If $customisedOnly is true, only returns codes with a messages file
643 * @param $customisedOnly bool
645 * @return array
647 public static function getLanguageNames( $customisedOnly = false ) {
648 global $wgExtraLanguageNames;
649 static $coreLanguageNames;
651 if ( $coreLanguageNames === null ) {
652 include( MWInit::compiledPath( 'languages/Names.php' ) );
655 $allNames = $wgExtraLanguageNames + $coreLanguageNames;
656 if ( !$customisedOnly ) {
657 return $allNames;
660 global $IP;
661 $names = array();
662 $dir = opendir( "$IP/languages/messages" );
663 while ( false !== ( $file = readdir( $dir ) ) ) {
664 $code = self::getCodeFromFileName( $file, 'Messages' );
665 if ( $code && isset( $allNames[$code] ) ) {
666 $names[$code] = $allNames[$code];
669 closedir( $dir );
670 return $names;
674 * Get translated language names. This is done on best effort and
675 * by default this is exactly the same as Language::getLanguageNames.
676 * The CLDR extension provides translated names.
677 * @param $code String Language code.
678 * @return Array language code => language name
679 * @since 1.18.0
681 public static function getTranslatedLanguageNames( $code ) {
682 $names = array();
683 wfRunHooks( 'LanguageGetTranslatedLanguageNames', array( &$names, $code ) );
685 foreach ( self::getLanguageNames() as $code => $name ) {
686 if ( !isset( $names[$code] ) ) $names[$code] = $name;
689 return $names;
693 * Get a message from the MediaWiki namespace.
695 * @param $msg String: message name
696 * @return string
698 function getMessageFromDB( $msg ) {
699 return wfMsgExt( $msg, array( 'parsemag', 'language' => $this ) );
703 * @param $code string
704 * @return string
706 function getLanguageName( $code ) {
707 $names = self::getLanguageNames();
708 if ( !array_key_exists( $code, $names ) ) {
709 return '';
711 return $names[$code];
715 * @param $key string
716 * @return string
718 function getMonthName( $key ) {
719 return $this->getMessageFromDB( self::$mMonthMsgs[$key - 1] );
723 * @return array
725 function getMonthNamesArray() {
726 $monthNames = array( '' );
727 for ( $i = 1; $i < 13; $i++ ) {
728 $monthNames[] = $this->getMonthName( $i );
730 return $monthNames;
734 * @param $key string
735 * @return string
737 function getMonthNameGen( $key ) {
738 return $this->getMessageFromDB( self::$mMonthGenMsgs[$key - 1] );
742 * @param $key string
743 * @return string
745 function getMonthAbbreviation( $key ) {
746 return $this->getMessageFromDB( self::$mMonthAbbrevMsgs[$key - 1] );
750 * @return array
752 function getMonthAbbreviationsArray() {
753 $monthNames = array( '' );
754 for ( $i = 1; $i < 13; $i++ ) {
755 $monthNames[] = $this->getMonthAbbreviation( $i );
757 return $monthNames;
761 * @param $key string
762 * @return string
764 function getWeekdayName( $key ) {
765 return $this->getMessageFromDB( self::$mWeekdayMsgs[$key - 1] );
769 * @param $key string
770 * @return string
772 function getWeekdayAbbreviation( $key ) {
773 return $this->getMessageFromDB( self::$mWeekdayAbbrevMsgs[$key - 1] );
777 * @param $key string
778 * @return string
780 function getIranianCalendarMonthName( $key ) {
781 return $this->getMessageFromDB( self::$mIranianCalendarMonthMsgs[$key - 1] );
785 * @param $key string
786 * @return string
788 function getHebrewCalendarMonthName( $key ) {
789 return $this->getMessageFromDB( self::$mHebrewCalendarMonthMsgs[$key - 1] );
793 * @param $key string
794 * @return string
796 function getHebrewCalendarMonthNameGen( $key ) {
797 return $this->getMessageFromDB( self::$mHebrewCalendarMonthGenMsgs[$key - 1] );
801 * @param $key string
802 * @return string
804 function getHijriCalendarMonthName( $key ) {
805 return $this->getMessageFromDB( self::$mHijriCalendarMonthMsgs[$key - 1] );
809 * This is a workalike of PHP's date() function, but with better
810 * internationalisation, a reduced set of format characters, and a better
811 * escaping format.
813 * Supported format characters are dDjlNwzWFmMntLoYyaAgGhHiscrU. See the
814 * PHP manual for definitions. There are a number of extensions, which
815 * start with "x":
817 * xn Do not translate digits of the next numeric format character
818 * xN Toggle raw digit (xn) flag, stays set until explicitly unset
819 * xr Use roman numerals for the next numeric format character
820 * xh Use hebrew numerals for the next numeric format character
821 * xx Literal x
822 * xg Genitive month name
824 * xij j (day number) in Iranian calendar
825 * xiF F (month name) in Iranian calendar
826 * xin n (month number) in Iranian calendar
827 * xiY Y (full year) in Iranian calendar
829 * xjj j (day number) in Hebrew calendar
830 * xjF F (month name) in Hebrew calendar
831 * xjt t (days in month) in Hebrew calendar
832 * xjx xg (genitive month name) in Hebrew calendar
833 * xjn n (month number) in Hebrew calendar
834 * xjY Y (full year) in Hebrew calendar
836 * xmj j (day number) in Hijri calendar
837 * xmF F (month name) in Hijri calendar
838 * xmn n (month number) in Hijri calendar
839 * xmY Y (full year) in Hijri calendar
841 * xkY Y (full year) in Thai solar calendar. Months and days are
842 * identical to the Gregorian calendar
843 * xoY Y (full year) in Minguo calendar or Juche year.
844 * Months and days are identical to the
845 * Gregorian calendar
846 * xtY Y (full year) in Japanese nengo. Months and days are
847 * identical to the Gregorian calendar
849 * Characters enclosed in double quotes will be considered literal (with
850 * the quotes themselves removed). Unmatched quotes will be considered
851 * literal quotes. Example:
853 * "The month is" F => The month is January
854 * i's" => 20'11"
856 * Backslash escaping is also supported.
858 * Input timestamp is assumed to be pre-normalized to the desired local
859 * time zone, if any.
861 * @param $format String
862 * @param $ts String: 14-character timestamp
863 * YYYYMMDDHHMMSS
864 * 01234567890123
865 * @todo handling of "o" format character for Iranian, Hebrew, Hijri & Thai?
867 * @return string
869 function sprintfDate( $format, $ts ) {
870 $s = '';
871 $raw = false;
872 $roman = false;
873 $hebrewNum = false;
874 $unix = false;
875 $rawToggle = false;
876 $iranian = false;
877 $hebrew = false;
878 $hijri = false;
879 $thai = false;
880 $minguo = false;
881 $tenno = false;
882 for ( $p = 0; $p < strlen( $format ); $p++ ) {
883 $num = false;
884 $code = $format[$p];
885 if ( $code == 'x' && $p < strlen( $format ) - 1 ) {
886 $code .= $format[++$p];
889 if ( ( $code === 'xi' || $code == 'xj' || $code == 'xk' || $code == 'xm' || $code == 'xo' || $code == 'xt' ) && $p < strlen( $format ) - 1 ) {
890 $code .= $format[++$p];
893 switch ( $code ) {
894 case 'xx':
895 $s .= 'x';
896 break;
897 case 'xn':
898 $raw = true;
899 break;
900 case 'xN':
901 $rawToggle = !$rawToggle;
902 break;
903 case 'xr':
904 $roman = true;
905 break;
906 case 'xh':
907 $hebrewNum = true;
908 break;
909 case 'xg':
910 $s .= $this->getMonthNameGen( substr( $ts, 4, 2 ) );
911 break;
912 case 'xjx':
913 if ( !$hebrew ) $hebrew = self::tsToHebrew( $ts );
914 $s .= $this->getHebrewCalendarMonthNameGen( $hebrew[1] );
915 break;
916 case 'd':
917 $num = substr( $ts, 6, 2 );
918 break;
919 case 'D':
920 if ( !$unix ) $unix = wfTimestamp( TS_UNIX, $ts );
921 $s .= $this->getWeekdayAbbreviation( gmdate( 'w', $unix ) + 1 );
922 break;
923 case 'j':
924 $num = intval( substr( $ts, 6, 2 ) );
925 break;
926 case 'xij':
927 if ( !$iranian ) {
928 $iranian = self::tsToIranian( $ts );
930 $num = $iranian[2];
931 break;
932 case 'xmj':
933 if ( !$hijri ) {
934 $hijri = self::tsToHijri( $ts );
936 $num = $hijri[2];
937 break;
938 case 'xjj':
939 if ( !$hebrew ) {
940 $hebrew = self::tsToHebrew( $ts );
942 $num = $hebrew[2];
943 break;
944 case 'l':
945 if ( !$unix ) {
946 $unix = wfTimestamp( TS_UNIX, $ts );
948 $s .= $this->getWeekdayName( gmdate( 'w', $unix ) + 1 );
949 break;
950 case 'N':
951 if ( !$unix ) {
952 $unix = wfTimestamp( TS_UNIX, $ts );
954 $w = gmdate( 'w', $unix );
955 $num = $w ? $w : 7;
956 break;
957 case 'w':
958 if ( !$unix ) {
959 $unix = wfTimestamp( TS_UNIX, $ts );
961 $num = gmdate( 'w', $unix );
962 break;
963 case 'z':
964 if ( !$unix ) {
965 $unix = wfTimestamp( TS_UNIX, $ts );
967 $num = gmdate( 'z', $unix );
968 break;
969 case 'W':
970 if ( !$unix ) {
971 $unix = wfTimestamp( TS_UNIX, $ts );
973 $num = gmdate( 'W', $unix );
974 break;
975 case 'F':
976 $s .= $this->getMonthName( substr( $ts, 4, 2 ) );
977 break;
978 case 'xiF':
979 if ( !$iranian ) {
980 $iranian = self::tsToIranian( $ts );
982 $s .= $this->getIranianCalendarMonthName( $iranian[1] );
983 break;
984 case 'xmF':
985 if ( !$hijri ) {
986 $hijri = self::tsToHijri( $ts );
988 $s .= $this->getHijriCalendarMonthName( $hijri[1] );
989 break;
990 case 'xjF':
991 if ( !$hebrew ) {
992 $hebrew = self::tsToHebrew( $ts );
994 $s .= $this->getHebrewCalendarMonthName( $hebrew[1] );
995 break;
996 case 'm':
997 $num = substr( $ts, 4, 2 );
998 break;
999 case 'M':
1000 $s .= $this->getMonthAbbreviation( substr( $ts, 4, 2 ) );
1001 break;
1002 case 'n':
1003 $num = intval( substr( $ts, 4, 2 ) );
1004 break;
1005 case 'xin':
1006 if ( !$iranian ) {
1007 $iranian = self::tsToIranian( $ts );
1009 $num = $iranian[1];
1010 break;
1011 case 'xmn':
1012 if ( !$hijri ) {
1013 $hijri = self::tsToHijri ( $ts );
1015 $num = $hijri[1];
1016 break;
1017 case 'xjn':
1018 if ( !$hebrew ) {
1019 $hebrew = self::tsToHebrew( $ts );
1021 $num = $hebrew[1];
1022 break;
1023 case 't':
1024 if ( !$unix ) {
1025 $unix = wfTimestamp( TS_UNIX, $ts );
1027 $num = gmdate( 't', $unix );
1028 break;
1029 case 'xjt':
1030 if ( !$hebrew ) {
1031 $hebrew = self::tsToHebrew( $ts );
1033 $num = $hebrew[3];
1034 break;
1035 case 'L':
1036 if ( !$unix ) {
1037 $unix = wfTimestamp( TS_UNIX, $ts );
1039 $num = gmdate( 'L', $unix );
1040 break;
1041 case 'o':
1042 if ( !$unix ) {
1043 $unix = wfTimestamp( TS_UNIX, $ts );
1045 $num = date( 'o', $unix );
1046 break;
1047 case 'Y':
1048 $num = substr( $ts, 0, 4 );
1049 break;
1050 case 'xiY':
1051 if ( !$iranian ) {
1052 $iranian = self::tsToIranian( $ts );
1054 $num = $iranian[0];
1055 break;
1056 case 'xmY':
1057 if ( !$hijri ) {
1058 $hijri = self::tsToHijri( $ts );
1060 $num = $hijri[0];
1061 break;
1062 case 'xjY':
1063 if ( !$hebrew ) {
1064 $hebrew = self::tsToHebrew( $ts );
1066 $num = $hebrew[0];
1067 break;
1068 case 'xkY':
1069 if ( !$thai ) {
1070 $thai = self::tsToYear( $ts, 'thai' );
1072 $num = $thai[0];
1073 break;
1074 case 'xoY':
1075 if ( !$minguo ) {
1076 $minguo = self::tsToYear( $ts, 'minguo' );
1078 $num = $minguo[0];
1079 break;
1080 case 'xtY':
1081 if ( !$tenno ) {
1082 $tenno = self::tsToYear( $ts, 'tenno' );
1084 $num = $tenno[0];
1085 break;
1086 case 'y':
1087 $num = substr( $ts, 2, 2 );
1088 break;
1089 case 'a':
1090 $s .= intval( substr( $ts, 8, 2 ) ) < 12 ? 'am' : 'pm';
1091 break;
1092 case 'A':
1093 $s .= intval( substr( $ts, 8, 2 ) ) < 12 ? 'AM' : 'PM';
1094 break;
1095 case 'g':
1096 $h = substr( $ts, 8, 2 );
1097 $num = $h % 12 ? $h % 12 : 12;
1098 break;
1099 case 'G':
1100 $num = intval( substr( $ts, 8, 2 ) );
1101 break;
1102 case 'h':
1103 $h = substr( $ts, 8, 2 );
1104 $num = sprintf( '%02d', $h % 12 ? $h % 12 : 12 );
1105 break;
1106 case 'H':
1107 $num = substr( $ts, 8, 2 );
1108 break;
1109 case 'i':
1110 $num = substr( $ts, 10, 2 );
1111 break;
1112 case 's':
1113 $num = substr( $ts, 12, 2 );
1114 break;
1115 case 'c':
1116 if ( !$unix ) {
1117 $unix = wfTimestamp( TS_UNIX, $ts );
1119 $s .= gmdate( 'c', $unix );
1120 break;
1121 case 'r':
1122 if ( !$unix ) {
1123 $unix = wfTimestamp( TS_UNIX, $ts );
1125 $s .= gmdate( 'r', $unix );
1126 break;
1127 case 'U':
1128 if ( !$unix ) {
1129 $unix = wfTimestamp( TS_UNIX, $ts );
1131 $num = $unix;
1132 break;
1133 case '\\':
1134 # Backslash escaping
1135 if ( $p < strlen( $format ) - 1 ) {
1136 $s .= $format[++$p];
1137 } else {
1138 $s .= '\\';
1140 break;
1141 case '"':
1142 # Quoted literal
1143 if ( $p < strlen( $format ) - 1 ) {
1144 $endQuote = strpos( $format, '"', $p + 1 );
1145 if ( $endQuote === false ) {
1146 # No terminating quote, assume literal "
1147 $s .= '"';
1148 } else {
1149 $s .= substr( $format, $p + 1, $endQuote - $p - 1 );
1150 $p = $endQuote;
1152 } else {
1153 # Quote at end of string, assume literal "
1154 $s .= '"';
1156 break;
1157 default:
1158 $s .= $format[$p];
1160 if ( $num !== false ) {
1161 if ( $rawToggle || $raw ) {
1162 $s .= $num;
1163 $raw = false;
1164 } elseif ( $roman ) {
1165 $s .= self::romanNumeral( $num );
1166 $roman = false;
1167 } elseif ( $hebrewNum ) {
1168 $s .= self::hebrewNumeral( $num );
1169 $hebrewNum = false;
1170 } else {
1171 $s .= $this->formatNum( $num, true );
1175 return $s;
1178 private static $GREG_DAYS = array( 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 );
1179 private static $IRANIAN_DAYS = array( 31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29 );
1182 * Algorithm by Roozbeh Pournader and Mohammad Toossi to convert
1183 * Gregorian dates to Iranian dates. Originally written in C, it
1184 * is released under the terms of GNU Lesser General Public
1185 * License. Conversion to PHP was performed by Niklas Laxström.
1187 * Link: http://www.farsiweb.info/jalali/jalali.c
1189 * @param $ts string
1191 * @return string
1193 private static function tsToIranian( $ts ) {
1194 $gy = substr( $ts, 0, 4 ) -1600;
1195 $gm = substr( $ts, 4, 2 ) -1;
1196 $gd = substr( $ts, 6, 2 ) -1;
1198 # Days passed from the beginning (including leap years)
1199 $gDayNo = 365 * $gy
1200 + floor( ( $gy + 3 ) / 4 )
1201 - floor( ( $gy + 99 ) / 100 )
1202 + floor( ( $gy + 399 ) / 400 );
1204 // Add days of the past months of this year
1205 for ( $i = 0; $i < $gm; $i++ ) {
1206 $gDayNo += self::$GREG_DAYS[$i];
1209 // Leap years
1210 if ( $gm > 1 && ( ( $gy % 4 === 0 && $gy % 100 !== 0 || ( $gy % 400 == 0 ) ) ) ) {
1211 $gDayNo++;
1214 // Days passed in current month
1215 $gDayNo += (int)$gd;
1217 $jDayNo = $gDayNo - 79;
1219 $jNp = floor( $jDayNo / 12053 );
1220 $jDayNo %= 12053;
1222 $jy = 979 + 33 * $jNp + 4 * floor( $jDayNo / 1461 );
1223 $jDayNo %= 1461;
1225 if ( $jDayNo >= 366 ) {
1226 $jy += floor( ( $jDayNo - 1 ) / 365 );
1227 $jDayNo = floor( ( $jDayNo - 1 ) % 365 );
1230 for ( $i = 0; $i < 11 && $jDayNo >= self::$IRANIAN_DAYS[$i]; $i++ ) {
1231 $jDayNo -= self::$IRANIAN_DAYS[$i];
1234 $jm = $i + 1;
1235 $jd = $jDayNo + 1;
1237 return array( $jy, $jm, $jd );
1241 * Converting Gregorian dates to Hijri dates.
1243 * Based on a PHP-Nuke block by Sharjeel which is released under GNU/GPL license
1245 * @link http://phpnuke.org/modules.php?name=News&file=article&sid=8234&mode=thread&order=0&thold=0
1247 * @param $ts string
1249 * @return string
1251 private static function tsToHijri( $ts ) {
1252 $year = substr( $ts, 0, 4 );
1253 $month = substr( $ts, 4, 2 );
1254 $day = substr( $ts, 6, 2 );
1256 $zyr = $year;
1257 $zd = $day;
1258 $zm = $month;
1259 $zy = $zyr;
1261 if (
1262 ( $zy > 1582 ) || ( ( $zy == 1582 ) && ( $zm > 10 ) ) ||
1263 ( ( $zy == 1582 ) && ( $zm == 10 ) && ( $zd > 14 ) )
1266 $zjd = (int)( ( 1461 * ( $zy + 4800 + (int)( ( $zm - 14 ) / 12 ) ) ) / 4 ) +
1267 (int)( ( 367 * ( $zm - 2 - 12 * ( (int)( ( $zm - 14 ) / 12 ) ) ) ) / 12 ) -
1268 (int)( ( 3 * (int)( ( ( $zy + 4900 + (int)( ( $zm - 14 ) / 12 ) ) / 100 ) ) ) / 4 ) +
1269 $zd - 32075;
1270 } else {
1271 $zjd = 367 * $zy - (int)( ( 7 * ( $zy + 5001 + (int)( ( $zm - 9 ) / 7 ) ) ) / 4 ) +
1272 (int)( ( 275 * $zm ) / 9 ) + $zd + 1729777;
1275 $zl = $zjd -1948440 + 10632;
1276 $zn = (int)( ( $zl - 1 ) / 10631 );
1277 $zl = $zl - 10631 * $zn + 354;
1278 $zj = ( (int)( ( 10985 - $zl ) / 5316 ) ) * ( (int)( ( 50 * $zl ) / 17719 ) ) + ( (int)( $zl / 5670 ) ) * ( (int)( ( 43 * $zl ) / 15238 ) );
1279 $zl = $zl - ( (int)( ( 30 - $zj ) / 15 ) ) * ( (int)( ( 17719 * $zj ) / 50 ) ) - ( (int)( $zj / 16 ) ) * ( (int)( ( 15238 * $zj ) / 43 ) ) + 29;
1280 $zm = (int)( ( 24 * $zl ) / 709 );
1281 $zd = $zl - (int)( ( 709 * $zm ) / 24 );
1282 $zy = 30 * $zn + $zj - 30;
1284 return array( $zy, $zm, $zd );
1288 * Converting Gregorian dates to Hebrew dates.
1290 * Based on a JavaScript code by Abu Mami and Yisrael Hersch
1291 * (abu-mami@kaluach.net, http://www.kaluach.net), who permitted
1292 * to translate the relevant functions into PHP and release them under
1293 * GNU GPL.
1295 * The months are counted from Tishrei = 1. In a leap year, Adar I is 13
1296 * and Adar II is 14. In a non-leap year, Adar is 6.
1298 * @param $ts string
1300 * @return string
1302 private static function tsToHebrew( $ts ) {
1303 # Parse date
1304 $year = substr( $ts, 0, 4 );
1305 $month = substr( $ts, 4, 2 );
1306 $day = substr( $ts, 6, 2 );
1308 # Calculate Hebrew year
1309 $hebrewYear = $year + 3760;
1311 # Month number when September = 1, August = 12
1312 $month += 4;
1313 if ( $month > 12 ) {
1314 # Next year
1315 $month -= 12;
1316 $year++;
1317 $hebrewYear++;
1320 # Calculate day of year from 1 September
1321 $dayOfYear = $day;
1322 for ( $i = 1; $i < $month; $i++ ) {
1323 if ( $i == 6 ) {
1324 # February
1325 $dayOfYear += 28;
1326 # Check if the year is leap
1327 if ( $year % 400 == 0 || ( $year % 4 == 0 && $year % 100 > 0 ) ) {
1328 $dayOfYear++;
1330 } elseif ( $i == 8 || $i == 10 || $i == 1 || $i == 3 ) {
1331 $dayOfYear += 30;
1332 } else {
1333 $dayOfYear += 31;
1337 # Calculate the start of the Hebrew year
1338 $start = self::hebrewYearStart( $hebrewYear );
1340 # Calculate next year's start
1341 if ( $dayOfYear <= $start ) {
1342 # Day is before the start of the year - it is the previous year
1343 # Next year's start
1344 $nextStart = $start;
1345 # Previous year
1346 $year--;
1347 $hebrewYear--;
1348 # Add days since previous year's 1 September
1349 $dayOfYear += 365;
1350 if ( ( $year % 400 == 0 ) || ( $year % 100 != 0 && $year % 4 == 0 ) ) {
1351 # Leap year
1352 $dayOfYear++;
1354 # Start of the new (previous) year
1355 $start = self::hebrewYearStart( $hebrewYear );
1356 } else {
1357 # Next year's start
1358 $nextStart = self::hebrewYearStart( $hebrewYear + 1 );
1361 # Calculate Hebrew day of year
1362 $hebrewDayOfYear = $dayOfYear - $start;
1364 # Difference between year's days
1365 $diff = $nextStart - $start;
1366 # Add 12 (or 13 for leap years) days to ignore the difference between
1367 # Hebrew and Gregorian year (353 at least vs. 365/6) - now the
1368 # difference is only about the year type
1369 if ( ( $year % 400 == 0 ) || ( $year % 100 != 0 && $year % 4 == 0 ) ) {
1370 $diff += 13;
1371 } else {
1372 $diff += 12;
1375 # Check the year pattern, and is leap year
1376 # 0 means an incomplete year, 1 means a regular year, 2 means a complete year
1377 # This is mod 30, to work on both leap years (which add 30 days of Adar I)
1378 # and non-leap years
1379 $yearPattern = $diff % 30;
1380 # Check if leap year
1381 $isLeap = $diff >= 30;
1383 # Calculate day in the month from number of day in the Hebrew year
1384 # Don't check Adar - if the day is not in Adar, we will stop before;
1385 # if it is in Adar, we will use it to check if it is Adar I or Adar II
1386 $hebrewDay = $hebrewDayOfYear;
1387 $hebrewMonth = 1;
1388 $days = 0;
1389 while ( $hebrewMonth <= 12 ) {
1390 # Calculate days in this month
1391 if ( $isLeap && $hebrewMonth == 6 ) {
1392 # Adar in a leap year
1393 if ( $isLeap ) {
1394 # Leap year - has Adar I, with 30 days, and Adar II, with 29 days
1395 $days = 30;
1396 if ( $hebrewDay <= $days ) {
1397 # Day in Adar I
1398 $hebrewMonth = 13;
1399 } else {
1400 # Subtract the days of Adar I
1401 $hebrewDay -= $days;
1402 # Try Adar II
1403 $days = 29;
1404 if ( $hebrewDay <= $days ) {
1405 # Day in Adar II
1406 $hebrewMonth = 14;
1410 } elseif ( $hebrewMonth == 2 && $yearPattern == 2 ) {
1411 # Cheshvan in a complete year (otherwise as the rule below)
1412 $days = 30;
1413 } elseif ( $hebrewMonth == 3 && $yearPattern == 0 ) {
1414 # Kislev in an incomplete year (otherwise as the rule below)
1415 $days = 29;
1416 } else {
1417 # Odd months have 30 days, even have 29
1418 $days = 30 - ( $hebrewMonth - 1 ) % 2;
1420 if ( $hebrewDay <= $days ) {
1421 # In the current month
1422 break;
1423 } else {
1424 # Subtract the days of the current month
1425 $hebrewDay -= $days;
1426 # Try in the next month
1427 $hebrewMonth++;
1431 return array( $hebrewYear, $hebrewMonth, $hebrewDay, $days );
1435 * This calculates the Hebrew year start, as days since 1 September.
1436 * Based on Carl Friedrich Gauss algorithm for finding Easter date.
1437 * Used for Hebrew date.
1439 * @param $year int
1441 * @return string
1443 private static function hebrewYearStart( $year ) {
1444 $a = intval( ( 12 * ( $year - 1 ) + 17 ) % 19 );
1445 $b = intval( ( $year - 1 ) % 4 );
1446 $m = 32.044093161144 + 1.5542417966212 * $a + $b / 4.0 - 0.0031777940220923 * ( $year - 1 );
1447 if ( $m < 0 ) {
1448 $m--;
1450 $Mar = intval( $m );
1451 if ( $m < 0 ) {
1452 $m++;
1454 $m -= $Mar;
1456 $c = intval( ( $Mar + 3 * ( $year - 1 ) + 5 * $b + 5 ) % 7 );
1457 if ( $c == 0 && $a > 11 && $m >= 0.89772376543210 ) {
1458 $Mar++;
1459 } elseif ( $c == 1 && $a > 6 && $m >= 0.63287037037037 ) {
1460 $Mar += 2;
1461 } elseif ( $c == 2 || $c == 4 || $c == 6 ) {
1462 $Mar++;
1465 $Mar += intval( ( $year - 3761 ) / 100 ) - intval( ( $year - 3761 ) / 400 ) - 24;
1466 return $Mar;
1470 * Algorithm to convert Gregorian dates to Thai solar dates,
1471 * Minguo dates or Minguo dates.
1473 * Link: http://en.wikipedia.org/wiki/Thai_solar_calendar
1474 * http://en.wikipedia.org/wiki/Minguo_calendar
1475 * http://en.wikipedia.org/wiki/Japanese_era_name
1477 * @param $ts String: 14-character timestamp
1478 * @param $cName String: calender name
1479 * @return Array: converted year, month, day
1481 private static function tsToYear( $ts, $cName ) {
1482 $gy = substr( $ts, 0, 4 );
1483 $gm = substr( $ts, 4, 2 );
1484 $gd = substr( $ts, 6, 2 );
1486 if ( !strcmp( $cName, 'thai' ) ) {
1487 # Thai solar dates
1488 # Add 543 years to the Gregorian calendar
1489 # Months and days are identical
1490 $gy_offset = $gy + 543;
1491 } elseif ( ( !strcmp( $cName, 'minguo' ) ) || !strcmp( $cName, 'juche' ) ) {
1492 # Minguo dates
1493 # Deduct 1911 years from the Gregorian calendar
1494 # Months and days are identical
1495 $gy_offset = $gy - 1911;
1496 } elseif ( !strcmp( $cName, 'tenno' ) ) {
1497 # Nengō dates up to Meiji period
1498 # Deduct years from the Gregorian calendar
1499 # depending on the nengo periods
1500 # Months and days are identical
1501 if ( ( $gy < 1912 ) || ( ( $gy == 1912 ) && ( $gm < 7 ) ) || ( ( $gy == 1912 ) && ( $gm == 7 ) && ( $gd < 31 ) ) ) {
1502 # Meiji period
1503 $gy_gannen = $gy - 1868 + 1;
1504 $gy_offset = $gy_gannen;
1505 if ( $gy_gannen == 1 ) {
1506 $gy_offset = '元';
1508 $gy_offset = '明治' . $gy_offset;
1509 } elseif (
1510 ( ( $gy == 1912 ) && ( $gm == 7 ) && ( $gd == 31 ) ) ||
1511 ( ( $gy == 1912 ) && ( $gm >= 8 ) ) ||
1512 ( ( $gy > 1912 ) && ( $gy < 1926 ) ) ||
1513 ( ( $gy == 1926 ) && ( $gm < 12 ) ) ||
1514 ( ( $gy == 1926 ) && ( $gm == 12 ) && ( $gd < 26 ) )
1517 # Taishō period
1518 $gy_gannen = $gy - 1912 + 1;
1519 $gy_offset = $gy_gannen;
1520 if ( $gy_gannen == 1 ) {
1521 $gy_offset = '元';
1523 $gy_offset = '大正' . $gy_offset;
1524 } elseif (
1525 ( ( $gy == 1926 ) && ( $gm == 12 ) && ( $gd >= 26 ) ) ||
1526 ( ( $gy > 1926 ) && ( $gy < 1989 ) ) ||
1527 ( ( $gy == 1989 ) && ( $gm == 1 ) && ( $gd < 8 ) )
1530 # Shōwa period
1531 $gy_gannen = $gy - 1926 + 1;
1532 $gy_offset = $gy_gannen;
1533 if ( $gy_gannen == 1 ) {
1534 $gy_offset = '元';
1536 $gy_offset = '昭和' . $gy_offset;
1537 } else {
1538 # Heisei period
1539 $gy_gannen = $gy - 1989 + 1;
1540 $gy_offset = $gy_gannen;
1541 if ( $gy_gannen == 1 ) {
1542 $gy_offset = '元';
1544 $gy_offset = '平成' . $gy_offset;
1546 } else {
1547 $gy_offset = $gy;
1550 return array( $gy_offset, $gm, $gd );
1554 * Roman number formatting up to 3000
1556 * @param $num int
1558 * @return string
1560 static function romanNumeral( $num ) {
1561 static $table = array(
1562 array( '', 'I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX', 'X' ),
1563 array( '', 'X', 'XX', 'XXX', 'XL', 'L', 'LX', 'LXX', 'LXXX', 'XC', 'C' ),
1564 array( '', 'C', 'CC', 'CCC', 'CD', 'D', 'DC', 'DCC', 'DCCC', 'CM', 'M' ),
1565 array( '', 'M', 'MM', 'MMM' )
1568 $num = intval( $num );
1569 if ( $num > 3000 || $num <= 0 ) {
1570 return $num;
1573 $s = '';
1574 for ( $pow10 = 1000, $i = 3; $i >= 0; $pow10 /= 10, $i-- ) {
1575 if ( $num >= $pow10 ) {
1576 $s .= $table[$i][(int)floor( $num / $pow10 )];
1578 $num = $num % $pow10;
1580 return $s;
1584 * Hebrew Gematria number formatting up to 9999
1586 * @param $num int
1588 * @return string
1590 static function hebrewNumeral( $num ) {
1591 static $table = array(
1592 array( '', 'א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז', 'ח', 'ט', 'י' ),
1593 array( '', 'י', 'כ', 'ל', 'מ', 'נ', 'ס', 'ע', 'פ', 'צ', 'ק' ),
1594 array( '', 'ק', 'ר', 'ש', 'ת', 'תק', 'תר', 'תש', 'תת', 'תתק', 'תתר' ),
1595 array( '', 'א', 'ב', 'ג', 'ד', 'ה', 'ו', 'ז', 'ח', 'ט', 'י' )
1598 $num = intval( $num );
1599 if ( $num > 9999 || $num <= 0 ) {
1600 return $num;
1603 $s = '';
1604 for ( $pow10 = 1000, $i = 3; $i >= 0; $pow10 /= 10, $i-- ) {
1605 if ( $num >= $pow10 ) {
1606 if ( $num == 15 || $num == 16 ) {
1607 $s .= $table[0][9] . $table[0][$num - 9];
1608 $num = 0;
1609 } else {
1610 $s .= $table[$i][intval( ( $num / $pow10 ) )];
1611 if ( $pow10 == 1000 ) {
1612 $s .= "'";
1616 $num = $num % $pow10;
1618 if ( strlen( $s ) == 2 ) {
1619 $str = $s . "'";
1620 } else {
1621 $str = substr( $s, 0, strlen( $s ) - 2 ) . '"';
1622 $str .= substr( $s, strlen( $s ) - 2, 2 );
1624 $start = substr( $str, 0, strlen( $str ) - 2 );
1625 $end = substr( $str, strlen( $str ) - 2 );
1626 switch( $end ) {
1627 case 'כ':
1628 $str = $start . 'ך';
1629 break;
1630 case 'מ':
1631 $str = $start . 'ם';
1632 break;
1633 case 'נ':
1634 $str = $start . 'ן';
1635 break;
1636 case 'פ':
1637 $str = $start . 'ף';
1638 break;
1639 case 'צ':
1640 $str = $start . 'ץ';
1641 break;
1643 return $str;
1647 * Used by date() and time() to adjust the time output.
1649 * @param $ts Int the time in date('YmdHis') format
1650 * @param $tz Mixed: adjust the time by this amount (default false, mean we
1651 * get user timecorrection setting)
1652 * @return int
1654 function userAdjust( $ts, $tz = false ) {
1655 global $wgUser, $wgLocalTZoffset;
1657 if ( $tz === false ) {
1658 $tz = $wgUser->getOption( 'timecorrection' );
1661 $data = explode( '|', $tz, 3 );
1663 if ( $data[0] == 'ZoneInfo' ) {
1664 wfSuppressWarnings();
1665 $userTZ = timezone_open( $data[2] );
1666 wfRestoreWarnings();
1667 if ( $userTZ !== false ) {
1668 $date = date_create( $ts, timezone_open( 'UTC' ) );
1669 date_timezone_set( $date, $userTZ );
1670 $date = date_format( $date, 'YmdHis' );
1671 return $date;
1673 # Unrecognized timezone, default to 'Offset' with the stored offset.
1674 $data[0] = 'Offset';
1677 $minDiff = 0;
1678 if ( $data[0] == 'System' || $tz == '' ) {
1679 #  Global offset in minutes.
1680 if ( isset( $wgLocalTZoffset ) ) {
1681 $minDiff = $wgLocalTZoffset;
1683 } elseif ( $data[0] == 'Offset' ) {
1684 $minDiff = intval( $data[1] );
1685 } else {
1686 $data = explode( ':', $tz );
1687 if ( count( $data ) == 2 ) {
1688 $data[0] = intval( $data[0] );
1689 $data[1] = intval( $data[1] );
1690 $minDiff = abs( $data[0] ) * 60 + $data[1];
1691 if ( $data[0] < 0 ) {
1692 $minDiff = -$minDiff;
1694 } else {
1695 $minDiff = intval( $data[0] ) * 60;
1699 # No difference ? Return time unchanged
1700 if ( 0 == $minDiff ) {
1701 return $ts;
1704 wfSuppressWarnings(); // E_STRICT system time bitching
1705 # Generate an adjusted date; take advantage of the fact that mktime
1706 # will normalize out-of-range values so we don't have to split $minDiff
1707 # into hours and minutes.
1708 $t = mktime( (
1709 (int)substr( $ts, 8, 2 ) ), # Hours
1710 (int)substr( $ts, 10, 2 ) + $minDiff, # Minutes
1711 (int)substr( $ts, 12, 2 ), # Seconds
1712 (int)substr( $ts, 4, 2 ), # Month
1713 (int)substr( $ts, 6, 2 ), # Day
1714 (int)substr( $ts, 0, 4 ) ); # Year
1716 $date = date( 'YmdHis', $t );
1717 wfRestoreWarnings();
1719 return $date;
1723 * This is meant to be used by time(), date(), and timeanddate() to get
1724 * the date preference they're supposed to use, it should be used in
1725 * all children.
1727 *<code>
1728 * function timeanddate([...], $format = true) {
1729 * $datePreference = $this->dateFormat($format);
1730 * [...]
1732 *</code>
1734 * @param $usePrefs Mixed: if true, the user's preference is used
1735 * if false, the site/language default is used
1736 * if int/string, assumed to be a format.
1737 * @return string
1739 function dateFormat( $usePrefs = true ) {
1740 global $wgUser;
1742 if ( is_bool( $usePrefs ) ) {
1743 if ( $usePrefs ) {
1744 $datePreference = $wgUser->getDatePreference();
1745 } else {
1746 $datePreference = (string)User::getDefaultOption( 'date' );
1748 } else {
1749 $datePreference = (string)$usePrefs;
1752 // return int
1753 if ( $datePreference == '' ) {
1754 return 'default';
1757 return $datePreference;
1761 * Get a format string for a given type and preference
1762 * @param $type string May be date, time or both
1763 * @param $pref string The format name as it appears in Messages*.php
1765 * @return string
1767 function getDateFormatString( $type, $pref ) {
1768 if ( !isset( $this->dateFormatStrings[$type][$pref] ) ) {
1769 if ( $pref == 'default' ) {
1770 $pref = $this->getDefaultDateFormat();
1771 $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" );
1772 } else {
1773 $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" );
1774 if ( is_null( $df ) ) {
1775 $pref = $this->getDefaultDateFormat();
1776 $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" );
1779 $this->dateFormatStrings[$type][$pref] = $df;
1781 return $this->dateFormatStrings[$type][$pref];
1785 * @param $ts Mixed: the time format which needs to be turned into a
1786 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1787 * @param $adj Bool: whether to adjust the time output according to the
1788 * user configured offset ($timecorrection)
1789 * @param $format Mixed: true to use user's date format preference
1790 * @param $timecorrection String|bool the time offset as returned by
1791 * validateTimeZone() in Special:Preferences
1792 * @return string
1794 function date( $ts, $adj = false, $format = true, $timecorrection = false ) {
1795 $ts = wfTimestamp( TS_MW, $ts );
1796 if ( $adj ) {
1797 $ts = $this->userAdjust( $ts, $timecorrection );
1799 $df = $this->getDateFormatString( 'date', $this->dateFormat( $format ) );
1800 return $this->sprintfDate( $df, $ts );
1804 * @param $ts Mixed: the time format which needs to be turned into a
1805 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1806 * @param $adj Bool: whether to adjust the time output according to the
1807 * user configured offset ($timecorrection)
1808 * @param $format Mixed: true to use user's date format preference
1809 * @param $timecorrection String|bool the time offset as returned by
1810 * validateTimeZone() in Special:Preferences
1811 * @return string
1813 function time( $ts, $adj = false, $format = true, $timecorrection = false ) {
1814 $ts = wfTimestamp( TS_MW, $ts );
1815 if ( $adj ) {
1816 $ts = $this->userAdjust( $ts, $timecorrection );
1818 $df = $this->getDateFormatString( 'time', $this->dateFormat( $format ) );
1819 return $this->sprintfDate( $df, $ts );
1823 * @param $ts Mixed: the time format which needs to be turned into a
1824 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1825 * @param $adj Bool: whether to adjust the time output according to the
1826 * user configured offset ($timecorrection)
1827 * @param $format Mixed: what format to return, if it's false output the
1828 * default one (default true)
1829 * @param $timecorrection String|bool the time offset as returned by
1830 * validateTimeZone() in Special:Preferences
1831 * @return string
1833 function timeanddate( $ts, $adj = false, $format = true, $timecorrection = false ) {
1834 $ts = wfTimestamp( TS_MW, $ts );
1835 if ( $adj ) {
1836 $ts = $this->userAdjust( $ts, $timecorrection );
1838 $df = $this->getDateFormatString( 'both', $this->dateFormat( $format ) );
1839 return $this->sprintfDate( $df, $ts );
1843 * Internal helper function for userDate(), userTime() and userTimeAndDate()
1845 * @param $type String: can be 'date', 'time' or 'both'
1846 * @param $ts Mixed: the time format which needs to be turned into a
1847 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1848 * @param $user User object used to get preferences for timezone and format
1849 * @param $options Array, can contain the following keys:
1850 * - 'timecorrection': time correction, can have the following values:
1851 * - true: use user's preference
1852 * - false: don't use time correction
1853 * - integer: value of time correction in minutes
1854 * - 'format': format to use, can have the following values:
1855 * - true: use user's preference
1856 * - false: use default preference
1857 * - string: format to use
1858 * @return String
1860 private function internalUserTimeAndDate( $type, $ts, User $user, array $options ) {
1861 $ts = wfTimestamp( TS_MW, $ts );
1862 $options += array( 'timecorrection' => true, 'format' => true );
1863 if ( $options['timecorrection'] !== false ) {
1864 if ( $options['timecorrection'] === true ) {
1865 $offset = $user->getOption( 'timecorrection' );
1866 } else {
1867 $offset = $options['timecorrection'];
1869 $ts = $this->userAdjust( $ts, $offset );
1871 if ( $options['format'] === true ) {
1872 $format = $user->getDatePreference();
1873 } else {
1874 $format = $options['format'];
1876 $df = $this->getDateFormatString( $type, $this->dateFormat( $format ) );
1877 return $this->sprintfDate( $df, $ts );
1881 * Get the formatted date for the given timestamp and formatted for
1882 * the given user.
1884 * @param $ts Mixed: the time format which needs to be turned into a
1885 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1886 * @param $user User object used to get preferences for timezone and format
1887 * @param $options Array, can contain the following keys:
1888 * - 'timecorrection': time correction, can have the following values:
1889 * - true: use user's preference
1890 * - false: don't use time correction
1891 * - integer: value of time correction in minutes
1892 * - 'format': format to use, can have the following values:
1893 * - true: use user's preference
1894 * - false: use default preference
1895 * - string: format to use
1896 * @return String
1898 public function userDate( $ts, User $user, array $options = array() ) {
1899 return $this->internalUserTimeAndDate( 'date', $ts, $user, $options );
1903 * Get the formatted time for the given timestamp and formatted for
1904 * the given user.
1906 * @param $ts Mixed: the time format which needs to be turned into a
1907 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1908 * @param $user User object used to get preferences for timezone and format
1909 * @param $options Array, can contain the following keys:
1910 * - 'timecorrection': time correction, can have the following values:
1911 * - true: use user's preference
1912 * - false: don't use time correction
1913 * - integer: value of time correction in minutes
1914 * - 'format': format to use, can have the following values:
1915 * - true: use user's preference
1916 * - false: use default preference
1917 * - string: format to use
1918 * @return String
1920 public function userTime( $ts, User $user, array $options = array() ) {
1921 return $this->internalUserTimeAndDate( 'time', $ts, $user, $options );
1925 * Get the formatted date and time for the given timestamp and formatted for
1926 * the given user.
1928 * @param $ts Mixed: the time format which needs to be turned into a
1929 * date('YmdHis') format with wfTimestamp(TS_MW,$ts)
1930 * @param $user User object used to get preferences for timezone and format
1931 * @param $options Array, can contain the following keys:
1932 * - 'timecorrection': time correction, can have the following values:
1933 * - true: use user's preference
1934 * - false: don't use time correction
1935 * - integer: value of time correction in minutes
1936 * - 'format': format to use, can have the following values:
1937 * - true: use user's preference
1938 * - false: use default preference
1939 * - string: format to use
1940 * @return String
1942 public function userTimeAndDate( $ts, User $user, array $options = array() ) {
1943 return $this->internalUserTimeAndDate( 'both', $ts, $user, $options );
1947 * @param $key string
1948 * @return array|null
1950 function getMessage( $key ) {
1951 return self::$dataCache->getSubitem( $this->mCode, 'messages', $key );
1955 * @return array
1957 function getAllMessages() {
1958 return self::$dataCache->getItem( $this->mCode, 'messages' );
1962 * @param $in
1963 * @param $out
1964 * @param $string
1965 * @return string
1967 function iconv( $in, $out, $string ) {
1968 # This is a wrapper for iconv in all languages except esperanto,
1969 # which does some nasty x-conversions beforehand
1971 # Even with //IGNORE iconv can whine about illegal characters in
1972 # *input* string. We just ignore those too.
1973 # REF: http://bugs.php.net/bug.php?id=37166
1974 # REF: https://bugzilla.wikimedia.org/show_bug.cgi?id=16885
1975 wfSuppressWarnings();
1976 $text = iconv( $in, $out . '//IGNORE', $string );
1977 wfRestoreWarnings();
1978 return $text;
1981 // callback functions for uc(), lc(), ucwords(), ucwordbreaks()
1984 * @param $matches array
1985 * @return mixed|string
1987 function ucwordbreaksCallbackAscii( $matches ) {
1988 return $this->ucfirst( $matches[1] );
1992 * @param $matches array
1993 * @return string
1995 function ucwordbreaksCallbackMB( $matches ) {
1996 return mb_strtoupper( $matches[0] );
2000 * @param $matches array
2001 * @return string
2003 function ucCallback( $matches ) {
2004 list( $wikiUpperChars ) = self::getCaseMaps();
2005 return strtr( $matches[1], $wikiUpperChars );
2009 * @param $matches array
2010 * @return string
2012 function lcCallback( $matches ) {
2013 list( , $wikiLowerChars ) = self::getCaseMaps();
2014 return strtr( $matches[1], $wikiLowerChars );
2018 * @param $matches array
2019 * @return string
2021 function ucwordsCallbackMB( $matches ) {
2022 return mb_strtoupper( $matches[0] );
2026 * @param $matches array
2027 * @return string
2029 function ucwordsCallbackWiki( $matches ) {
2030 list( $wikiUpperChars ) = self::getCaseMaps();
2031 return strtr( $matches[0], $wikiUpperChars );
2035 * Make a string's first character uppercase
2037 * @param $str string
2039 * @return string
2041 function ucfirst( $str ) {
2042 $o = ord( $str );
2043 if ( $o < 96 ) { // if already uppercase...
2044 return $str;
2045 } elseif ( $o < 128 ) {
2046 return ucfirst( $str ); // use PHP's ucfirst()
2047 } else {
2048 // fall back to more complex logic in case of multibyte strings
2049 return $this->uc( $str, true );
2054 * Convert a string to uppercase
2056 * @param $str string
2057 * @param $first bool
2059 * @return string
2061 function uc( $str, $first = false ) {
2062 if ( function_exists( 'mb_strtoupper' ) ) {
2063 if ( $first ) {
2064 if ( $this->isMultibyte( $str ) ) {
2065 return mb_strtoupper( mb_substr( $str, 0, 1 ) ) . mb_substr( $str, 1 );
2066 } else {
2067 return ucfirst( $str );
2069 } else {
2070 return $this->isMultibyte( $str ) ? mb_strtoupper( $str ) : strtoupper( $str );
2072 } else {
2073 if ( $this->isMultibyte( $str ) ) {
2074 $x = $first ? '^' : '';
2075 return preg_replace_callback(
2076 "/$x([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/",
2077 array( $this, 'ucCallback' ),
2078 $str
2080 } else {
2081 return $first ? ucfirst( $str ) : strtoupper( $str );
2087 * @param $str string
2088 * @return mixed|string
2090 function lcfirst( $str ) {
2091 $o = ord( $str );
2092 if ( !$o ) {
2093 return strval( $str );
2094 } elseif ( $o >= 128 ) {
2095 return $this->lc( $str, true );
2096 } elseif ( $o > 96 ) {
2097 return $str;
2098 } else {
2099 $str[0] = strtolower( $str[0] );
2100 return $str;
2105 * @param $str string
2106 * @param $first bool
2107 * @return mixed|string
2109 function lc( $str, $first = false ) {
2110 if ( function_exists( 'mb_strtolower' ) ) {
2111 if ( $first ) {
2112 if ( $this->isMultibyte( $str ) ) {
2113 return mb_strtolower( mb_substr( $str, 0, 1 ) ) . mb_substr( $str, 1 );
2114 } else {
2115 return strtolower( substr( $str, 0, 1 ) ) . substr( $str, 1 );
2117 } else {
2118 return $this->isMultibyte( $str ) ? mb_strtolower( $str ) : strtolower( $str );
2120 } else {
2121 if ( $this->isMultibyte( $str ) ) {
2122 $x = $first ? '^' : '';
2123 return preg_replace_callback(
2124 "/$x([A-Z]|[\\xc0-\\xff][\\x80-\\xbf]*)/",
2125 array( $this, 'lcCallback' ),
2126 $str
2128 } else {
2129 return $first ? strtolower( substr( $str, 0, 1 ) ) . substr( $str, 1 ) : strtolower( $str );
2135 * @param $str string
2136 * @return bool
2138 function isMultibyte( $str ) {
2139 return (bool)preg_match( '/[\x80-\xff]/', $str );
2143 * @param $str string
2144 * @return mixed|string
2146 function ucwords( $str ) {
2147 if ( $this->isMultibyte( $str ) ) {
2148 $str = $this->lc( $str );
2150 // regexp to find first letter in each word (i.e. after each space)
2151 $replaceRegexp = "/^([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)| ([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/";
2153 // function to use to capitalize a single char
2154 if ( function_exists( 'mb_strtoupper' ) ) {
2155 return preg_replace_callback(
2156 $replaceRegexp,
2157 array( $this, 'ucwordsCallbackMB' ),
2158 $str
2160 } else {
2161 return preg_replace_callback(
2162 $replaceRegexp,
2163 array( $this, 'ucwordsCallbackWiki' ),
2164 $str
2167 } else {
2168 return ucwords( strtolower( $str ) );
2173 * capitalize words at word breaks
2175 * @param $str string
2176 * @return mixed
2178 function ucwordbreaks( $str ) {
2179 if ( $this->isMultibyte( $str ) ) {
2180 $str = $this->lc( $str );
2182 // since \b doesn't work for UTF-8, we explicitely define word break chars
2183 $breaks = "[ \-\(\)\}\{\.,\?!]";
2185 // find first letter after word break
2186 $replaceRegexp = "/^([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)|$breaks([a-z]|[\\xc0-\\xff][\\x80-\\xbf]*)/";
2188 if ( function_exists( 'mb_strtoupper' ) ) {
2189 return preg_replace_callback(
2190 $replaceRegexp,
2191 array( $this, 'ucwordbreaksCallbackMB' ),
2192 $str
2194 } else {
2195 return preg_replace_callback(
2196 $replaceRegexp,
2197 array( $this, 'ucwordsCallbackWiki' ),
2198 $str
2201 } else {
2202 return preg_replace_callback(
2203 '/\b([\w\x80-\xff]+)\b/',
2204 array( $this, 'ucwordbreaksCallbackAscii' ),
2205 $str
2211 * Return a case-folded representation of $s
2213 * This is a representation such that caseFold($s1)==caseFold($s2) if $s1
2214 * and $s2 are the same except for the case of their characters. It is not
2215 * necessary for the value returned to make sense when displayed.
2217 * Do *not* perform any other normalisation in this function. If a caller
2218 * uses this function when it should be using a more general normalisation
2219 * function, then fix the caller.
2221 * @param $s string
2223 * @return string
2225 function caseFold( $s ) {
2226 return $this->uc( $s );
2230 * @param $s string
2231 * @return string
2233 function checkTitleEncoding( $s ) {
2234 if ( is_array( $s ) ) {
2235 wfDebugDieBacktrace( 'Given array to checkTitleEncoding.' );
2237 # Check for non-UTF-8 URLs
2238 $ishigh = preg_match( '/[\x80-\xff]/', $s );
2239 if ( !$ishigh ) {
2240 return $s;
2243 $isutf8 = preg_match( '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
2244 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})+$/', $s );
2245 if ( $isutf8 ) {
2246 return $s;
2249 return $this->iconv( $this->fallback8bitEncoding(), 'utf-8', $s );
2253 * @return array
2255 function fallback8bitEncoding() {
2256 return self::$dataCache->getItem( $this->mCode, 'fallback8bitEncoding' );
2260 * Most writing systems use whitespace to break up words.
2261 * Some languages such as Chinese don't conventionally do this,
2262 * which requires special handling when breaking up words for
2263 * searching etc.
2265 * @return bool
2267 function hasWordBreaks() {
2268 return true;
2272 * Some languages such as Chinese require word segmentation,
2273 * Specify such segmentation when overridden in derived class.
2275 * @param $string String
2276 * @return String
2278 function segmentByWord( $string ) {
2279 return $string;
2283 * Some languages have special punctuation need to be normalized.
2284 * Make such changes here.
2286 * @param $string String
2287 * @return String
2289 function normalizeForSearch( $string ) {
2290 return self::convertDoubleWidth( $string );
2294 * convert double-width roman characters to single-width.
2295 * range: ff00-ff5f ~= 0020-007f
2297 * @param $string string
2299 * @return string
2301 protected static function convertDoubleWidth( $string ) {
2302 static $full = null;
2303 static $half = null;
2305 if ( $full === null ) {
2306 $fullWidth = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
2307 $halfWidth = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
2308 $full = str_split( $fullWidth, 3 );
2309 $half = str_split( $halfWidth );
2312 $string = str_replace( $full, $half, $string );
2313 return $string;
2317 * @param $string string
2318 * @param $pattern string
2319 * @return string
2321 protected static function insertSpace( $string, $pattern ) {
2322 $string = preg_replace( $pattern, " $1 ", $string );
2323 $string = preg_replace( '/ +/', ' ', $string );
2324 return $string;
2328 * @param $termsArray array
2329 * @return array
2331 function convertForSearchResult( $termsArray ) {
2332 # some languages, e.g. Chinese, need to do a conversion
2333 # in order for search results to be displayed correctly
2334 return $termsArray;
2338 * Get the first character of a string.
2340 * @param $s string
2341 * @return string
2343 function firstChar( $s ) {
2344 $matches = array();
2345 preg_match(
2346 '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
2347 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})/',
2349 $matches
2352 if ( isset( $matches[1] ) ) {
2353 if ( strlen( $matches[1] ) != 3 ) {
2354 return $matches[1];
2357 // Break down Hangul syllables to grab the first jamo
2358 $code = utf8ToCodepoint( $matches[1] );
2359 if ( $code < 0xac00 || 0xd7a4 <= $code ) {
2360 return $matches[1];
2361 } elseif ( $code < 0xb098 ) {
2362 return "\xe3\x84\xb1";
2363 } elseif ( $code < 0xb2e4 ) {
2364 return "\xe3\x84\xb4";
2365 } elseif ( $code < 0xb77c ) {
2366 return "\xe3\x84\xb7";
2367 } elseif ( $code < 0xb9c8 ) {
2368 return "\xe3\x84\xb9";
2369 } elseif ( $code < 0xbc14 ) {
2370 return "\xe3\x85\x81";
2371 } elseif ( $code < 0xc0ac ) {
2372 return "\xe3\x85\x82";
2373 } elseif ( $code < 0xc544 ) {
2374 return "\xe3\x85\x85";
2375 } elseif ( $code < 0xc790 ) {
2376 return "\xe3\x85\x87";
2377 } elseif ( $code < 0xcc28 ) {
2378 return "\xe3\x85\x88";
2379 } elseif ( $code < 0xce74 ) {
2380 return "\xe3\x85\x8a";
2381 } elseif ( $code < 0xd0c0 ) {
2382 return "\xe3\x85\x8b";
2383 } elseif ( $code < 0xd30c ) {
2384 return "\xe3\x85\x8c";
2385 } elseif ( $code < 0xd558 ) {
2386 return "\xe3\x85\x8d";
2387 } else {
2388 return "\xe3\x85\x8e";
2390 } else {
2391 return '';
2395 function initEncoding() {
2396 # Some languages may have an alternate char encoding option
2397 # (Esperanto X-coding, Japanese furigana conversion, etc)
2398 # If this language is used as the primary content language,
2399 # an override to the defaults can be set here on startup.
2403 * @param $s string
2404 * @return string
2406 function recodeForEdit( $s ) {
2407 # For some languages we'll want to explicitly specify
2408 # which characters make it into the edit box raw
2409 # or are converted in some way or another.
2410 global $wgEditEncoding;
2411 if ( $wgEditEncoding == '' || $wgEditEncoding == 'UTF-8' ) {
2412 return $s;
2413 } else {
2414 return $this->iconv( 'UTF-8', $wgEditEncoding, $s );
2419 * @param $s string
2420 * @return string
2422 function recodeInput( $s ) {
2423 # Take the previous into account.
2424 global $wgEditEncoding;
2425 if ( $wgEditEncoding != '' ) {
2426 $enc = $wgEditEncoding;
2427 } else {
2428 $enc = 'UTF-8';
2430 if ( $enc == 'UTF-8' ) {
2431 return $s;
2432 } else {
2433 return $this->iconv( $enc, 'UTF-8', $s );
2438 * Convert a UTF-8 string to normal form C. In Malayalam and Arabic, this
2439 * also cleans up certain backwards-compatible sequences, converting them
2440 * to the modern Unicode equivalent.
2442 * This is language-specific for performance reasons only.
2444 * @param $s string
2446 * @return string
2448 function normalize( $s ) {
2449 global $wgAllUnicodeFixes;
2450 $s = UtfNormal::cleanUp( $s );
2451 if ( $wgAllUnicodeFixes ) {
2452 $s = $this->transformUsingPairFile( 'normalize-ar.ser', $s );
2453 $s = $this->transformUsingPairFile( 'normalize-ml.ser', $s );
2456 return $s;
2460 * Transform a string using serialized data stored in the given file (which
2461 * must be in the serialized subdirectory of $IP). The file contains pairs
2462 * mapping source characters to destination characters.
2464 * The data is cached in process memory. This will go faster if you have the
2465 * FastStringSearch extension.
2467 * @param $file string
2468 * @param $string string
2470 * @return string
2472 function transformUsingPairFile( $file, $string ) {
2473 if ( !isset( $this->transformData[$file] ) ) {
2474 $data = wfGetPrecompiledData( $file );
2475 if ( $data === false ) {
2476 throw new MWException( __METHOD__ . ": The transformation file $file is missing" );
2478 $this->transformData[$file] = new ReplacementArray( $data );
2480 return $this->transformData[$file]->replace( $string );
2484 * For right-to-left language support
2486 * @return bool
2488 function isRTL() {
2489 return self::$dataCache->getItem( $this->mCode, 'rtl' );
2493 * Return the correct HTML 'dir' attribute value for this language.
2494 * @return String
2496 function getDir() {
2497 return $this->isRTL() ? 'rtl' : 'ltr';
2501 * Return 'left' or 'right' as appropriate alignment for line-start
2502 * for this language's text direction.
2504 * Should be equivalent to CSS3 'start' text-align value....
2506 * @return String
2508 function alignStart() {
2509 return $this->isRTL() ? 'right' : 'left';
2513 * Return 'right' or 'left' as appropriate alignment for line-end
2514 * for this language's text direction.
2516 * Should be equivalent to CSS3 'end' text-align value....
2518 * @return String
2520 function alignEnd() {
2521 return $this->isRTL() ? 'left' : 'right';
2525 * A hidden direction mark (LRM or RLM), depending on the language direction
2527 * @param $opposite Boolean Get the direction mark opposite to your language
2528 * @return string
2530 function getDirMark( $opposite = false ) {
2531 $rtl = "\xE2\x80\x8F";
2532 $ltr = "\xE2\x80\x8E";
2533 if ( $opposite ) { return $this->isRTL() ? $ltr : $rtl; }
2534 return $this->isRTL() ? $rtl : $ltr;
2538 * @return array
2540 function capitalizeAllNouns() {
2541 return self::$dataCache->getItem( $this->mCode, 'capitalizeAllNouns' );
2545 * An arrow, depending on the language direction
2547 * @return string
2549 function getArrow() {
2550 return $this->isRTL() ? '←' : '→';
2554 * To allow "foo[[bar]]" to extend the link over the whole word "foobar"
2556 * @return bool
2558 function linkPrefixExtension() {
2559 return self::$dataCache->getItem( $this->mCode, 'linkPrefixExtension' );
2563 * @return array
2565 function getMagicWords() {
2566 return self::$dataCache->getItem( $this->mCode, 'magicWords' );
2569 protected function doMagicHook() {
2570 if ( $this->mMagicHookDone ) {
2571 return;
2573 $this->mMagicHookDone = true;
2574 wfProfileIn( 'LanguageGetMagic' );
2575 wfRunHooks( 'LanguageGetMagic', array( &$this->mMagicExtensions, $this->getCode() ) );
2576 wfProfileOut( 'LanguageGetMagic' );
2580 * Fill a MagicWord object with data from here
2582 * @param $mw
2584 function getMagic( $mw ) {
2585 $this->doMagicHook();
2587 if ( isset( $this->mMagicExtensions[$mw->mId] ) ) {
2588 $rawEntry = $this->mMagicExtensions[$mw->mId];
2589 } else {
2590 $magicWords = $this->getMagicWords();
2591 if ( isset( $magicWords[$mw->mId] ) ) {
2592 $rawEntry = $magicWords[$mw->mId];
2593 } else {
2594 $rawEntry = false;
2598 if ( !is_array( $rawEntry ) ) {
2599 error_log( "\"$rawEntry\" is not a valid magic word for \"$mw->mId\"" );
2600 } else {
2601 $mw->mCaseSensitive = $rawEntry[0];
2602 $mw->mSynonyms = array_slice( $rawEntry, 1 );
2607 * Add magic words to the extension array
2609 * @param $newWords array
2611 function addMagicWordsByLang( $newWords ) {
2612 $fallbackChain = $this->getFallbackLanguages();
2613 $fallbackChain = array_reverse( $fallbackChain );
2614 foreach ( $fallbackChain as $code ) {
2615 if ( isset( $newWords[$code] ) ) {
2616 $this->mMagicExtensions = $newWords[$code] + $this->mMagicExtensions;
2622 * Get special page names, as an associative array
2623 * case folded alias => real name
2625 function getSpecialPageAliases() {
2626 // Cache aliases because it may be slow to load them
2627 if ( is_null( $this->mExtendedSpecialPageAliases ) ) {
2628 // Initialise array
2629 $this->mExtendedSpecialPageAliases =
2630 self::$dataCache->getItem( $this->mCode, 'specialPageAliases' );
2631 wfRunHooks( 'LanguageGetSpecialPageAliases',
2632 array( &$this->mExtendedSpecialPageAliases, $this->getCode() ) );
2635 return $this->mExtendedSpecialPageAliases;
2639 * Italic is unsuitable for some languages
2641 * @param $text String: the text to be emphasized.
2642 * @return string
2644 function emphasize( $text ) {
2645 return "<em>$text</em>";
2649 * Normally we output all numbers in plain en_US style, that is
2650 * 293,291.235 for twohundredninetythreethousand-twohundredninetyone
2651 * point twohundredthirtyfive. However this is not suitable for all
2652 * languages, some such as Pakaran want ੨੯੩,੨੯੫.੨੩੫ and others such as
2653 * Icelandic just want to use commas instead of dots, and dots instead
2654 * of commas like "293.291,235".
2656 * An example of this function being called:
2657 * <code>
2658 * wfMsg( 'message', $wgLang->formatNum( $num ) )
2659 * </code>
2661 * See LanguageGu.php for the Gujarati implementation and
2662 * $separatorTransformTable on MessageIs.php for
2663 * the , => . and . => , implementation.
2665 * @todo check if it's viable to use localeconv() for the decimal
2666 * separator thing.
2667 * @param $number Mixed: the string to be formatted, should be an integer
2668 * or a floating point number.
2669 * @param $nocommafy Bool: set to true for special numbers like dates
2670 * @return string
2672 function formatNum( $number, $nocommafy = false ) {
2673 global $wgTranslateNumerals;
2674 if ( !$nocommafy ) {
2675 $number = $this->commafy( $number );
2676 $s = $this->separatorTransformTable();
2677 if ( $s ) {
2678 $number = strtr( $number, $s );
2682 if ( $wgTranslateNumerals ) {
2683 $s = $this->digitTransformTable();
2684 if ( $s ) {
2685 $number = strtr( $number, $s );
2689 return $number;
2693 * @param $number string
2694 * @return string
2696 function parseFormattedNumber( $number ) {
2697 $s = $this->digitTransformTable();
2698 if ( $s ) {
2699 $number = strtr( $number, array_flip( $s ) );
2702 $s = $this->separatorTransformTable();
2703 if ( $s ) {
2704 $number = strtr( $number, array_flip( $s ) );
2707 $number = strtr( $number, array( ',' => '' ) );
2708 return $number;
2712 * Adds commas to a given number
2713 * @since 1.19
2714 * @param $_ mixed
2715 * @return string
2717 function commafy( $_ ) {
2718 $digitGroupingPattern = $this->digitGroupingPattern();
2720 if ( !$digitGroupingPattern || $digitGroupingPattern === "###,###,###" ) {
2721 // default grouping is at thousands, use the same for ###,###,### pattern too.
2722 return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) );
2723 } else {
2724 // Ref: http://cldr.unicode.org/translation/number-patterns
2725 $numberpart = array();
2726 $decimalpart = array();
2727 $numMatches = preg_match_all( "/(#+)/", $digitGroupingPattern, $matches );
2728 preg_match( "/\d+/", $_, $numberpart );
2729 preg_match( "/\.\d*/", $_, $decimalpart );
2730 $groupedNumber = ( count( $decimalpart ) > 0 ) ? $decimalpart[0]:"";
2731 if ( $groupedNumber === $_ ) {
2732 // the string does not have any number part. Eg: .12345
2733 return $groupedNumber;
2735 $start = $end = strlen( $numberpart[0] );
2736 while ( $start > 0 ) {
2737 $match = $matches[0][$numMatches -1] ;
2738 $matchLen = strlen( $match );
2739 $start = $end - $matchLen;
2740 if ( $start < 0 ) {
2741 $start = 0;
2743 $groupedNumber = substr( $_ , $start, $end -$start ) . $groupedNumber ;
2744 $end = $start;
2745 if ( $numMatches > 1 ) {
2746 // use the last pattern for the rest of the number
2747 $numMatches--;
2749 if ( $start > 0 ) {
2750 $groupedNumber = "," . $groupedNumber;
2753 return $groupedNumber;
2757 * @return String
2759 function digitGroupingPattern() {
2760 return self::$dataCache->getItem( $this->mCode, 'digitGroupingPattern' );
2764 * @return array
2766 function digitTransformTable() {
2767 return self::$dataCache->getItem( $this->mCode, 'digitTransformTable' );
2771 * @return array
2773 function separatorTransformTable() {
2774 return self::$dataCache->getItem( $this->mCode, 'separatorTransformTable' );
2778 * Take a list of strings and build a locale-friendly comma-separated
2779 * list, using the local comma-separator message.
2780 * The last two strings are chained with an "and".
2782 * @param $l Array
2783 * @return string
2785 function listToText( $l ) {
2786 $s = '';
2787 $m = count( $l ) - 1;
2788 if ( $m == 1 ) {
2789 return $l[0] . $this->getMessageFromDB( 'and' ) . $this->getMessageFromDB( 'word-separator' ) . $l[1];
2790 } else {
2791 for ( $i = $m; $i >= 0; $i-- ) {
2792 if ( $i == $m ) {
2793 $s = $l[$i];
2794 } elseif ( $i == $m - 1 ) {
2795 $s = $l[$i] . $this->getMessageFromDB( 'and' ) . $this->getMessageFromDB( 'word-separator' ) . $s;
2796 } else {
2797 $s = $l[$i] . $this->getMessageFromDB( 'comma-separator' ) . $s;
2800 return $s;
2805 * Take a list of strings and build a locale-friendly comma-separated
2806 * list, using the local comma-separator message.
2807 * @param $list array of strings to put in a comma list
2808 * @return string
2810 function commaList( $list ) {
2811 return implode(
2812 $list,
2813 wfMsgExt(
2814 'comma-separator',
2815 array( 'parsemag', 'escapenoentities', 'language' => $this )
2821 * Take a list of strings and build a locale-friendly semicolon-separated
2822 * list, using the local semicolon-separator message.
2823 * @param $list array of strings to put in a semicolon list
2824 * @return string
2826 function semicolonList( $list ) {
2827 return implode(
2828 $list,
2829 wfMsgExt(
2830 'semicolon-separator',
2831 array( 'parsemag', 'escapenoentities', 'language' => $this )
2837 * Same as commaList, but separate it with the pipe instead.
2838 * @param $list array of strings to put in a pipe list
2839 * @return string
2841 function pipeList( $list ) {
2842 return implode(
2843 $list,
2844 wfMsgExt(
2845 'pipe-separator',
2846 array( 'escapenoentities', 'language' => $this )
2852 * Truncate a string to a specified length in bytes, appending an optional
2853 * string (e.g. for ellipses)
2855 * The database offers limited byte lengths for some columns in the database;
2856 * multi-byte character sets mean we need to ensure that only whole characters
2857 * are included, otherwise broken characters can be passed to the user
2859 * If $length is negative, the string will be truncated from the beginning
2861 * @param $string String to truncate
2862 * @param $length Int: maximum length (including ellipses)
2863 * @param $ellipsis String to append to the truncated text
2864 * @param $adjustLength Boolean: Subtract length of ellipsis from $length.
2865 * $adjustLength was introduced in 1.18, before that behaved as if false.
2866 * @return string
2868 function truncate( $string, $length, $ellipsis = '...', $adjustLength = true ) {
2869 # Use the localized ellipsis character
2870 if ( $ellipsis == '...' ) {
2871 $ellipsis = wfMsgExt( 'ellipsis', array( 'escapenoentities', 'language' => $this ) );
2873 # Check if there is no need to truncate
2874 if ( $length == 0 ) {
2875 return $ellipsis; // convention
2876 } elseif ( strlen( $string ) <= abs( $length ) ) {
2877 return $string; // no need to truncate
2879 $stringOriginal = $string;
2880 # If ellipsis length is >= $length then we can't apply $adjustLength
2881 if ( $adjustLength && strlen( $ellipsis ) >= abs( $length ) ) {
2882 $string = $ellipsis; // this can be slightly unexpected
2883 # Otherwise, truncate and add ellipsis...
2884 } else {
2885 $eLength = $adjustLength ? strlen( $ellipsis ) : 0;
2886 if ( $length > 0 ) {
2887 $length -= $eLength;
2888 $string = substr( $string, 0, $length ); // xyz...
2889 $string = $this->removeBadCharLast( $string );
2890 $string = $string . $ellipsis;
2891 } else {
2892 $length += $eLength;
2893 $string = substr( $string, $length ); // ...xyz
2894 $string = $this->removeBadCharFirst( $string );
2895 $string = $ellipsis . $string;
2898 # Do not truncate if the ellipsis makes the string longer/equal (bug 22181).
2899 # This check is *not* redundant if $adjustLength, due to the single case where
2900 # LEN($ellipsis) > ABS($limit arg); $stringOriginal could be shorter than $string.
2901 if ( strlen( $string ) < strlen( $stringOriginal ) ) {
2902 return $string;
2903 } else {
2904 return $stringOriginal;
2909 * Remove bytes that represent an incomplete Unicode character
2910 * at the end of string (e.g. bytes of the char are missing)
2912 * @param $string String
2913 * @return string
2915 protected function removeBadCharLast( $string ) {
2916 if ( $string != '' ) {
2917 $char = ord( $string[strlen( $string ) - 1] );
2918 $m = array();
2919 if ( $char >= 0xc0 ) {
2920 # We got the first byte only of a multibyte char; remove it.
2921 $string = substr( $string, 0, -1 );
2922 } elseif ( $char >= 0x80 &&
2923 preg_match( '/^(.*)(?:[\xe0-\xef][\x80-\xbf]|' .
2924 '[\xf0-\xf7][\x80-\xbf]{1,2})$/', $string, $m ) )
2926 # We chopped in the middle of a character; remove it
2927 $string = $m[1];
2930 return $string;
2934 * Remove bytes that represent an incomplete Unicode character
2935 * at the start of string (e.g. bytes of the char are missing)
2937 * @param $string String
2938 * @return string
2940 protected function removeBadCharFirst( $string ) {
2941 if ( $string != '' ) {
2942 $char = ord( $string[0] );
2943 if ( $char >= 0x80 && $char < 0xc0 ) {
2944 # We chopped in the middle of a character; remove the whole thing
2945 $string = preg_replace( '/^[\x80-\xbf]+/', '', $string );
2948 return $string;
2952 * Truncate a string of valid HTML to a specified length in bytes,
2953 * appending an optional string (e.g. for ellipses), and return valid HTML
2955 * This is only intended for styled/linked text, such as HTML with
2956 * tags like <span> and <a>, were the tags are self-contained (valid HTML).
2957 * Also, this will not detect things like "display:none" CSS.
2959 * Note: since 1.18 you do not need to leave extra room in $length for ellipses.
2961 * @param string $text HTML string to truncate
2962 * @param int $length (zero/positive) Maximum length (including ellipses)
2963 * @param string $ellipsis String to append to the truncated text
2964 * @return string
2966 function truncateHtml( $text, $length, $ellipsis = '...' ) {
2967 # Use the localized ellipsis character
2968 if ( $ellipsis == '...' ) {
2969 $ellipsis = wfMsgExt( 'ellipsis', array( 'escapenoentities', 'language' => $this ) );
2971 # Check if there is clearly no need to truncate
2972 if ( $length <= 0 ) {
2973 return $ellipsis; // no text shown, nothing to format (convention)
2974 } elseif ( strlen( $text ) <= $length ) {
2975 return $text; // string short enough even *with* HTML (short-circuit)
2978 $dispLen = 0; // innerHTML legth so far
2979 $testingEllipsis = false; // checking if ellipses will make string longer/equal?
2980 $tagType = 0; // 0-open, 1-close
2981 $bracketState = 0; // 1-tag start, 2-tag name, 0-neither
2982 $entityState = 0; // 0-not entity, 1-entity
2983 $tag = $ret = ''; // accumulated tag name, accumulated result string
2984 $openTags = array(); // open tag stack
2985 $maybeState = null; // possible truncation state
2987 $textLen = strlen( $text );
2988 $neLength = max( 0, $length - strlen( $ellipsis ) ); // non-ellipsis len if truncated
2989 for ( $pos = 0; true; ++$pos ) {
2990 # Consider truncation once the display length has reached the maximim.
2991 # We check if $dispLen > 0 to grab tags for the $neLength = 0 case.
2992 # Check that we're not in the middle of a bracket/entity...
2993 if ( $dispLen && $dispLen >= $neLength && $bracketState == 0 && !$entityState ) {
2994 if ( !$testingEllipsis ) {
2995 $testingEllipsis = true;
2996 # Save where we are; we will truncate here unless there turn out to
2997 # be so few remaining characters that truncation is not necessary.
2998 if ( !$maybeState ) { // already saved? ($neLength = 0 case)
2999 $maybeState = array( $ret, $openTags ); // save state
3001 } elseif ( $dispLen > $length && $dispLen > strlen( $ellipsis ) ) {
3002 # String in fact does need truncation, the truncation point was OK.
3003 list( $ret, $openTags ) = $maybeState; // reload state
3004 $ret = $this->removeBadCharLast( $ret ); // multi-byte char fix
3005 $ret .= $ellipsis; // add ellipsis
3006 break;
3009 if ( $pos >= $textLen ) break; // extra iteration just for above checks
3011 # Read the next char...
3012 $ch = $text[$pos];
3013 $lastCh = $pos ? $text[$pos - 1] : '';
3014 $ret .= $ch; // add to result string
3015 if ( $ch == '<' ) {
3016 $this->truncate_endBracket( $tag, $tagType, $lastCh, $openTags ); // for bad HTML
3017 $entityState = 0; // for bad HTML
3018 $bracketState = 1; // tag started (checking for backslash)
3019 } elseif ( $ch == '>' ) {
3020 $this->truncate_endBracket( $tag, $tagType, $lastCh, $openTags );
3021 $entityState = 0; // for bad HTML
3022 $bracketState = 0; // out of brackets
3023 } elseif ( $bracketState == 1 ) {
3024 if ( $ch == '/' ) {
3025 $tagType = 1; // close tag (e.g. "</span>")
3026 } else {
3027 $tagType = 0; // open tag (e.g. "<span>")
3028 $tag .= $ch;
3030 $bracketState = 2; // building tag name
3031 } elseif ( $bracketState == 2 ) {
3032 if ( $ch != ' ' ) {
3033 $tag .= $ch;
3034 } else {
3035 // Name found (e.g. "<a href=..."), add on tag attributes...
3036 $pos += $this->truncate_skip( $ret, $text, "<>", $pos + 1 );
3038 } elseif ( $bracketState == 0 ) {
3039 if ( $entityState ) {
3040 if ( $ch == ';' ) {
3041 $entityState = 0;
3042 $dispLen++; // entity is one displayed char
3044 } else {
3045 if ( $neLength == 0 && !$maybeState ) {
3046 // Save state without $ch. We want to *hit* the first
3047 // display char (to get tags) but not *use* it if truncating.
3048 $maybeState = array( substr( $ret, 0, -1 ), $openTags );
3050 if ( $ch == '&' ) {
3051 $entityState = 1; // entity found, (e.g. "&#160;")
3052 } else {
3053 $dispLen++; // this char is displayed
3054 // Add the next $max display text chars after this in one swoop...
3055 $max = ( $testingEllipsis ? $length : $neLength ) - $dispLen;
3056 $skipped = $this->truncate_skip( $ret, $text, "<>&", $pos + 1, $max );
3057 $dispLen += $skipped;
3058 $pos += $skipped;
3063 // Close the last tag if left unclosed by bad HTML
3064 $this->truncate_endBracket( $tag, $text[$textLen - 1], $tagType, $openTags );
3065 while ( count( $openTags ) > 0 ) {
3066 $ret .= '</' . array_pop( $openTags ) . '>'; // close open tags
3068 return $ret;
3072 * truncateHtml() helper function
3073 * like strcspn() but adds the skipped chars to $ret
3075 * @param $ret
3076 * @param $text
3077 * @param $search
3078 * @param $start
3079 * @param $len
3080 * @return int
3082 private function truncate_skip( &$ret, $text, $search, $start, $len = null ) {
3083 if ( $len === null ) {
3084 $len = -1; // -1 means "no limit" for strcspn
3085 } elseif ( $len < 0 ) {
3086 $len = 0; // sanity
3088 $skipCount = 0;
3089 if ( $start < strlen( $text ) ) {
3090 $skipCount = strcspn( $text, $search, $start, $len );
3091 $ret .= substr( $text, $start, $skipCount );
3093 return $skipCount;
3097 * truncateHtml() helper function
3098 * (a) push or pop $tag from $openTags as needed
3099 * (b) clear $tag value
3100 * @param &$tag string Current HTML tag name we are looking at
3101 * @param $tagType int (0-open tag, 1-close tag)
3102 * @param $lastCh char|string Character before the '>' that ended this tag
3103 * @param &$openTags array Open tag stack (not accounting for $tag)
3105 private function truncate_endBracket( &$tag, $tagType, $lastCh, &$openTags ) {
3106 $tag = ltrim( $tag );
3107 if ( $tag != '' ) {
3108 if ( $tagType == 0 && $lastCh != '/' ) {
3109 $openTags[] = $tag; // tag opened (didn't close itself)
3110 } elseif ( $tagType == 1 ) {
3111 if ( $openTags && $tag == $openTags[count( $openTags ) - 1] ) {
3112 array_pop( $openTags ); // tag closed
3115 $tag = '';
3120 * Grammatical transformations, needed for inflected languages
3121 * Invoked by putting {{grammar:case|word}} in a message
3123 * @param $word string
3124 * @param $case string
3125 * @return string
3127 function convertGrammar( $word, $case ) {
3128 global $wgGrammarForms;
3129 if ( isset( $wgGrammarForms[$this->getCode()][$case][$word] ) ) {
3130 return $wgGrammarForms[$this->getCode()][$case][$word];
3132 return $word;
3136 * Provides an alternative text depending on specified gender.
3137 * Usage {{gender:username|masculine|feminine|neutral}}.
3138 * username is optional, in which case the gender of current user is used,
3139 * but only in (some) interface messages; otherwise default gender is used.
3140 * If second or third parameter are not specified, masculine is used.
3141 * These details may be overriden per language.
3143 * @param $gender string
3144 * @param $forms array
3146 * @return string
3148 function gender( $gender, $forms ) {
3149 if ( !count( $forms ) ) {
3150 return '';
3152 $forms = $this->preConvertPlural( $forms, 2 );
3153 if ( $gender === 'male' ) {
3154 return $forms[0];
3156 if ( $gender === 'female' ) {
3157 return $forms[1];
3159 return isset( $forms[2] ) ? $forms[2] : $forms[0];
3163 * Plural form transformations, needed for some languages.
3164 * For example, there are 3 form of plural in Russian and Polish,
3165 * depending on "count mod 10". See [[w:Plural]]
3166 * For English it is pretty simple.
3168 * Invoked by putting {{plural:count|wordform1|wordform2}}
3169 * or {{plural:count|wordform1|wordform2|wordform3}}
3171 * Example: {{plural:{{NUMBEROFARTICLES}}|article|articles}}
3173 * @param $count Integer: non-localized number
3174 * @param $forms Array: different plural forms
3175 * @return string Correct form of plural for $count in this language
3177 function convertPlural( $count, $forms ) {
3178 if ( !count( $forms ) ) {
3179 return '';
3181 $forms = $this->preConvertPlural( $forms, 2 );
3183 return ( $count == 1 ) ? $forms[0] : $forms[1];
3187 * Checks that convertPlural was given an array and pads it to requested
3188 * amount of forms by copying the last one.
3190 * @param $count Integer: How many forms should there be at least
3191 * @param $forms Array of forms given to convertPlural
3192 * @return array Padded array of forms or an exception if not an array
3194 protected function preConvertPlural( /* Array */ $forms, $count ) {
3195 while ( count( $forms ) < $count ) {
3196 $forms[] = $forms[count( $forms ) - 1];
3198 return $forms;
3202 * @todo Maybe translate block durations. Note that this function is somewhat misnamed: it
3203 * deals with translating the *duration* ("1 week", "4 days", etc), not the expiry time
3204 * (which is an absolute timestamp). Please note: do NOT add this blindly, as it is used
3205 * on old expiry lengths recorded in log entries. You'd need to provide the start date to
3206 * match up with it.
3208 * @param $str String: the validated block duration in English
3209 * @return Somehow translated block duration
3210 * @see LanguageFi.php for example implementation
3212 function translateBlockExpiry( $str ) {
3213 $duration = SpecialBlock::getSuggestedDurations( $this );
3214 foreach ( $duration as $show => $value ) {
3215 if ( strcmp( $str, $value ) == 0 ) {
3216 return htmlspecialchars( trim( $show ) );
3220 // Since usually only infinite or indefinite is only on list, so try
3221 // equivalents if still here.
3222 $indefs = array( 'infinite', 'infinity', 'indefinite' );
3223 if ( in_array( $str, $indefs ) ) {
3224 foreach ( $indefs as $val ) {
3225 $show = array_search( $val, $duration, true );
3226 if ( $show !== false ) {
3227 return htmlspecialchars( trim( $show ) );
3231 // If all else fails, return the original string.
3232 return $str;
3236 * languages like Chinese need to be segmented in order for the diff
3237 * to be of any use
3239 * @param $text String
3240 * @return String
3242 function segmentForDiff( $text ) {
3243 return $text;
3247 * and unsegment to show the result
3249 * @param $text String
3250 * @return String
3252 function unsegmentForDiff( $text ) {
3253 return $text;
3257 * convert text to all supported variants
3259 * @param $text string
3260 * @return array
3262 function autoConvertToAllVariants( $text ) {
3263 return $this->mConverter->autoConvertToAllVariants( $text );
3267 * convert text to different variants of a language.
3269 * @param $text string
3270 * @return string
3272 function convert( $text ) {
3273 return $this->mConverter->convert( $text );
3278 * Convert a Title object to a string in the preferred variant
3280 * @param $title Title
3281 * @return string
3283 function convertTitle( $title ) {
3284 return $this->mConverter->convertTitle( $title );
3288 * Check if this is a language with variants
3290 * @return bool
3292 function hasVariants() {
3293 return sizeof( $this->getVariants() ) > 1;
3297 * Put custom tags (e.g. -{ }-) around math to prevent conversion
3299 * @param $text string
3300 * @return string
3302 function armourMath( $text ) {
3303 return $this->mConverter->armourMath( $text );
3307 * Perform output conversion on a string, and encode for safe HTML output.
3308 * @param $text String text to be converted
3309 * @param $isTitle Bool whether this conversion is for the article title
3310 * @return string
3311 * @todo this should get integrated somewhere sane
3313 function convertHtml( $text, $isTitle = false ) {
3314 return htmlspecialchars( $this->convert( $text, $isTitle ) );
3318 * @param $key string
3319 * @return string
3321 function convertCategoryKey( $key ) {
3322 return $this->mConverter->convertCategoryKey( $key );
3326 * Get the list of variants supported by this language
3327 * see sample implementation in LanguageZh.php
3329 * @return array an array of language codes
3331 function getVariants() {
3332 return $this->mConverter->getVariants();
3336 * @return string
3338 function getPreferredVariant() {
3339 return $this->mConverter->getPreferredVariant();
3343 * @return string
3345 function getDefaultVariant() {
3346 return $this->mConverter->getDefaultVariant();
3350 * @return string
3352 function getURLVariant() {
3353 return $this->mConverter->getURLVariant();
3357 * If a language supports multiple variants, it is
3358 * possible that non-existing link in one variant
3359 * actually exists in another variant. this function
3360 * tries to find it. See e.g. LanguageZh.php
3362 * @param $link String: the name of the link
3363 * @param $nt Mixed: the title object of the link
3364 * @param $ignoreOtherCond Boolean: to disable other conditions when
3365 * we need to transclude a template or update a category's link
3366 * @return null the input parameters may be modified upon return
3368 function findVariantLink( &$link, &$nt, $ignoreOtherCond = false ) {
3369 $this->mConverter->findVariantLink( $link, $nt, $ignoreOtherCond );
3373 * If a language supports multiple variants, converts text
3374 * into an array of all possible variants of the text:
3375 * 'variant' => text in that variant
3377 * @deprecated since 1.17 Use autoConvertToAllVariants()
3379 * @param $text string
3381 * @return string
3383 function convertLinkToAllVariants( $text ) {
3384 return $this->mConverter->convertLinkToAllVariants( $text );
3388 * returns language specific options used by User::getPageRenderHash()
3389 * for example, the preferred language variant
3391 * @return string
3393 function getExtraHashOptions() {
3394 return $this->mConverter->getExtraHashOptions();
3398 * For languages that support multiple variants, the title of an
3399 * article may be displayed differently in different variants. this
3400 * function returns the apporiate title defined in the body of the article.
3402 * @return string
3404 function getParsedTitle() {
3405 return $this->mConverter->getParsedTitle();
3409 * Enclose a string with the "no conversion" tag. This is used by
3410 * various functions in the Parser
3412 * @param $text String: text to be tagged for no conversion
3413 * @param $noParse bool
3414 * @return string the tagged text
3416 function markNoConversion( $text, $noParse = false ) {
3417 return $this->mConverter->markNoConversion( $text, $noParse );
3421 * A regular expression to match legal word-trailing characters
3422 * which should be merged onto a link of the form [[foo]]bar.
3424 * @return string
3426 function linkTrail() {
3427 return self::$dataCache->getItem( $this->mCode, 'linkTrail' );
3431 * @return Language
3433 function getLangObj() {
3434 return $this;
3438 * Get the RFC 3066 code for this language object
3440 * @return string
3442 function getCode() {
3443 return $this->mCode;
3447 * @param $code string
3449 function setCode( $code ) {
3450 $this->mCode = $code;
3454 * Get the name of a file for a certain language code
3455 * @param $prefix string Prepend this to the filename
3456 * @param $code string Language code
3457 * @param $suffix string Append this to the filename
3458 * @return string $prefix . $mangledCode . $suffix
3460 static function getFileName( $prefix = 'Language', $code, $suffix = '.php' ) {
3461 // Protect against path traversal
3462 if ( !Language::isValidCode( $code )
3463 || strcspn( $code, ":/\\\000" ) !== strlen( $code ) )
3465 throw new MWException( "Invalid language code \"$code\"" );
3468 return $prefix . str_replace( '-', '_', ucfirst( $code ) ) . $suffix;
3472 * Get the language code from a file name. Inverse of getFileName()
3473 * @param $filename string $prefix . $languageCode . $suffix
3474 * @param $prefix string Prefix before the language code
3475 * @param $suffix string Suffix after the language code
3476 * @return string Language code, or false if $prefix or $suffix isn't found
3478 static function getCodeFromFileName( $filename, $prefix = 'Language', $suffix = '.php' ) {
3479 $m = null;
3480 preg_match( '/' . preg_quote( $prefix, '/' ) . '([A-Z][a-z_]+)' .
3481 preg_quote( $suffix, '/' ) . '/', $filename, $m );
3482 if ( !count( $m ) ) {
3483 return false;
3485 return str_replace( '_', '-', strtolower( $m[1] ) );
3489 * @param $code string
3490 * @return string
3492 static function getMessagesFileName( $code ) {
3493 global $IP;
3494 return self::getFileName( "$IP/languages/messages/Messages", $code, '.php' );
3498 * @param $code string
3499 * @return string
3501 static function getClassFileName( $code ) {
3502 global $IP;
3503 return self::getFileName( "$IP/languages/classes/Language", $code, '.php' );
3507 * Get the first fallback for a given language.
3509 * @param $code string
3511 * @return false|string
3513 static function getFallbackFor( $code ) {
3514 if ( $code === 'en' || !Language::isValidBuiltInCode( $code ) ) {
3515 return false;
3516 } else {
3517 $fallbacks = self::getFallbacksFor( $code );
3518 $first = array_shift( $fallbacks );
3519 return $first;
3524 * Get the ordered list of fallback languages.
3526 * @since 1.19
3527 * @param $code string Language code
3528 * @return array
3530 static function getFallbacksFor( $code ) {
3531 if ( $code === 'en' || !Language::isValidBuiltInCode( $code ) ) {
3532 return array();
3533 } else {
3534 $v = self::getLocalisationCache()->getItem( $code, 'fallback' );
3535 $v = array_map( 'trim', explode( ',', $v ) );
3536 if ( $v[count( $v ) - 1] !== 'en' ) {
3537 $v[] = 'en';
3539 return $v;
3544 * Get all messages for a given language
3545 * WARNING: this may take a long time. If you just need all message *keys*
3546 * but need the *contents* of only a few messages, consider using getMessageKeysFor().
3548 * @param $code string
3550 * @return array
3552 static function getMessagesFor( $code ) {
3553 return self::getLocalisationCache()->getItem( $code, 'messages' );
3557 * Get a message for a given language
3559 * @param $key string
3560 * @param $code string
3562 * @return string
3564 static function getMessageFor( $key, $code ) {
3565 return self::getLocalisationCache()->getSubitem( $code, 'messages', $key );
3569 * Get all message keys for a given language. This is a faster alternative to
3570 * array_keys( Language::getMessagesFor( $code ) )
3572 * @since 1.19
3573 * @param $code string Language code
3574 * @return array of message keys (strings)
3576 static function getMessageKeysFor( $code ) {
3577 return self::getLocalisationCache()->getSubItemList( $code, 'messages' );
3581 * @param $talk
3582 * @return mixed
3584 function fixVariableInNamespace( $talk ) {
3585 if ( strpos( $talk, '$1' ) === false ) {
3586 return $talk;
3589 global $wgMetaNamespace;
3590 $talk = str_replace( '$1', $wgMetaNamespace, $talk );
3592 # Allow grammar transformations
3593 # Allowing full message-style parsing would make simple requests
3594 # such as action=raw much more expensive than they need to be.
3595 # This will hopefully cover most cases.
3596 $talk = preg_replace_callback( '/{{grammar:(.*?)\|(.*?)}}/i',
3597 array( &$this, 'replaceGrammarInNamespace' ), $talk );
3598 return str_replace( ' ', '_', $talk );
3602 * @param $m string
3603 * @return string
3605 function replaceGrammarInNamespace( $m ) {
3606 return $this->convertGrammar( trim( $m[2] ), trim( $m[1] ) );
3610 * @throws MWException
3611 * @return array
3613 static function getCaseMaps() {
3614 static $wikiUpperChars, $wikiLowerChars;
3615 if ( isset( $wikiUpperChars ) ) {
3616 return array( $wikiUpperChars, $wikiLowerChars );
3619 wfProfileIn( __METHOD__ );
3620 $arr = wfGetPrecompiledData( 'Utf8Case.ser' );
3621 if ( $arr === false ) {
3622 throw new MWException(
3623 "Utf8Case.ser is missing, please run \"make\" in the serialized directory\n" );
3625 $wikiUpperChars = $arr['wikiUpperChars'];
3626 $wikiLowerChars = $arr['wikiLowerChars'];
3627 wfProfileOut( __METHOD__ );
3628 return array( $wikiUpperChars, $wikiLowerChars );
3632 * Decode an expiry (block, protection, etc) which has come from the DB
3634 * @param $expiry String: Database expiry String
3635 * @param $format Bool|Int true to process using language functions, or TS_ constant
3636 * to return the expiry in a given timestamp
3637 * @return String
3639 public function formatExpiry( $expiry, $format = true ) {
3640 static $infinity, $infinityMsg;
3641 if ( $infinity === null ) {
3642 $infinityMsg = wfMessage( 'infiniteblock' );
3643 $infinity = wfGetDB( DB_SLAVE )->getInfinity();
3646 if ( $expiry == '' || $expiry == $infinity ) {
3647 return $format === true
3648 ? $infinityMsg
3649 : $infinity;
3650 } else {
3651 return $format === true
3652 ? $this->timeanddate( $expiry, /* User preference timezone */ true )
3653 : wfTimestamp( $format, $expiry );
3658 * @todo Document
3659 * @param $seconds int|float
3660 * @param $format Array Optional
3661 * If $format['avoid'] == 'avoidseconds' - don't mention seconds if $seconds >= 1 hour
3662 * If $format['avoid'] == 'avoidminutes' - don't mention seconds/minutes if $seconds > 48 hours
3663 * If $format['noabbrevs'] is true - use 'seconds' and friends instead of 'seconds-abbrev' and friends
3664 * For backwards compatibility, $format may also be one of the strings 'avoidseconds' or 'avoidminutes'
3665 * @return string
3667 function formatTimePeriod( $seconds, $format = array() ) {
3668 if ( !is_array( $format ) ) {
3669 $format = array( 'avoid' => $format ); // For backwards compatibility
3671 if ( !isset( $format['avoid'] ) ) {
3672 $format['avoid'] = false;
3674 if ( !isset( $format['noabbrevs' ] ) ) {
3675 $format['noabbrevs'] = false;
3677 $secondsMsg = wfMessage(
3678 $format['noabbrevs'] ? 'seconds' : 'seconds-abbrev' )->inLanguage( $this );
3679 $minutesMsg = wfMessage(
3680 $format['noabbrevs'] ? 'minutes' : 'minutes-abbrev' )->inLanguage( $this );
3681 $hoursMsg = wfMessage(
3682 $format['noabbrevs'] ? 'hours' : 'hours-abbrev' )->inLanguage( $this );
3683 $daysMsg = wfMessage(
3684 $format['noabbrevs'] ? 'days' : 'days-abbrev' )->inLanguage( $this );
3686 if ( round( $seconds * 10 ) < 100 ) {
3687 $s = $this->formatNum( sprintf( "%.1f", round( $seconds * 10 ) / 10 ) );
3688 $s = $secondsMsg->params( $s )->text();
3689 } elseif ( round( $seconds ) < 60 ) {
3690 $s = $this->formatNum( round( $seconds ) );
3691 $s = $secondsMsg->params( $s )->text();
3692 } elseif ( round( $seconds ) < 3600 ) {
3693 $minutes = floor( $seconds / 60 );
3694 $secondsPart = round( fmod( $seconds, 60 ) );
3695 if ( $secondsPart == 60 ) {
3696 $secondsPart = 0;
3697 $minutes++;
3699 $s = $minutesMsg->params( $this->formatNum( $minutes ) )->text();
3700 $s .= ' ';
3701 $s .= $secondsMsg->params( $this->formatNum( $secondsPart ) )->text();
3702 } elseif ( round( $seconds ) <= 2 * 86400 ) {
3703 $hours = floor( $seconds / 3600 );
3704 $minutes = floor( ( $seconds - $hours * 3600 ) / 60 );
3705 $secondsPart = round( $seconds - $hours * 3600 - $minutes * 60 );
3706 if ( $secondsPart == 60 ) {
3707 $secondsPart = 0;
3708 $minutes++;
3710 if ( $minutes == 60 ) {
3711 $minutes = 0;
3712 $hours++;
3714 $s = $hoursMsg->params( $this->formatNum( $hours ) )->text();
3715 $s .= ' ';
3716 $s .= $minutesMsg->params( $this->formatNum( $minutes ) )->text();
3717 if ( !in_array( $format['avoid'], array( 'avoidseconds', 'avoidminutes' ) ) ) {
3718 $s .= ' ' . $secondsMsg->params( $this->formatNum( $secondsPart ) )->text();
3720 } else {
3721 $days = floor( $seconds / 86400 );
3722 if ( $format['avoid'] === 'avoidminutes' ) {
3723 $hours = round( ( $seconds - $days * 86400 ) / 3600 );
3724 if ( $hours == 24 ) {
3725 $hours = 0;
3726 $days++;
3728 $s = $daysMsg->params( $this->formatNum( $days ) )->text();
3729 $s .= ' ';
3730 $s .= $hoursMsg->params( $this->formatNum( $hours ) )->text();
3731 } elseif ( $format['avoid'] === 'avoidseconds' ) {
3732 $hours = floor( ( $seconds - $days * 86400 ) / 3600 );
3733 $minutes = round( ( $seconds - $days * 86400 - $hours * 3600 ) / 60 );
3734 if ( $minutes == 60 ) {
3735 $minutes = 0;
3736 $hours++;
3738 if ( $hours == 24 ) {
3739 $hours = 0;
3740 $days++;
3742 $s = $daysMsg->params( $this->formatNum( $days ) )->text();
3743 $s .= ' ';
3744 $s .= $hoursMsg->params( $this->formatNum( $hours ) )->text();
3745 $s .= ' ';
3746 $s .= $minutesMsg->params( $this->formatNum( $minutes ) )->text();
3747 } else {
3748 $s = $daysMsg->params( $this->formatNum( $days ) )->text();
3749 $s .= ' ';
3750 $s .= $this->formatTimePeriod( $seconds - $days * 86400, $format );
3753 return $s;
3757 * @param $bps int
3758 * @return string
3760 function formatBitrate( $bps ) {
3761 $units = array( 'bps', 'kbps', 'Mbps', 'Gbps' );
3762 if ( $bps <= 0 ) {
3763 return $this->formatNum( $bps ) . $units[0];
3765 $unitIndex = (int)floor( log10( $bps ) / 3 );
3766 $mantissa = $bps / pow( 1000, $unitIndex );
3767 if ( $mantissa < 10 ) {
3768 $mantissa = round( $mantissa, 1 );
3769 } else {
3770 $mantissa = round( $mantissa );
3772 return $this->formatNum( $mantissa ) . $units[$unitIndex];
3776 * Format a size in bytes for output, using an appropriate
3777 * unit (B, KB, MB or GB) according to the magnitude in question
3779 * @param $size int Size to format
3780 * @return string Plain text (not HTML)
3782 function formatSize( $size ) {
3783 // For small sizes no decimal places necessary
3784 $round = 0;
3785 if ( $size > 1024 ) {
3786 $size = $size / 1024;
3787 if ( $size > 1024 ) {
3788 $size = $size / 1024;
3789 // For MB and bigger two decimal places are smarter
3790 $round = 2;
3791 if ( $size > 1024 ) {
3792 $size = $size / 1024;
3793 $msg = 'size-gigabytes';
3794 } else {
3795 $msg = 'size-megabytes';
3797 } else {
3798 $msg = 'size-kilobytes';
3800 } else {
3801 $msg = 'size-bytes';
3803 $size = round( $size, $round );
3804 $text = $this->getMessageFromDB( $msg );
3805 return str_replace( '$1', $this->formatNum( $size ), $text );
3809 * Make a list item, used by various special pages
3811 * @param $page String Page link
3812 * @param $details String Text between brackets
3813 * @param $oppositedm Boolean Add the direction mark opposite to your
3814 * language, to display text properly
3815 * @return String
3817 function specialList( $page, $details, $oppositedm = true ) {
3818 $dirmark = ( $oppositedm ? $this->getDirMark( true ) : '' ) .
3819 $this->getDirMark();
3820 $details = $details ? $dirmark . $this->getMessageFromDB( 'word-separator' ) .
3821 wfMsgExt( 'parentheses', array( 'escape', 'replaceafter', 'language' => $this ), $details ) : '';
3822 return $page . $details;
3826 * Generate (prev x| next x) (20|50|100...) type links for paging
3828 * @param $title Title object to link
3829 * @param $offset Integer offset parameter
3830 * @param $limit Integer limit parameter
3831 * @param $query String optional URL query parameter string
3832 * @param $atend Bool optional param for specified if this is the last page
3833 * @return String
3835 public function viewPrevNext( Title $title, $offset, $limit, array $query = array(), $atend = false ) {
3836 // @todo FIXME: Why on earth this needs one message for the text and another one for tooltip?
3838 # Make 'previous' link
3839 $prev = wfMessage( 'prevn' )->inLanguage( $this )->title( $title )->numParams( $limit )->text();
3840 if( $offset > 0 ) {
3841 $plink = $this->numLink( $title, max( $offset - $limit, 0 ), $limit,
3842 $query, $prev, 'prevn-title', 'mw-prevlink' );
3843 } else {
3844 $plink = htmlspecialchars( $prev );
3847 # Make 'next' link
3848 $next = wfMessage( 'nextn' )->inLanguage( $this )->title( $title )->numParams( $limit )->text();
3849 if( $atend ) {
3850 $nlink = htmlspecialchars( $next );
3851 } else {
3852 $nlink = $this->numLink( $title, $offset + $limit, $limit,
3853 $query, $next, 'prevn-title', 'mw-nextlink' );
3856 # Make links to set number of items per page
3857 $numLinks = array();
3858 foreach( array( 20, 50, 100, 250, 500 ) as $num ) {
3859 $numLinks[] = $this->numLink( $title, $offset, $num,
3860 $query, $this->formatNum( $num ), 'shown-title', 'mw-numlink' );
3863 return wfMessage( 'viewprevnext' )->inLanguage( $this )->title( $title
3864 )->rawParams( $plink, $nlink, $this->pipeList( $numLinks ) )->escaped();
3868 * Helper function for viewPrevNext() that generates links
3870 * @param $title Title object to link
3871 * @param $offset Integer offset parameter
3872 * @param $limit Integer limit parameter
3873 * @param $query Array extra query parameters
3874 * @param $link String text to use for the link; will be escaped
3875 * @param $tooltipMsg String name of the message to use as tooltip
3876 * @param $class String value of the "class" attribute of the link
3877 * @return String HTML fragment
3879 private function numLink( Title $title, $offset, $limit, array $query, $link, $tooltipMsg, $class ) {
3880 $query = array( 'limit' => $limit, 'offset' => $offset ) + $query;
3881 $tooltip = wfMessage( $tooltipMsg )->inLanguage( $this )->title( $title )->numParams( $limit )->text();
3882 return Html::element( 'a', array( 'href' => $title->getLocalURL( $query ),
3883 'title' => $tooltip, 'class' => $class ), $link );
3887 * Get the conversion rule title, if any.
3889 * @return string
3891 function getConvRuleTitle() {
3892 return $this->mConverter->getConvRuleTitle();