123 [
'Parser',
'statelessFetchRevision' ];
129 [
'Parser',
'statelessFetchTemplate' ];
376 if ( !isset( $this->mDateFormat ) ) {
377 $this->mDateFormat = $this->mUser->getDatePreference();
383 if ( !isset( $this->mTimestamp ) ) {
436 return wfSetVar( $this->mInterwikiMagic, $x );
440 return wfSetVar( $this->mAllowExternalImages, $x );
444 return wfSetVar( $this->mAllowExternalImagesFrom, $x );
448 return wfSetVar( $this->mEnableImageWhitelist, $x );
452 return wfSetVar( $this->mDateFormat, $x );
456 return wfSetVar( $this->mEditSection, $x );
460 return wfSetVar( $this->mNumberHeadings, $x );
464 return wfSetVar( $this->mAllowSpecialInclusion, $x );
468 return wfSetVar( $this->mTidy, $x );
472 return wfSetVar( $this->mInterfaceMessage, $x );
476 return wfSetVar( $this->mTargetLanguage, $x,
true );
480 return wfSetVar( $this->mMaxIncludeSize, $x );
484 return wfSetVar( $this->mMaxPPNodeCount, $x );
488 return wfSetVar( $this->mMaxGeneratedPPNodeCount, $x );
492 return wfSetVar( $this->mMaxTemplateDepth, $x );
497 return wfSetVar( $this->mExpensiveParserFunctionLimit, $x );
501 return wfSetVar( $this->mRemoveComments, $x );
506 return wfSetVar( $this->mCurrentRevisionCallback, $x );
510 return wfSetVar( $this->mTemplateCallback, $x );
514 return wfSetVar( $this->mEnableLimitReport, $x );
518 return wfSetVar( $this->mTimestamp, $x );
522 return wfSetVar( $this->mCleanSignatures, $x );
526 return wfSetVar( $this->mExternalLinkTarget, $x );
530 return wfSetVar( $this->mDisableContentConversion, $x );
534 return wfSetVar( $this->mDisableTitleConversion, $x );
538 if ( is_string( $x ) ) {
539 $x = Language::factory( $x );
542 return wfSetVar( $this->mUserLang, $x );
546 return wfSetVar( $this->mThumbSize, $x );
550 return wfSetVar( $this->mStubThreshold, $x );
554 return wfSetVar( $this->mPreSaveTransform, $x );
558 return wfSetVar( $this->mIsPreview, $x );
562 return wfSetVar( $this->mIsSectionPreview, $x );
566 return wfSetVar( $this->mIsPrintable, $x );
575 return wfSetVar( $this->allowUnsafeRawHtml, $x );
589 $this->redirectTarget =
$title;
607 $this->mExtraKey .=
'!' . $key;
616 if (
$user ===
null ) {
624 if (
$lang ===
null ) {
706 $this->mUser =
$user;
707 $this->mNumberHeadings =
$user->getOption(
'numberheadings' );
708 $this->mThumbSize =
$user->getOption(
'thumbsize' );
709 $this->mStubThreshold =
$user->getStubThreshold();
710 $this->mUserLang =
$lang;
724 $fields = array_keys( get_class_vars( __CLASS__ ) );
725 $fields = array_diff( $fields, [
726 'mEnableLimitReport',
729 foreach ( $fields
as $field ) {
730 if ( !is_object( $this->$field ) && $this->$field !== $other->$field ) {
736 $this->mUserLang->getCode() === $other->mUserLang->getCode() &&
747 $this->onAccessCallback = $callback;
759 if ( $this->onAccessCallback ) {
760 call_user_func( $this->onAccessCallback, $optionName );
808 if ( in_array(
'stubthreshold', $forOptions ) ) {
814 if ( in_array(
'dateformat', $forOptions ) ) {
818 if ( in_array(
'numberheadings', $forOptions ) ) {
819 $confstr .=
'!' . ( $this->mNumberHeadings ?
'1' :
'' );
824 if ( in_array(
'userlang', $forOptions ) ) {
825 $confstr .=
'!' . $this->mUserLang->getCode();
830 if ( in_array(
'thumbsize', $forOptions ) ) {
838 if ( !is_null(
$title ) ) {
839 $confstr .=
$title->getPageLanguage()->getExtraHashOptions();
851 if ( !in_array(
'editsection', $forOptions ) ) {
853 } elseif ( !$this->mEditSection ) {
854 $confstr .=
'!edit=0';
857 if ( $this->mIsPrintable && in_array(
'printable', $forOptions ) ) {
858 $confstr .=
'!printable=1';
861 if ( $this->mExtraKey !=
'' ) {
867 Hooks::run(
'PageRenderingHash', [ &$confstr, $this->
getUser(), &$forOptions ] );
870 $confstr = str_replace(
' ',
'_', $confstr );
890 if ( $titleToCheck->equals(
$title ) ) {
891 return new Revision( [
892 'page' => $title->getArticleID(),
893 'user_text' => $user->getName(),
894 'user' => $user->getId(),
895 'parent_id' => $title->getLatestRevID(),
897 'content' => $content
900 return call_user_func( $oldCallback, $titleToCheck, $parser );
907 function ( $titleToCheck, &$exists )
use (
$title ) {
908 if ( $titleToCheck->equals(
$title ) ) {
917 unset(
$wgHooks[
'TitleExists'][$key] );
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...
$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.
$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...
Internationalisation code.
static singleton()
Get an instance of this class.
Set options of the Parser.
setAllowExternalImagesFrom( $x)
disableTitleConversion( $x=true)
$mCurrentRevisionCallback
Callback for current revision fetching.
$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()
setAllowUnsafeRawHtml( $x)
$mInterwikiMagic
Interlanguage links are removed and returned in an array.
enableLimitReport( $x=true)
$mMaxGeneratedPPNodeCount
Maximum number of nodes generated by Preprocessor::preprocessToObj()
$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.
setAllowExternalImages( $x)
getUserLangObj()
Get the user language used by the parser for this page and split the parser cache.
$mTemplateCallback
Callback for template fetching.
$mExternalLinkTarget
Target attribute for external links.
$mInterfaceMessage
Which lang to call for PLURAL and GRAMMAR.
getEnableImageWhitelist()
$mAllowExternalImagesFrom
If not, any exception?
getAllowExternalImagesFrom()
$onAccessCallback
Function to be called when an option is accessed.
$mNumberHeadings
Automatically number headings?
getCurrentRevisionCallback()
$mStubThreshold
Maximum article size of an article to be marked as "stub".
$mExpensiveParserFunctionLimit
Maximum number of calls per parse to expensive parser functions.
getDisableContentConversion()
getExpensiveParserFunctionLimit()
$mTimestamp
Timestamp used for {{CURRENTDAY}} etc.
setCurrentRevisionCallback( $x)
$mTargetLanguage
Overrides $mInterfaceMessage with arbitrary language.
$mEditSection
Create "edit section" links?
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.
getAllowSpecialInclusion()
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.
setExternalLinkTarget( $x)
getMaxGeneratedPPNodeCount()
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.
getDisableTitleConversion()
$mMaxIncludeSize
Maximum size of template expansions, in bytes.
$mAllowSpecialInclusion
Allow inclusion of special pages?
setExpensiveParserFunctionLimit( $x)
Class for asserting that a callback happens when an dummy object leaves scope.
static isRealObject( $obj)
Returns a bool value whenever $obj is a stub object.
Represents a title within MediaWiki.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
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
when a variable name is used in a it is silently declared as a new local masking the global
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
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
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
do that in ParserLimitReportFormat instead $parser
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
namespace and then decline to actually register it file or subcat img or subcat $title
$wgHooks['ArticleShow'][]
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
Interface for objects which can provide a MediaWiki context on request.
if(!isset( $args[0])) $lang