MediaWiki REL1_28
ParserOptions.php
Go to the documentation of this file.
1<?php
23use Wikimedia\ScopedCallback;
24
34
39
44
49
54
58 private $mDateFormat = null;
59
63 private $mEditSection = true;
64
69
73 private $mTidy = false;
74
78 private $mInterfaceMessage = false;
79
83 private $mTargetLanguage = null;
84
89
94
99
104
109
114
118 private $mRemoveComments = true;
119
124 [ 'Parser', 'statelessFetchRevision' ];
125
130 [ 'Parser', 'statelessFetchTemplate' ];
131
136
140 private $mEnableLimitReport = false;
141
145 private $mTimestamp;
146
151
157
161 private $mPreSaveTransform = true;
162
167
172
177
181 private $mThumbSize;
182
187
191 private $mUserLang;
192
197 private $mUser;
198
202 private $mIsPreview = false;
203
207 private $mIsSectionPreview = false;
208
212 private $mIsPrintable = false;
213
217 private $mExtraKey = '';
218
222 private $mMagicISBNLinks = true;
223
227 private $mMagicPMIDLinks = true;
228
232 private $mMagicRFCLinks = true;
233
237 private $onAccessCallback = null;
238
244 private $redirectTarget = null;
245
259 private $allowUnsafeRawHtml = true;
260
261 public function getInterwikiMagic() {
263 }
264
265 public function getAllowExternalImages() {
267 }
268
269 public function getAllowExternalImagesFrom() {
271 }
272
273 public function getEnableImageWhitelist() {
275 }
276
277 public function getEditSection() {
278 return $this->mEditSection;
279 }
280
281 public function getNumberHeadings() {
282 $this->optionUsed( 'numberheadings' );
283
285 }
286
287 public function getAllowSpecialInclusion() {
289 }
290
291 public function getTidy() {
292 return $this->mTidy;
293 }
294
295 public function getInterfaceMessage() {
297 }
298
299 public function getTargetLanguage() {
301 }
302
303 public function getMaxIncludeSize() {
305 }
306
307 public function getMaxPPNodeCount() {
309 }
310
311 public function getMaxGeneratedPPNodeCount() {
313 }
314
315 public function getMaxPPExpandDepth() {
317 }
318
319 public function getMaxTemplateDepth() {
321 }
322
323 /* @since 1.20 */
327
328 public function getRemoveComments() {
330 }
331
332 /* @since 1.24 */
333 public function getCurrentRevisionCallback() {
335 }
336
337 public function getTemplateCallback() {
339 }
340
345
346 public function getEnableLimitReport() {
348 }
349
350 public function getCleanSignatures() {
352 }
353
354 public function getExternalLinkTarget() {
356 }
357
361
362 public function getDisableTitleConversion() {
364 }
365
366 public function getThumbSize() {
367 $this->optionUsed( 'thumbsize' );
368
369 return $this->mThumbSize;
370 }
371
372 public function getStubThreshold() {
373 $this->optionUsed( 'stubthreshold' );
374
376 }
377
378 public function getIsPreview() {
379 return $this->mIsPreview;
380 }
381
382 public function getIsSectionPreview() {
384 }
385
386 public function getIsPrintable() {
387 $this->optionUsed( 'printable' );
388
389 return $this->mIsPrintable;
390 }
391
392 public function getUser() {
393 return $this->mUser;
394 }
395
396 public function getPreSaveTransform() {
398 }
399
400 public function getDateFormat() {
401 $this->optionUsed( 'dateformat' );
402 if ( !isset( $this->mDateFormat ) ) {
403 $this->mDateFormat = $this->mUser->getDatePreference();
404 }
405 return $this->mDateFormat;
406 }
407
408 public function getTimestamp() {
409 if ( !isset( $this->mTimestamp ) ) {
410 $this->mTimestamp = wfTimestampNow();
411 }
412 return $this->mTimestamp;
413 }
414
432 public function getUserLangObj() {
433 $this->optionUsed( 'userlang' );
434 return $this->mUserLang;
435 }
436
449 public function getUserLang() {
450 return $this->getUserLangObj()->getCode();
451 }
452
457 public function getMagicISBNLinks() {
459 }
460
465 public function getMagicPMIDLinks() {
467 }
472 public function getMagicRFCLinks() {
474 }
475
480 public function getAllowUnsafeRawHtml() {
482 }
483
484 public function setInterwikiMagic( $x ) {
485 return wfSetVar( $this->mInterwikiMagic, $x );
486 }
487
488 public function setAllowExternalImages( $x ) {
489 return wfSetVar( $this->mAllowExternalImages, $x );
490 }
491
492 public function setAllowExternalImagesFrom( $x ) {
493 return wfSetVar( $this->mAllowExternalImagesFrom, $x );
494 }
495
496 public function setEnableImageWhitelist( $x ) {
497 return wfSetVar( $this->mEnableImageWhitelist, $x );
498 }
499
500 public function setDateFormat( $x ) {
501 return wfSetVar( $this->mDateFormat, $x );
502 }
503
504 public function setEditSection( $x ) {
505 return wfSetVar( $this->mEditSection, $x );
506 }
507
508 public function setNumberHeadings( $x ) {
509 return wfSetVar( $this->mNumberHeadings, $x );
510 }
511
512 public function setAllowSpecialInclusion( $x ) {
513 return wfSetVar( $this->mAllowSpecialInclusion, $x );
514 }
515
516 public function setTidy( $x ) {
517 return wfSetVar( $this->mTidy, $x );
518 }
519
520 public function setInterfaceMessage( $x ) {
521 return wfSetVar( $this->mInterfaceMessage, $x );
522 }
523
524 public function setTargetLanguage( $x ) {
525 return wfSetVar( $this->mTargetLanguage, $x, true );
526 }
527
528 public function setMaxIncludeSize( $x ) {
529 return wfSetVar( $this->mMaxIncludeSize, $x );
530 }
531
532 public function setMaxPPNodeCount( $x ) {
533 return wfSetVar( $this->mMaxPPNodeCount, $x );
534 }
535
536 public function setMaxGeneratedPPNodeCount( $x ) {
537 return wfSetVar( $this->mMaxGeneratedPPNodeCount, $x );
538 }
539
540 public function setMaxTemplateDepth( $x ) {
541 return wfSetVar( $this->mMaxTemplateDepth, $x );
542 }
543
544 /* @since 1.20 */
545 public function setExpensiveParserFunctionLimit( $x ) {
546 return wfSetVar( $this->mExpensiveParserFunctionLimit, $x );
547 }
548
549 public function setRemoveComments( $x ) {
550 return wfSetVar( $this->mRemoveComments, $x );
551 }
552
553 /* @since 1.24 */
554 public function setCurrentRevisionCallback( $x ) {
555 return wfSetVar( $this->mCurrentRevisionCallback, $x );
556 }
557
559 public function setSpeculativeRevIdCallback( $x ) {
560 return wfSetVar( $this->mSpeculativeRevIdCallback, $x );
561 }
562
563 public function setTemplateCallback( $x ) {
564 return wfSetVar( $this->mTemplateCallback, $x );
565 }
566
567 public function enableLimitReport( $x = true ) {
568 return wfSetVar( $this->mEnableLimitReport, $x );
569 }
570
571 public function setTimestamp( $x ) {
572 return wfSetVar( $this->mTimestamp, $x );
573 }
574
575 public function setCleanSignatures( $x ) {
576 return wfSetVar( $this->mCleanSignatures, $x );
577 }
578
579 public function setExternalLinkTarget( $x ) {
580 return wfSetVar( $this->mExternalLinkTarget, $x );
581 }
582
583 public function disableContentConversion( $x = true ) {
584 return wfSetVar( $this->mDisableContentConversion, $x );
585 }
586
587 public function disableTitleConversion( $x = true ) {
588 return wfSetVar( $this->mDisableTitleConversion, $x );
589 }
590
591 public function setUserLang( $x ) {
592 if ( is_string( $x ) ) {
593 $x = Language::factory( $x );
594 }
595
596 return wfSetVar( $this->mUserLang, $x );
597 }
598
599 public function setThumbSize( $x ) {
600 return wfSetVar( $this->mThumbSize, $x );
601 }
602
603 public function setStubThreshold( $x ) {
604 return wfSetVar( $this->mStubThreshold, $x );
605 }
606
607 public function setPreSaveTransform( $x ) {
608 return wfSetVar( $this->mPreSaveTransform, $x );
609 }
610
611 public function setIsPreview( $x ) {
612 return wfSetVar( $this->mIsPreview, $x );
613 }
614
615 public function setIsSectionPreview( $x ) {
616 return wfSetVar( $this->mIsSectionPreview, $x );
617 }
618
619 public function setIsPrintable( $x ) {
620 return wfSetVar( $this->mIsPrintable, $x );
621 }
622
628 public function setAllowUnsafeRawHtml( $x ) {
629 return wfSetVar( $this->allowUnsafeRawHtml, $x );
630 }
631
642 function setRedirectTarget( $title ) {
643 $this->redirectTarget = $title;
644 }
645
652 function getRedirectTarget() {
654 }
655
660 public function addExtraKey( $key ) {
661 $this->mExtraKey .= '!' . $key;
662 }
663
669 public function __construct( $user = null, $lang = null ) {
670 if ( $user === null ) {
672 if ( $wgUser === null ) {
673 $user = new User;
674 } else {
675 $user = $wgUser;
676 }
677 }
678 if ( $lang === null ) {
681 $wgLang->_unstub();
682 }
683 $lang = $wgLang;
684 }
685 $this->initialiseFromUser( $user, $lang );
686 }
687
693 public static function newFromAnon() {
695 return new ParserOptions( new User, $wgContLang );
696 }
697
705 public static function newFromUser( $user ) {
706 return new ParserOptions( $user );
707 }
708
716 public static function newFromUserAndLang( User $user, Language $lang ) {
717 return new ParserOptions( $user, $lang );
718 }
719
726 public static function newFromContext( IContextSource $context ) {
727 return new ParserOptions( $context->getUser(), $context->getLanguage() );
728 }
729
736 private function initialiseFromUser( $user, $lang ) {
743
744 // *UPDATE* ParserOptions::matches() if any of this changes as needed
745 $this->mInterwikiMagic = $wgInterwikiMagic;
746 $this->mAllowExternalImages = $wgAllowExternalImages;
747 $this->mAllowExternalImagesFrom = $wgAllowExternalImagesFrom;
748 $this->mEnableImageWhitelist = $wgEnableImageWhitelist;
749 $this->mAllowSpecialInclusion = $wgAllowSpecialInclusion;
750 $this->mMaxIncludeSize = $wgMaxArticleSize * 1024;
751 $this->mMaxPPNodeCount = $wgMaxPPNodeCount;
752 $this->mMaxGeneratedPPNodeCount = $wgMaxGeneratedPPNodeCount;
753 $this->mMaxPPExpandDepth = $wgMaxPPExpandDepth;
754 $this->mMaxTemplateDepth = $wgMaxTemplateDepth;
755 $this->mExpensiveParserFunctionLimit = $wgExpensiveParserFunctionLimit;
756 $this->mCleanSignatures = $wgCleanSignatures;
757 $this->mExternalLinkTarget = $wgExternalLinkTarget;
758 $this->mDisableContentConversion = $wgDisableLangConversion;
759 $this->mDisableTitleConversion = $wgDisableLangConversion || $wgDisableTitleConversion;
760 $this->mMagicISBNLinks = $wgEnableMagicLinks['ISBN'];
761 $this->mMagicPMIDLinks = $wgEnableMagicLinks['PMID'];
762 $this->mMagicRFCLinks = $wgEnableMagicLinks['RFC'];
763
764 $this->mUser = $user;
765 $this->mNumberHeadings = $user->getOption( 'numberheadings' );
766 $this->mThumbSize = $user->getOption( 'thumbsize' );
767 $this->mStubThreshold = $user->getStubThreshold();
768 $this->mUserLang = $lang;
769
770 }
771
781 public function matches( ParserOptions $other ) {
782 $fields = array_keys( get_class_vars( __CLASS__ ) );
783 $fields = array_diff( $fields, [
784 'mEnableLimitReport', // only effects HTML comments
785 'onAccessCallback', // only used for ParserOutput option tracking
786 ] );
787 foreach ( $fields as $field ) {
788 if ( !is_object( $this->$field ) && $this->$field !== $other->$field ) {
789 return false;
790 }
791 }
792 // Check the object and lazy-loaded options
793 return (
794 $this->mUserLang->equals( $other->mUserLang ) &&
795 $this->getDateFormat() === $other->getDateFormat()
796 );
797 }
798
804 public function registerWatcher( $callback ) {
805 $this->onAccessCallback = $callback;
806 }
807
816 public function optionUsed( $optionName ) {
817 if ( $this->onAccessCallback ) {
818 call_user_func( $this->onAccessCallback, $optionName );
819 }
820 }
821
828 public static function legacyOptions() {
829 return [
830 'stubthreshold',
831 'numberheadings',
832 'userlang',
833 'thumbsize',
834 'editsection',
835 'printable'
836 ];
837 }
838
855 public function optionsHash( $forOptions, $title = null ) {
857
858 // FIXME: Once the cache key is reorganized this argument
859 // can be dropped. It was used when the math extension was
860 // part of core.
861 $confstr = '*';
862
863 // Space assigned for the stubthreshold but unused
864 // since it disables the parser cache, its value will always
865 // be 0 when this function is called by parsercache.
866 if ( in_array( 'stubthreshold', $forOptions ) ) {
867 $confstr .= '!' . $this->mStubThreshold;
868 } else {
869 $confstr .= '!*';
870 }
871
872 if ( in_array( 'dateformat', $forOptions ) ) {
873 $confstr .= '!' . $this->getDateFormat();
874 }
875
876 if ( in_array( 'numberheadings', $forOptions ) ) {
877 $confstr .= '!' . ( $this->mNumberHeadings ? '1' : '' );
878 } else {
879 $confstr .= '!*';
880 }
881
882 if ( in_array( 'userlang', $forOptions ) ) {
883 $confstr .= '!' . $this->mUserLang->getCode();
884 } else {
885 $confstr .= '!*';
886 }
887
888 if ( in_array( 'thumbsize', $forOptions ) ) {
889 $confstr .= '!' . $this->mThumbSize;
890 } else {
891 $confstr .= '!*';
892 }
893
894 // add in language specific options, if any
895 // @todo FIXME: This is just a way of retrieving the url/user preferred variant
896 if ( !is_null( $title ) ) {
897 $confstr .= $title->getPageLanguage()->getExtraHashOptions();
898 } else {
900 $confstr .= $wgContLang->getExtraHashOptions();
901 }
902
903 $confstr .= $wgRenderHashAppend;
904
905 // @note: as of Feb 2015, core never sets the editsection flag, since it uses
906 // <mw:editsection> tags to inject editsections on the fly. However, extensions
907 // may be using it by calling ParserOption::optionUsed resp. ParserOutput::registerOption
908 // directly. At least Wikibase does at this point in time.
909 if ( !in_array( 'editsection', $forOptions ) ) {
910 $confstr .= '!*';
911 } elseif ( !$this->mEditSection ) {
912 $confstr .= '!edit=0';
913 }
914
915 if ( $this->mIsPrintable && in_array( 'printable', $forOptions ) ) {
916 $confstr .= '!printable=1';
917 }
918
919 if ( $this->mExtraKey != '' ) {
920 $confstr .= $this->mExtraKey;
921 }
922
923 // Give a chance for extensions to modify the hash, if they have
924 // extra options or other effects on the parser cache.
925 Hooks::run( 'PageRenderingHash', [ &$confstr, $this->getUser(), &$forOptions ] );
926
927 // Make it a valid memcached key fragment
928 $confstr = str_replace( ' ', '_', $confstr );
929
930 return $confstr;
931 }
932
943 public function setupFakeRevision( $title, $content, $user ) {
944 $oldCallback = $this->setCurrentRevisionCallback(
945 function (
946 $titleToCheck, $parser = false ) use ( $title, $content, $user, &$oldCallback
947 ) {
948 if ( $titleToCheck->equals( $title ) ) {
949 return new Revision( [
950 'page' => $title->getArticleID(),
951 'user_text' => $user->getName(),
952 'user' => $user->getId(),
953 'parent_id' => $title->getLatestRevID(),
954 'title' => $title,
955 'content' => $content
956 ] );
957 } else {
958 return call_user_func( $oldCallback, $titleToCheck, $parser );
959 }
960 }
961 );
962
964 $wgHooks['TitleExists'][] =
965 function ( $titleToCheck, &$exists ) use ( $title ) {
966 if ( $titleToCheck->equals( $title ) ) {
967 $exists = true;
968 }
969 };
970 end( $wgHooks['TitleExists'] );
971 $key = key( $wgHooks['TitleExists'] );
972 LinkCache::singleton()->clearBadLink( $title->getPrefixedDBkey() );
973 return new ScopedCallback( function () use ( $title, $key ) {
975 unset( $wgHooks['TitleExists'][$key] );
976 LinkCache::singleton()->clearLink( $title );
977 } );
978 }
979}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgMaxTemplateDepth
Maximum recursion depth for templates within templates.
$wgMaxPPNodeCount
A complexity limit on template expansion: the maximum number of nodes visited by PPFrame::expand()
$wgMaxArticleSize
Maximum article size in kilobytes.
$wgMaxGeneratedPPNodeCount
A complexity limit on template expansion: the maximum number of elements generated by Preprocessor::p...
$wgEnableImageWhitelist
If $wgAllowExternalImages is false, you can allow an on-wiki whitelist of regular expression fragment...
$wgCleanSignatures
If true, removes (by substituting) templates in signatures.
$wgRenderHashAppend
Append a configured value to the parser cache and the sitenotice key so that they can be kept separat...
$wgMaxPPExpandDepth
$wgDisableLangConversion
Whether to enable language variant conversion.
$wgAllowSpecialInclusion
Allow special page inclusions such as {{Special:Allpages}}.
$wgAllowExternalImagesFrom
If the above is false, you can specify an exception here.
$wgInterwikiMagic
Treat language links as magic connectors, not inline links.
$wgAllowExternalImages
Whether to allow inline image pointing to other websites.
$wgEnableMagicLinks
Enable the magic links feature of automatically turning ISBN xxx, PMID xxx, RFC xxx into links.
$wgExternalLinkTarget
Set a default target for external links, e.g.
$wgExpensiveParserFunctionLimit
Maximum number of calls per parse to expensive parser functions such as PAGESINCATEGORY.
$wgDisableTitleConversion
Whether to enable language variant conversion for links.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
$wgUser
Definition Setup.php:806
Internationalisation code.
Definition Language.php:35
Set options of the Parser.
setAllowExternalImagesFrom( $x)
disableTitleConversion( $x=true)
$mEnableImageWhitelist
If not or it doesn't match, should we check an on-wiki whitelist?
$mMaxTemplateDepth
Maximum recursion depth for templates within templates.
$mAllowExternalImages
Allow external images inline?
$mIsPrintable
Parsing the printable version of the page?
getRedirectTarget()
Get the previously-set redirect target.
$mMaxPPNodeCount
Maximum number of nodes touched by PPFrame::expand()
$mInterwikiMagic
Interlanguage links are removed and returned in an array.
enableLimitReport( $x=true)
$mMaxGeneratedPPNodeCount
Maximum number of nodes generated by Preprocessor::preprocessToObj()
callable $mCurrentRevisionCallback
Callback for current revision fetching; first argument to call_user_func().
$mDisableTitleConversion
Whether title conversion should be disabled.
matches(ParserOptions $other)
Check if these options match that of another options set.
$mEnableLimitReport
Enable limit report in an HTML comment on output.
$mMaxPPExpandDepth
Maximum recursion depth in PPFrame::expand()
$mPreSaveTransform
Transform wiki markup when saving the page?
$mRemoveComments
Remove HTML comments.
$mMagicISBNLinks
Are magic ISBN links enabled?
setAllowExternalImages( $x)
getUserLangObj()
Get the user language used by the parser for this page and split the parser cache.
callable null $mSpeculativeRevIdCallback
Callback to generate a guess for {{REVISIONID}}.
$mExternalLinkTarget
Target attribute for external links.
$mInterfaceMessage
Which lang to call for PLURAL and GRAMMAR.
$mAllowExternalImagesFrom
If not, any exception?
$onAccessCallback
Function to be called when an option is accessed.
$mNumberHeadings
Automatically number headings?
$mStubThreshold
Maximum article size of an article to be marked as "stub".
$mExpensiveParserFunctionLimit
Maximum number of calls per parse to expensive parser functions.
$mMagicRFCLinks
Are magic RFC links enabled?
getExpensiveParserFunctionLimit()
$mTimestamp
Timestamp used for {{CURRENTDAY}} etc.
setCurrentRevisionCallback( $x)
$mTargetLanguage
Overrides $mInterfaceMessage with arbitrary language.
$mEditSection
Create "edit section" links?
callable $mTemplateCallback
Callback for template fetching; first argument to call_user_func().
setEnableImageWhitelist( $x)
$mThumbSize
Thumb size preferred by the user.
$mIsPreview
Parsing the page for a "preview" operation?
User $mUser
Stored user object.
optionUsed( $optionName)
Called when an option is accessed.
setRedirectTarget( $title)
Set the redirect target.
disableContentConversion( $x=true)
initialiseFromUser( $user, $lang)
Get user options.
optionsHash( $forOptions, $title=null)
Generate a hash string with the values set on these ParserOptions for the keys given in the array.
$mExtraKey
Extra key that should be present in the caching key.
setAllowSpecialInclusion( $x)
$mIsSectionPreview
Parsing the page for a "preview" operation on a single section?
$mDisableContentConversion
Whether content conversion should be disabled.
setupFakeRevision( $title, $content, $user)
Sets a hook to force that a page exists, and sets a current revision callback to return a revision wi...
static legacyOptions()
Returns the full array of options that would have been used by in 1.16.
static newFromContext(IContextSource $context)
Get a ParserOptions object from a IContextSource object.
$mTidy
Use tidy to cleanup output HTML?
registerWatcher( $callback)
Registers a callback for tracking which ParserOptions which are used.
addExtraKey( $key)
Extra key that should be present in the parser cache key.
static newFromAnon()
Get a ParserOptions object for an anonymous user.
static newFromUser( $user)
Get a ParserOptions object from a given user.
getUserLang()
Same as getUserLangObj() but returns a string instead.
Title null $redirectTarget
If the page being parsed is a redirect, this should hold the redirect target.
boolean $allowUnsafeRawHtml
If the wiki is configured to allow raw html ($wgRawHtml = true) is it allowed in the specific case of...
setMaxGeneratedPPNodeCount( $x)
$mUserLang
Language object of the User language.
static newFromUserAndLang(User $user, Language $lang)
Get a ParserOptions object from a given user and language.
$mCleanSignatures
Clean up signature texts?
__construct( $user=null, $lang=null)
Constructor.
$mDateFormat
Date format index.
setSpeculativeRevIdCallback( $x)
$mMaxIncludeSize
Maximum size of template expansions, in bytes.
$mMagicPMIDLinks
Are magic PMID links enabled?
$mAllowSpecialInclusion
Allow inclusion of special pages?
setExpensiveParserFunctionLimit( $x)
static isRealObject( $obj)
Returns a bool value whenever $obj is a stub object.
Represents a title within MediaWiki.
Definition Title.php:36
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
Definition design.txt:26
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
Definition design.txt:56
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:249
namespace are movable Hooks may change this value to override the return value of MWNamespace::isMovable(). 'NewDifferenceEngine' do that in ParserLimitReportFormat instead $parser
Definition hooks.txt:2259
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:986
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
Definition hooks.txt:1094
$wgHooks['ArticleShow'][]
Definition hooks.txt:110
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Interface for objects which can provide a MediaWiki context on request.
$context
Definition load.php:50
if(!isset( $args[0])) $lang