Go to the documentation of this file.
34 public static function register(
$parser ) {
37 # Syntax for arguments (see Parser::setFunctionHook):
38 # "name for lookup in localized magic words array",
40 # optional Parser::SFH_NO_HASH to omit the hash from calls (e.g. {{int:...}}
41 # instead of {{#int:...}})
43 'ns',
'nse',
'urlencode',
'lcfirst',
'ucfirst',
'lc',
'uc',
44 'localurl',
'localurle',
'fullurl',
'fullurle',
'canonicalurl',
45 'canonicalurle',
'formatnum',
'grammar',
'gender',
'plural',
'bidi',
46 'numberofpages',
'numberofusers',
'numberofactiveusers',
47 'numberofarticles',
'numberoffiles',
'numberofadmins',
48 'numberingroup',
'numberofedits',
'language',
49 'padleft',
'padright',
'anchorencode',
'defaultsort',
'filepath',
50 'pagesincategory',
'pagesize',
'protectionlevel',
'protectionexpiry',
51 'namespacee',
'namespacenumber',
'talkspace',
'talkspacee',
52 'subjectspace',
'subjectspacee',
'pagename',
'pagenamee',
53 'fullpagename',
'fullpagenamee',
'rootpagename',
'rootpagenamee',
54 'basepagename',
'basepagenamee',
'subpagename',
'subpagenamee',
55 'talkpagename',
'talkpagenamee',
'subjectpagename',
56 'subjectpagenamee',
'pageid',
'revisionid',
'revisionday',
57 'revisionday2',
'revisionmonth',
'revisionmonth1',
'revisionyear',
58 'revisiontimestamp',
'revisionuser',
'cascadingsources',
60 foreach ( $noHashFunctions
as $func ) {
66 [ __CLASS__,
'mwnamespace' ],
70 $parser->setFunctionHook(
'special', [ __CLASS__,
'special' ] );
71 $parser->setFunctionHook(
'speciale', [ __CLASS__,
'speciale' ] );
73 $parser->setFunctionHook(
'formatdate', [ __CLASS__,
'formatDate' ] );
78 [ __CLASS__,
'displaytitle' ],
85 [ __CLASS__,
'pagesinnamespace' ],
97 if ( strval( $part1 ) !==
'' ) {
98 $args = array_slice( func_get_args(), 2 );
100 ->inLanguage(
$parser->getOptions()->getUserLangObj() );
101 if ( !$message->exists() ) {
104 return $message->escaped();
106 return [ $message->plain(),
'noparse' =>
false ];
108 return [
'found' =>
false ];
123 $date = trim( $date );
125 $pref =
$parser->getOptions()->getDateFormat();
129 if ( $pref ==
'default' && $defaultPref ) {
130 $pref = $defaultPref;
133 $date = $df->reformat( $pref, $date, [
'match-whole' ] );
139 if ( intval( $part1 ) || $part1 ==
"0" ) {
140 $index = intval( $part1 );
142 $index =
$wgContLang->getNsIndex( str_replace(
' ',
'_', $part1 ) );
144 if ( $index !==
false ) {
147 return [
'found' =>
false ];
153 if ( is_string(
$ret ) ) {
179 $func =
'wfUrlencode';
180 $s = str_replace(
' ',
'_',
$s );
185 $func =
'rawurlencode';
195 return $func(
$parser->killMarkers(
$s ) );
234 if ( !is_string( $temp ) ) {
237 return htmlspecialchars( $temp );
247 if ( !is_string( $temp ) ) {
250 return htmlspecialchars( $temp );
260 if ( !is_string( $temp ) ) {
263 return htmlspecialchars( $temp );
269 # Due to order of execution of a lot of bits, the values might be encoded
270 # before arriving here; if that's true, then the title can't be created
271 # and the variable will fail. If we can't get a decent title from the first
272 # attempt, url-decode and try for a second.
273 if ( is_null(
$title ) ) {
276 if ( !is_null(
$title ) ) {
277 # Convert NS_MEDIA -> NS_FILE
281 if ( !is_null( $arg ) ) {
282 $text =
$title->$func( $arg );
288 return [
'found' =>
false ];
299 if ( self::matchAgainstMagicword(
'rawsuffix', $arg ) ) {
300 $func = [
$parser->getFunctionLang(),
'parseFormattedNumber' ];
301 } elseif ( self::matchAgainstMagicword(
'nocommafysuffix', $arg ) ) {
302 $func = [
$parser->getFunctionLang(),
'formatNumNoSeparators' ];
304 $func = [
$parser->getFunctionLang(),
'formatNum' ];
306 return $parser->markerSkipCallback( $num, $func );
316 $word =
$parser->killMarkers( $word );
317 return $parser->getFunctionLang()->convertGrammar( $word, $case );
326 $forms = array_slice( func_get_args(), 2 );
329 if (
count( $forms ) === 0 ) {
331 } elseif (
count( $forms ) === 1 ) {
349 $genderCache = MediaWikiServices::getInstance()->getGenderCache();
351 $gender = $genderCache->getGenderOf(
$user, __METHOD__ );
352 } elseif (
$username ===
'' &&
$parser->getOptions()->getInterfaceMessage() ) {
353 $gender = $genderCache->getGenderOf(
$parser->getOptions()->getUser(), __METHOD__ );
355 $ret =
$parser->getFunctionLang()->gender( $gender, $forms );
365 $forms = array_slice( func_get_args(), 2 );
366 $text =
$parser->getFunctionLang()->parseFormattedNumber( $text );
367 settype( $text, ctype_digit( $text ) ?
'int' :
'float' );
368 return $parser->getFunctionLang()->convertPlural( $text, $forms );
377 return $parser->getFunctionLang()->embedBidi( $text );
399 $text =
$parser->doQuotes( $text );
402 $text =
$parser->killMarkers( $text );
406 $bad = [
'h1',
'h2',
'h3',
'h4',
'h5',
'h6',
'div',
'blockquote',
'ol',
'ul',
'li',
'hr',
407 'table',
'tr',
'th',
'td',
'dl',
'dd',
'caption',
'p',
'ruby',
'rb',
'rt',
'rtc',
'rp',
'br' ];
411 $htmlTagsCallback =
function ( &
$params ) {
412 $decoded = Sanitizer::decodeTagAttributes(
$params );
414 if ( isset( $decoded[
'style'] ) ) {
417 $decoded[
'style'] = Sanitizer::checkCss( $decoded[
'style'] );
419 if ( preg_match(
'/(display|user-select|visibility)\s*:/i', $decoded[
'style'] ) ) {
420 $decoded[
'style'] =
'/* attempt to bypass $wgRestrictDisplayTitle */';
424 $params = Sanitizer::safeEncodeTagAttributes( $decoded );
427 $htmlTagsCallback =
null;
433 $text = Sanitizer::normalizeCharReferences( Sanitizer::removeHTMLtags(
447 $old =
$parser->mOutput->getProperty(
'displaytitle' );
448 if ( $old ===
false || $arg !==
'displaytitle_noreplace' ) {
449 $parser->mOutput->setDisplayTitle( $text );
451 if ( $old !==
false && $old !== $text && !$arg ) {
452 $converter =
$parser->getConverterLanguage()->getConverter();
453 return '<span class="error">' .
458 )->inContentLanguage()->text() .
464 $converter =
$parser->getConverterLanguage()->getConverter();
465 $parser->getOutput()->addWarning(
471 $parser->addTrackingCategory(
'restricted-displaytitle-ignored' );
488 return $mwObject->matchStartToEnd(
$value );
499 public static function formatRaw( $num, $raw, $language ) {
500 if ( self::matchAgainstMagicword(
'rawsuffix', $raw ) ) {
503 return $language->formatNum( $num );
564 if ( is_null(
$t ) ) {
567 return str_replace(
'_',
' ',
$t->getNsText() );
571 if ( is_null(
$t ) ) {
578 if ( is_null(
$t ) ) {
581 return $t->getNamespace();
585 if ( is_null(
$t ) || !
$t->canHaveTalkPage() ) {
588 return str_replace(
'_',
' ',
$t->getTalkNsText() );
592 if ( is_null(
$t ) || !
$t->canHaveTalkPage() ) {
599 if ( is_null(
$t ) ) {
602 return str_replace(
'_',
' ',
$t->getSubjectNsText() );
606 if ( is_null(
$t ) ) {
621 if ( is_null(
$t ) ) {
628 if ( is_null(
$t ) ) {
635 if ( is_null(
$t ) || !
$t->canHaveTalkPage() ) {
642 if ( is_null(
$t ) || !
$t->canHaveTalkPage() ) {
649 if ( is_null(
$t ) ) {
656 if ( is_null(
$t ) ) {
663 if ( is_null(
$t ) ) {
670 if ( is_null(
$t ) ) {
677 if ( is_null(
$t ) ) {
684 if ( is_null(
$t ) ) {
691 if ( is_null(
$t ) || !
$t->canHaveTalkPage() ) {
698 if ( is_null(
$t ) || !
$t->canHaveTalkPage() ) {
705 if ( is_null(
$t ) ) {
712 if ( is_null(
$t ) ) {
733 'pagesincategory_all',
734 'pagesincategory_pages',
735 'pagesincategory_subcats',
736 'pagesincategory_files'
742 if ( self::matchAgainstMagicword(
'rawsuffix', $arg1 ) ) {
752 $type =
'pagesincategory_all';
767 $allCount = $subcatCount = $fileCount = $pagesCount = 0;
768 if (
$parser->incrementExpensiveFunctionCount() ) {
771 $allCount = (int)$category->getPageCount();
772 $subcatCount = (int)$category->getSubcatCount();
773 $fileCount = (int)$category->getFileCount();
774 $pagesCount = $allCount - $subcatCount - $fileCount;
777 $cache[
$name][
'pagesincategory_pages'] = $pagesCount;
778 $cache[
$name][
'pagesincategory_subcats'] = $subcatCount;
779 $cache[
$name][
'pagesincategory_files'] = $fileCount;
798 if ( !is_object(
$title ) ) {
804 $length =
$rev ?
$rev->getSize() : 0;
805 if ( $length ===
null ) {
826 if ( !( $titleObject instanceof
Title ) ) {
827 $titleObject =
$parser->mTitle;
829 if ( $titleObject->areRestrictionsLoaded() ||
$parser->incrementExpensiveFunctionCount() ) {
830 $restrictions = $titleObject->getRestrictions( strtolower(
$type ) );
831 # Title::getRestrictions returns an array, its possible it may have
832 # multiple values in the future
833 return implode( $restrictions,
',' );
852 if ( !( $titleObject instanceof
Title ) ) {
853 $titleObject =
$parser->mTitle;
855 if ( $titleObject->areRestrictionsLoaded() ||
$parser->incrementExpensiveFunctionCount() ) {
856 $expiry = $titleObject->getRestrictionExpiry( strtolower(
$type ) );
859 if ( $expiry ===
false ) {
876 $inLanguage = strtolower( $inLanguage );
890 public static function pad(
891 $parser, $string, $length, $padding =
'0', $direction = STR_PAD_RIGHT
893 $padding =
$parser->killMarkers( $padding );
894 $lengthOfPadding = mb_strlen( $padding );
895 if ( $lengthOfPadding == 0 ) {
899 # The remaining length to add counts down to 0 as padding is added
900 $length = min( (
int)$length, 500 ) - mb_strlen( $string );
901 if ( $length <= 0 ) {
906 # $finalPadding is just $padding repeated enough times so that
907 # mb_strlen( $string ) + mb_strlen( $finalPadding ) == $length
909 while ( $length > 0 ) {
910 # If $length < $lengthofPadding, truncate $padding so we get the
911 # exact length desired.
912 $finalPadding .= mb_substr( $padding, 0, $length );
913 $length -= $lengthOfPadding;
916 if ( $direction == STR_PAD_LEFT ) {
917 return $finalPadding . $string;
919 return $string . $finalPadding;
923 public static function padleft(
$parser, $string =
'', $length = 0, $padding =
'0' ) {
927 public static function padright(
$parser, $string =
'', $length = 0, $padding =
'0' ) {
937 $text =
$parser->killMarkers( $text );
938 return (
string)substr(
$parser->guessSectionNameFromWikiText( $text ), 1 );
945 return $title->getPrefixedText();
972 $text = trim( $text );
973 if ( strlen( $text ) == 0 ) {
976 $old =
$parser->getCustomDefaultSort();
977 if ( $old ===
false || $arg !==
'defaultsort_noreplace' ) {
978 $parser->setDefaultSort( $text );
981 if ( $old ===
false || $old == $text || $arg ) {
984 $converter =
$parser->getConverterLanguage()->getConverter();
985 return '<span class="error">' .
990 )->inContentLanguage()->text() .
1009 if ( $argA ==
'nowiki' ) {
1012 $parsedWidthParam =
$parser->parseWidthParam( $argB );
1015 $parsedWidthParam =
$parser->parseWidthParam( $argA );
1016 $isNowiki = ( $argB ==
'nowiki' );
1020 $url = $file->getFullUrl();
1023 if (
count( $parsedWidthParam ) ) {
1024 $mto = $file->transform( $parsedWidthParam );
1026 if ( $mto && !$mto->isError() ) {
1032 return [ $url,
'nowiki' =>
true ];
1051 $tagName = strtolower( trim( $frame->expand( array_shift(
$args ) ) ) );
1054 $inner = $frame->expand( array_shift(
$args ) );
1061 $bits = $arg->splitArg();
1062 if ( strval( $bits[
'index'] ) ===
'' ) {
1064 $value = trim( $frame->expand( $bits[
'value'] ) );
1065 if ( preg_match(
'/^(?:["\'](.+)["\']|""|\'\')$/s',
$value, $m ) ) {
1066 $value = isset( $m[1] ) ? $m[1] :
'';
1072 $stripList =
$parser->getStripList();
1073 if ( !in_array( $tagName, $stripList ) ) {
1077 $attrText .=
' ' . htmlspecialchars(
$name ) .
'="' . htmlspecialchars(
$value ) .
'"';
1079 if ( $inner ===
null ) {
1080 return "<$tagName$attrText/>";
1082 return "<$tagName$attrText>$inner</$tagName>";
1088 'attributes' => $attributes,
1089 'close' =>
"</$tagName>",
1107 if ( is_null(
$title ) ) {
1114 $parserRev =
$parser->getRevisionObject();
1115 if ( $parserRev && $parserRev->isCurrent() ) {
1117 $parser->getOutput()->setFlag(
'vary-revision' );
1118 wfDebug( __METHOD__ .
": use current revision from parser, setting vary-revision...\n" );
1124 $page =
$title->getPrefixedDBkey();
1126 if ( !(
$parser->currentRevisionCache &&
$parser->currentRevisionCache->has( $page ) )
1127 && !
$parser->incrementExpensiveFunctionCount() ) {
1131 $pageID =
$rev ?
$rev->getPage() : 0;
1135 $parser->getOutput()->addTemplate(
$title, $pageID, $revID );
1149 if ( is_null(
$t ) ) {
1153 if (
$t->equals(
$parser->getTitle() ) ) {
1155 return $t->getArticleID();
1159 if ( !
$t->canExist() ||
$t->isExternal() ) {
1165 $pdbk =
$t->getPrefixedDBkey();
1166 $id = $linkCache->getGoodLinkID( $pdbk );
1171 if ( $linkCache->isBadLink( $pdbk ) ) {
1177 if (
$parser->incrementExpensiveFunctionCount() ) {
1178 $id =
$t->getArticleID();
1194 if ( is_null(
$t ) ) {
1211 if ( is_null(
$t ) ) {
1228 if ( is_null(
$t ) ) {
1245 if ( is_null(
$t ) ) {
1262 if ( is_null(
$t ) ) {
1279 if ( is_null(
$t ) ) {
1296 if ( is_null(
$t ) ) {
1313 if ( is_null(
$t ) ) {
1318 return $rev ?
$rev->getUserText() :
'';
1335 if ( !( $titleObject instanceof
Title ) ) {
1336 $titleObject =
$parser->mTitle;
1338 if ( $titleObject->areCascadeProtectionSourcesLoaded()
1339 ||
$parser->incrementExpensiveFunctionCount()
1342 $sources = $titleObject->getCascadeProtectionSources();
1343 foreach ( $sources[0]
as $sourceTitle ) {
1344 $names[] = $sourceTitle->getPrefixedText();
1346 return implode( $names,
'|' );
static getDefaultOption( $opt)
Get a given default option value.
static protectionexpiry( $parser, $type='', $title='')
Returns the requested protection expiry for the current page.
Class for handling an array of magic words.
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 account $user
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
static displaytitle( $parser, $text='', $uarg='')
Override the title of the page when viewed, provided we've been given a title which will normalise to...
wfBCP47( $code)
Get the normalised IETF language tag See unit test for examples.
processing should stop and the error should be shown to the user * false
static matchAgainstMagicword( $magicword, $value)
Matches the given value against the value of given magic word.
static pad( $parser, $string, $length, $padding='0', $direction=STR_PAD_RIGHT)
Unicode-safe str_pad with the restriction that $length is forced to be <= 500.
if(!isset( $args[0])) $lang
static numberofactiveusers( $parser, $raw=null)
static pageid( $parser, $title=null)
Get the pageid of a specified page.
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 text
static talkpagename( $parser, $title=null)
static rootpagename( $parser, $title=null)
static tagObj( $parser, $frame, $args)
Parser function to extension tag adaptor.
static pagesize( $parser, $page='', $raw=null)
Return the size of the given page, or 0 if it's nonexistent.
static rootpagenamee( $parser, $title=null)
static protectionlevel( $parser, $type='', $title='')
Returns the requested protection level for the current page.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
wfUrlencode( $s)
We want some things to be included as literal characters in our title URLs for prettiness,...
static numberingroup( $group)
Find the number of users in a given user group.
static & get( $id)
Factory: creates an object representing an ID.
static nse( $parser, $part1='')
static revisionmonth1( $parser, $title=null)
Get the month from the last revision of a specified page.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Allows to change the fields on the form that will be generated $name
static namespacenumber( $parser, $title=null)
static talkspace( $parser, $title=null)
static grammar( $parser, $case='', $word='')
static formatRaw( $num, $raw, $language)
Formats a number according to a language.
static defaultsort( $parser, $text, $uarg='')
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
static revisionday( $parser, $title=null)
Get the day from the last revision of a specified page.
static pagename( $parser, $title=null)
Functions to get and normalize pagenames, corresponding to the magic words of the same names.
static revisionid( $parser, $title=null)
Get the id from the last revision of a specified page.
static talkspacee( $parser, $title=null)
to move a page</td >< td > &*You are moving the page across *A non empty talk page already exists under the new or *You uncheck the box below In those you will have to move or merge the page manually if desired</td >< td > be sure to &You are responsible for making sure that links continue to point where they are supposed to go Note that the page will &a page at the new title
static localurle( $parser, $s='', $arg=null)
static getCachedRevisionObject( $parser, $title=null)
Fetched the current revision of the given title and return this.
namespace and then decline to actually register it file or subcat img or subcat $title
static plural( $parser, $text='')
static numberofpages( $parser, $raw=null)
static basepagenamee( $parser, $title=null)
static revisionyear( $parser, $title=null)
Get the year from the last revision of a specified page.
static mwnamespace( $parser, $title=null)
Given a title, return the namespace name that would be given by the corresponding magic word Note: fu...
static fullurle( $parser, $s='', $arg=null)
do that in ParserLimitReportFormat instead $parser
static numberofedits( $parser, $raw=null)
static revisionday2( $parser, $title=null)
Get the day with leading zeros from the last revision of a specified page.
static fullurl( $parser, $s='', $arg=null)
static ucfirst( $parser, $s='')
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
when a variable name is used in a it is silently declared as a new masking the global
static fullpagenamee( $parser, $title=null)
magicword txt Magic Words are some phrases used in the wikitext They are used for two that looks like templates but that don t accept any parameter *Parser functions(like {{fullurl:...}}, {{#special:...}}) $magicWords['en']
static gender( $parser, $username)
static pagenamee( $parser, $title=null)
static ns( $parser, $part1='')
static subjectpagename( $parser, $title=null)
static language( $parser, $code='', $inLanguage='')
Gives language names.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
static revisiontimestamp( $parser, $title=null)
Get the timestamp from the last revision of a specified page.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
static bidi( $parser, $text='')
static newFromTitle( $title)
Factory function.
static urlencode( $parser, $s='', $arg=null)
urlencodes a string according to one of three patterns: (T24474)
static formatDate( $parser, $date, $defaultPref=null)
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
static fullpagename( $parser, $title=null)
static padleft( $parser, $string='', $length=0, $padding='0')
static padright( $parser, $string='', $length=0, $padding='0')
static newFromURL( $url)
THIS IS NOT THE FUNCTION YOU WANT.
static revisionmonth( $parser, $title=null)
Get the month with leading zeros from the last revision of a specified page.
static resolveAlias( $alias)
Given a special page name with a possible subpage, return an array where the first element is the spe...
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
static subjectspacee( $parser, $title=null)
static speciale( $parser, $text)
static fetchLanguageName( $code, $inLanguage=null, $include='all')
static urlFunction( $func, $s='', $arg=null)
static lc( $parser, $s='')
static subjectspace( $parser, $title=null)
static subjectpagenamee( $parser, $title=null)
if the prop value should be in the metadata multi language array format
wfFindFile( $title, $options=[])
Find a file.
Represents a title within MediaWiki.
static numberofadmins( $parser, $raw=null)
static cascadingsources( $parser, $title='')
Returns the sources of any cascading protection acting on a specified page.
static anchorencode( $parser, $text)
static uc( $parser, $s='')
static special( $parser, $text)
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
static subpagenamee( $parser, $title=null)
static filepath( $parser, $name='', $argA='', $argB='')
Usage {{filepath|300}}, {{filepath|nowiki}}, {{filepath|nowiki|300}} or {{filepath|300|nowiki}} or {{...
static namespacee( $parser, $title=null)
static numberofarticles( $parser, $raw=null)
static singleton()
Get an instance of this class.
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
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
Various core parser functions, registered in Parser::firstCallInit()
static subpagename( $parser, $title=null)
static revisionuser( $parser, $title=null)
Get the user from the last revision of a specified page.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
static numberingroup( $parser, $name='', $raw=null)
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<
static numberofusers( $parser, $raw=null)
static pagesincategory( $parser, $name='', $arg1=null, $arg2=null)
Return the number of pages, files or subcats in the given category, or 0 if it's nonexistent.
$wgAllowSlowParserFunctions
Enable slow parser functions.
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 MediaWikiServices
static numberoffiles( $parser, $raw=null)
static pagesinnamespace( $parser, $namespace=0, $raw=null)
$wgRestrictDisplayTitle
For consistency, restrict DISPLAYTITLE to text that normalizes to the same canonical DB key.
$wgAllowDisplayTitle
Allow DISPLAYTITLE to change title display.
static formatnum( $parser, $num='', $arg=null)
static lcfirst( $parser, $s='')
static canonicalurl( $parser, $s='', $arg=null)
this hook is for auditing only or null if authentication failed before getting that far $username
static getLocalInstance( $ts=false)
Get a timestamp instance in the server local timezone ($wgLocaltimezone)
static intFunction( $parser, $part1='')
static basepagename( $parser, $title=null)
static canonicalurle( $parser, $s='', $arg=null)
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
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 content language as $wgContLang
static localurl( $parser, $s='', $arg=null)
static talkpagenamee( $parser, $title=null)