123 [
'Parser',
'statelessFetchRevision' ];
129 [
'Parser',
'statelessFetchTemplate' ];
371 if ( !isset( $this->mDateFormat ) ) {
372 $this->mDateFormat = $this->mUser->getDatePreference();
378 if ( !isset( $this->mTimestamp ) ) {
423 return wfSetVar( $this->mInterwikiMagic, $x );
427 return wfSetVar( $this->mAllowExternalImages, $x );
431 return wfSetVar( $this->mAllowExternalImagesFrom, $x );
435 return wfSetVar( $this->mEnableImageWhitelist, $x );
439 return wfSetVar( $this->mDateFormat, $x );
443 return wfSetVar( $this->mEditSection, $x );
447 return wfSetVar( $this->mNumberHeadings, $x );
451 return wfSetVar( $this->mAllowSpecialInclusion, $x );
455 return wfSetVar( $this->mTidy, $x );
459 return wfSetVar( $this->mInterfaceMessage, $x );
463 return wfSetVar( $this->mTargetLanguage, $x,
true );
467 return wfSetVar( $this->mMaxIncludeSize, $x );
471 return wfSetVar( $this->mMaxPPNodeCount, $x );
475 return wfSetVar( $this->mMaxGeneratedPPNodeCount, $x );
479 return wfSetVar( $this->mMaxTemplateDepth, $x );
484 return wfSetVar( $this->mExpensiveParserFunctionLimit, $x );
488 return wfSetVar( $this->mRemoveComments, $x );
493 return wfSetVar( $this->mCurrentRevisionCallback, $x );
498 return wfSetVar( $this->mSpeculativeRevIdCallback, $x );
502 return wfSetVar( $this->mTemplateCallback, $x );
506 return wfSetVar( $this->mEnableLimitReport, $x );
510 return wfSetVar( $this->mTimestamp, $x );
514 return wfSetVar( $this->mCleanSignatures, $x );
518 return wfSetVar( $this->mExternalLinkTarget, $x );
522 return wfSetVar( $this->mDisableContentConversion, $x );
526 return wfSetVar( $this->mDisableTitleConversion, $x );
530 if ( is_string( $x ) ) {
534 return wfSetVar( $this->mUserLang, $x );
538 return wfSetVar( $this->mThumbSize, $x );
542 return wfSetVar( $this->mStubThreshold, $x );
546 return wfSetVar( $this->mPreSaveTransform, $x );
550 return wfSetVar( $this->mIsPreview, $x );
554 return wfSetVar( $this->mIsSectionPreview, $x );
558 return wfSetVar( $this->mIsPrintable, $x );
572 $this->redirectTarget =
$title;
590 $this->mExtraKey .=
'!' . $key;
599 if (
$user === null ) {
601 if ( $wgUser === null ) {
607 if (
$lang === null ) {
674 $this->mAllowExternalImages = $wgAllowExternalImages;
678 $this->mMaxIncludeSize = $wgMaxArticleSize * 1024;
679 $this->mMaxPPNodeCount = $wgMaxPPNodeCount;
680 $this->mMaxGeneratedPPNodeCount = $wgMaxGeneratedPPNodeCount;
681 $this->mMaxPPExpandDepth = $wgMaxPPExpandDepth;
682 $this->mMaxTemplateDepth = $wgMaxTemplateDepth;
684 $this->mCleanSignatures = $wgCleanSignatures;
689 $this->mUser =
$user;
690 $this->mNumberHeadings =
$user->getOption(
'numberheadings' );
691 $this->mThumbSize =
$user->getOption(
'thumbsize' );
692 $this->mStubThreshold =
$user->getStubThreshold();
693 $this->mUserLang =
$lang;
707 $fields = array_keys( get_class_vars( __CLASS__ ) );
708 $fields = array_diff( $fields, [
709 'mEnableLimitReport',
712 foreach ( $fields
as $field ) {
713 if ( !is_object( $this->$field ) && $this->$field !== $other->$field ) {
719 $this->mUserLang->equals( $other->mUserLang ) &&
730 $this->onAccessCallback = $callback;
742 if ( $this->onAccessCallback ) {
743 call_user_func( $this->onAccessCallback, $optionName );
791 if ( in_array(
'stubthreshold', $forOptions ) ) {
797 if ( in_array(
'dateformat', $forOptions ) ) {
801 if ( in_array(
'numberheadings', $forOptions ) ) {
802 $confstr .=
'!' . ( $this->mNumberHeadings ?
'1' :
'' );
807 if ( in_array(
'userlang', $forOptions ) ) {
808 $confstr .=
'!' . $this->mUserLang->getCode();
813 if ( in_array(
'thumbsize', $forOptions ) ) {
821 if ( !is_null(
$title ) ) {
822 $confstr .=
$title->getPageLanguage()->getExtraHashOptions();
825 $confstr .= $wgContLang->getExtraHashOptions();
834 if ( !in_array(
'editsection', $forOptions ) ) {
836 } elseif ( !$this->mEditSection ) {
837 $confstr .=
'!edit=0';
840 if ( $this->mIsPrintable && in_array(
'printable', $forOptions ) ) {
841 $confstr .=
'!printable=1';
844 if ( $this->mExtraKey !=
'' ) {
850 Hooks::run(
'PageRenderingHash', [ &$confstr, $this->
getUser(), &$forOptions ] );
853 $confstr = str_replace(
' ',
'_', $confstr );
873 if ( $titleToCheck->equals(
$title ) ) {
875 'page' =>
$title->getArticleID(),
876 'user_text' =>
$user->getName(),
877 'user' =>
$user->getId(),
878 'parent_id' =>
$title->getLatestRevID(),
883 return call_user_func( $oldCallback, $titleToCheck,
$parser );
889 $wgHooks[
'TitleExists'][] =
890 function ( $titleToCheck, &$exists )
use (
$title ) {
891 if ( $titleToCheck->equals(
$title ) ) {
895 end( $wgHooks[
'TitleExists'] );
896 $key =
key( $wgHooks[
'TitleExists'] );
900 unset( $wgHooks[
'TitleExists'][$key] );
static newFromContext(IContextSource $context)
Get a ParserOptions object from a IContextSource object.
Interface for objects which can provide a MediaWiki context on request.
$wgMaxArticleSize
Maximum article size in kilobytes.
callable $mTemplateCallback
Callback for template fetching; first argument to call_user_func().
$mIsSectionPreview
Parsing the page for a "preview" operation on a single section?
static legacyOptions()
Returns the full array of options that would have been used by in 1.16.
$wgAllowSpecialInclusion
Allow special page inclusions such as {{Special:Allpages}}.
disableTitleConversion($x=true)
$mAllowExternalImagesFrom
If not, any exception?
$mMaxGeneratedPPNodeCount
Maximum number of nodes generated by Preprocessor::preprocessToObj()
$wgAllowExternalImagesFrom
If $wgAllowExternalImages is false, you can allow an on-wiki whitelist of regular expression fragment...
$mDateFormat
Date format index.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$wgExpensiveParserFunctionLimit
Maximum number of calls per parse to expensive parser functions such as PAGESINCATEGORY.
$mIsPreview
Parsing the page for a "preview" operation?
Set options of the Parser.
if(!isset($args[0])) $lang
setAllowSpecialInclusion($x)
static newFromUserAndLang(User $user, Language $lang)
Get a ParserOptions object from a given user and language.
initialiseFromUser($user, $lang)
Get user options.
setupFakeRevision($title, $content, $user)
Sets a hook to force that a page exists, and sets a current revision callback to return a revision wi...
$mExternalLinkTarget
Target attribute for external links.
getCurrentRevisionCallback()
getSpeculativeRevIdCallback()
setSpeculativeRevIdCallback($x)
$wgHooks['ArticleShow'][]
when a variable name is used in a it is silently declared as a new local masking the global
static newFromUser($user)
Get a ParserOptions object from a given user.
User $mUser
Stored user object.
Title null $redirectTarget
If the page being parsed is a redirect, this should hold the redirect target.
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
$mStubThreshold
Maximum article size of an article to be marked as "stub".
$mTimestamp
Timestamp used for {{CURRENTDAY}} etc.
The User object encapsulates all of the user-specific settings (user_id, name, rights, email address, options, last login time).
callable null $mSpeculativeRevIdCallback
Callback to generate a guess for {{REVISIONID}}.
$mMaxTemplateDepth
Maximum recursion depth for templates within templates.
$mTargetLanguage
Overrides $mInterfaceMessage with arbitrary language.
getUser()
Get the User object.
Class for asserting that a callback happens when an dummy object leaves scope.
getAllowSpecialInclusion()
$wgRenderHashAppend
Append a configured value to the parser cache and the sitenotice key so that they can be kept separat...
static singleton()
Get an instance of this class.
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
$mRemoveComments
Remove HTML comments.
$mAllowSpecialInclusion
Allow inclusion of special pages?
$mCleanSignatures
Clean up signature texts?
setEnableImageWhitelist($x)
registerWatcher($callback)
Registers a callback for tracking which ParserOptions which are used.
getRedirectTarget()
Get the previously-set redirect target.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
callable $mCurrentRevisionCallback
Callback for current revision fetching; first argument to call_user_func().
Internationalisation code.
$mMaxPPNodeCount
Maximum number of nodes touched by PPFrame::expand()
$mIsPrintable
Parsing the printable version of the page?
getUserLangObj()
Get the user language used by the parser for this page and split the parser cache.
$mPreSaveTransform
Transform wiki markup when saving the page?
$wgDisableTitleConversion
Whether to enable language variant conversion for links.
$mInterfaceMessage
Which lang to call for PLURAL and GRAMMAR.
Allows to change the fields on the form that will be generated are created Can be used to omit specific feeds from being outputted You must not use this hook to add use OutputPage::addFeedLink() instead.&$feedLinks conditions will AND in the final query as a Content object as a Content object $title
$wgInterwikiMagic
Treat language links as magic connectors, not inline links.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
getUserLang()
Same as getUserLangObj() but returns a string instead.
setAllowExternalImages($x)
getLanguage()
Get the Language object.
$mDisableTitleConversion
Whether title conversion should be disabled.
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
$wgDisableLangConversion
Whether to enable language variant conversion.
static newFromAnon()
Get a ParserOptions object for an anonymous user.
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
setRedirectTarget($title)
Set the redirect target.
$mInterwikiMagic
Interlanguage links are removed and returned in an array.
disableContentConversion($x=true)
$mExpensiveParserFunctionLimit
Maximum number of calls per parse to expensive parser functions.
setAllowExternalImagesFrom($x)
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
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...
$mMaxIncludeSize
Maximum size of template expansions, in bytes.
$onAccessCallback
Function to be called when an option is accessed.
$mDisableContentConversion
Whether content conversion should be disabled.
$mExtraKey
Extra key that should be present in the caching key.
$mEnableLimitReport
Enable limit report in an HTML comment on output.
getEnableImageWhitelist()
enableLimitReport($x=true)
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
setMaxGeneratedPPNodeCount($x)
$mUserLang
Language object of the User language.
$mMaxPPExpandDepth
Maximum recursion depth in PPFrame::expand()
addExtraKey($key)
Extra key that should be present in the parser cache key.
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
$mEditSection
Create "edit section" links?
$mAllowExternalImages
Allow external images inline?
getDisableTitleConversion()
$wgEnableImageWhitelist
If $wgAllowExternalImages is false, you can allow an on-wiki whitelist of regular expression fragment...
setExternalLinkTarget($x)
static factory($code)
Get a cached or new language object for a given language code.
$wgExternalLinkTarget
Set a default target for external links, e.g.
$mTidy
Use tidy to cleanup output HTML?
optionsHash($forOptions, $title=null)
Generate a hash string with the values set on these ParserOptions for the keys given in the array...
$mThumbSize
Thumb size preferred by the user.
$mEnableImageWhitelist
If not or it doesn't match, should we check an on-wiki whitelist?
setCurrentRevisionCallback($x)
__construct($user=null, $lang=null)
Constructor.
static isRealObject($obj)
Returns a bool value whenever $obj is a stub object.
setExpensiveParserFunctionLimit($x)
optionUsed($optionName)
Called when an option is accessed.
matches(ParserOptions $other)
Check if these options match that of another options set.
getAllowExternalImagesFrom()
getDisableContentConversion()
$mNumberHeadings
Automatically number headings?
getExpensiveParserFunctionLimit()
getMaxGeneratedPPNodeCount()