42 parent::__construct(
'Version' );
55 $out->allowClickjacking();
58 $parts = explode(
'/', (
string)$par );
60 if ( isset( $parts[1] ) ) {
61 $extName = str_replace(
'_',
' ', $parts[1] );
64 foreach ( $extensions as
$ext ) {
65 if ( isset(
$ext[
'name'] ) && (
$ext[
'name'] === $extName ) ) {
72 $out->setStatusCode( 404 );
75 $extName =
'MediaWiki';
79 switch ( strtolower( $parts[0] ) ) {
81 $out->addModuleStyles(
'mediawiki.special.version' );
83 $wikiText =
'{{int:version-credits-not-found}}';
84 if ( $extName ===
'MediaWiki' ) {
85 $wikiText = file_get_contents(
$IP .
'/CREDITS' );
87 $wikiText = str_replace(
88 [
'<!-- BEGIN CONTRIBUTOR LIST -->',
'<!-- END CONTRIBUTOR LIST -->' ],
89 [
'<div class="mw-version-credits">',
'</div>' ],
91 } elseif ( ( $extNode !==
null ) && isset( $extNode[
'path'] ) ) {
94 $wikiText = file_get_contents( $file );
95 if ( substr( $file, -4 ) ===
'.txt' ) {
96 $wikiText = Html::element(
108 $out->setPageTitle( $this->
msg(
'version-credits-title', $extName ) );
109 $out->addWikiText( $wikiText );
113 $wikiText =
'{{int:version-license-not-found}}';
114 if ( $extName ===
'MediaWiki' ) {
115 $wikiText = file_get_contents(
$IP .
'/COPYING' );
116 } elseif ( ( $extNode !==
null ) && isset( $extNode[
'path'] ) ) {
119 $wikiText = file_get_contents( $file );
120 $wikiText = Html::element(
131 $out->setPageTitle( $this->
msg(
'version-license-title', $extName ) );
132 $out->addWikiText( $wikiText );
136 $out->addModuleStyles(
'mediawiki.special.version' );
164 [
'id' =>
'mw-version-license' ],
169 $ret .=
'<div class="plainlinks">';
172 " .
wfMessage(
'version-license-info' )->text();
175 return str_replace(
"\t\t",
'',
$ret ) .
"\n";
186 if ( defined(
'MEDIAWIKI_INSTALL' ) ) {
187 $othersLink =
'[https://www.mediawiki.org/wiki/Special:Version/Credits ' .
188 wfMessage(
'version-poweredby-others' )->text() .
']';
190 $othersLink =
'[[Special:Version/Credits|' .
191 wfMessage(
'version-poweredby-others' )->text() .
']]';
194 $translatorsLink =
'[https://translatewiki.net/wiki/Translating:MediaWiki/Credits ' .
195 wfMessage(
'version-poweredby-translators' )->text() .
']';
198 'Magnus Manske',
'Brion Vibber',
'Lee Daniel Crocker',
199 'Tim Starling',
'Erik Möller',
'Gabriel Wicke',
'Ævar Arnfjörð Bjarmason',
200 'Niklas Laxström',
'Domas Mituzas',
'Rob Church',
'Yuri Astrakhan',
201 'Aryeh Gregor',
'Aaron Schulz',
'Andrew Garrett',
'Raimond Spekking',
202 'Alexandre Emsenhuber',
'Siebrand Mazeland',
'Chad Horohoe',
203 'Roan Kattouw',
'Trevor Parscal',
'Bryan Tong Minh',
'Sam Reed',
204 'Victor Vasiliev',
'Rotem Liss',
'Platonides',
'Antoine Musso',
205 'Timo Tijhof',
'Daniel Kinzler',
'Jeroen De Dauw',
'Brad Jorsch',
206 'Bartosz Dziewoński',
'Ed Sanders',
'Moriel Schottlender',
207 $othersLink, $translatorsLink
211 $wgLang->listToText( $authorList ) )->text();
228 $software[
'[http://hhvm.com/ HHVM]'] = HHVM_VERSION .
" (" . PHP_SAPI .
")";
230 $software[
'[https://php.net/ PHP]'] = PHP_VERSION .
" (" . PHP_SAPI .
")";
232 $software[
$dbr->getSoftwareLink()] =
$dbr->getServerInfo();
239 Hooks::run(
'SoftwareInfo', [ &$software ] );
243 [
'id' =>
'mw-version-software' ],
246 Xml::openElement(
'table', [
'class' =>
'wikitable plainlinks',
'id' =>
'sv-software' ] ) .
248 <th>" .
wfMessage(
'version-software-product' )->text() .
"</th>
249 <th>" .
wfMessage(
'version-software-version' )->text() .
"</th>
252 foreach ( $software as $name => $version ) {
254 <td>" . $name .
"</td>
255 <td dir=\"ltr\">" . $version .
"</td>
259 return $out . Xml::closeElement(
'table' );
275 } elseif (
$flags ===
'nodb' ) {
276 $shortSha1 = substr( $gitInfo, 0, 7 );
277 $version =
"$wgVersion ($shortSha1)";
279 $shortSha1 = substr( $gitInfo, 0, 7 );
281 if (
$lang !==
null ) {
282 $msg->inLanguage(
$lang );
284 $shortSha1 = $msg->params( $shortSha1 )->escaped();
285 $version =
"$wgVersion $shortSha1";
317 if ( Hooks::run(
'SpecialVersionVersionUrl', [
$wgVersion, &$versionUrl ] ) ) {
319 preg_match(
"/^(\d+\.\d+)/",
$wgVersion, $versionParts );
320 $versionUrl =
"https://www.mediawiki.org/wiki/MediaWiki_{$versionParts[1]}";
323 return "[$versionUrl $wgVersion]";
335 $headSHA1 = $gitInfo->getHeadSHA1();
340 $shortSHA1 =
'(' . substr( $headSHA1, 0, 7 ) .
')';
342 $gitHeadUrl = $gitInfo->getHeadViewUrl();
343 if ( $gitHeadUrl !==
false ) {
344 $shortSHA1 =
"[$gitHeadUrl $shortSHA1]";
347 $gitHeadCommitDate = $gitInfo->getHeadCommitDate();
348 if ( $gitHeadCommitDate ) {
349 $shortSHA1 .= Html::element(
'br' ) .
$wgLang->timeanddate( $gitHeadCommitDate,
true );
366 if ( self::$extensionTypes ===
false ) {
367 self::$extensionTypes = [
368 'specialpage' =>
wfMessage(
'version-specialpages' )->text(),
369 'parserhook' =>
wfMessage(
'version-parserhooks' )->text(),
370 'variable' =>
wfMessage(
'version-variables' )->text(),
371 'media' =>
wfMessage(
'version-mediahandlers' )->text(),
372 'antispam' =>
wfMessage(
'version-antispam' )->text(),
373 'skin' =>
wfMessage(
'version-skins' )->text(),
374 'api' =>
wfMessage(
'version-api' )->text(),
375 'other' =>
wfMessage(
'version-other' )->text(),
378 Hooks::run(
'ExtensionTypes', [ &self::$extensionTypes ] );
396 return isset( $types[
$type] ) ? $types[
$type] : $types[
'other'];
419 [
'id' =>
'mw-version-ext' ],
420 $this->
msg(
'version-extensions' )->
text()
422 Xml::openElement(
'table', [
'class' =>
'wikitable plainlinks',
'id' =>
'sv-ext' ] );
436 $this->firstExtOpened =
false;
440 if (
$type !==
'other' &&
$type !==
'skin' ) {
448 $out .= Xml::closeElement(
'table' );
466 [
'id' =>
'mw-version-skin' ],
467 $this->
msg(
'version-skins' )->
text()
469 Xml::openElement(
'table', [
'class' =>
'wikitable plainlinks',
'id' =>
'sv-skin' ] );
471 $this->firstExtOpened =
false;
474 $out .= Xml::closeElement(
'table' );
486 $path =
"$IP/vendor/composer/installed.json";
487 if ( !file_exists( $path ) ) {
492 $out = Html::element(
494 [
'id' =>
'mw-version-libraries' ],
495 $this->
msg(
'version-libraries' )->
text()
497 $out .= Html::openElement(
499 [
'class' =>
'wikitable plainlinks',
'id' =>
'sv-libraries' ]
501 $out .= Html::openElement(
'tr' )
502 . Html::element(
'th', [], $this->
msg(
'version-libraries-library' )->
text() )
503 . Html::element(
'th', [], $this->
msg(
'version-libraries-version' )->
text() )
504 . Html::element(
'th', [], $this->
msg(
'version-libraries-license' )->
text() )
505 . Html::element(
'th', [], $this->
msg(
'version-libraries-description' )->
text() )
506 . Html::element(
'th', [], $this->
msg(
'version-libraries-authors' )->
text() )
507 . Html::closeElement(
'tr' );
509 foreach ( $installed->getInstalledDependencies() as $name => $info ) {
510 if ( strpos( $info[
'type'],
'mediawiki-' ) === 0 ) {
515 $authors = array_map(
function ( $arr ) {
517 if ( isset( $arr[
'homepage'] ) ) {
518 return "[{$arr['homepage']} {$arr['name']}]";
521 }, $info[
'authors'] );
522 $authors = $this->
listAuthors( $authors,
false,
"$IP/vendor/$name" );
527 $out .= Html::openElement(
'tr' )
532 "https://packagist.org/packages/$name", $name,
534 [
'class' =>
'mw-version-library-name' ]
537 . Html::element(
'td', [
'dir' =>
'auto' ], $info[
'version'] )
538 . Html::element(
'td', [
'dir' =>
'auto' ], $this->
listToText( $info[
'licenses'] ) )
539 . Html::element(
'td', [
'lang' =>
'en',
'dir' =>
'ltr' ], $info[
'description'] )
540 . Html::rawElement(
'td', [], $authors )
541 . Html::closeElement(
'tr' );
543 $out .= Html::closeElement(
'table' );
558 if ( count( $tags ) ) {
559 $out = Html::rawElement(
562 'class' =>
'mw-headline plainlinks',
563 'id' =>
'mw-version-parser-extensiontags',
566 'https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Tag_extensions',
567 $this->
msg(
'version-parser-extensiontags' )->parse(),
572 array_walk( $tags,
function ( &
$value ) {
578 'style' =>
'white-space: nowrap;',
601 if ( count( $fhooks ) ) {
602 $out = Html::rawElement(
605 'class' =>
'mw-headline plainlinks',
606 'id' =>
'mw-version-parser-function-hooks',
609 'https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Parser_functions',
610 $this->
msg(
'version-parser-function-hooks' )->parse(),
658 if ( $a[
'name'] === $b[
'name'] ) {
690 if ( isset( $extension[
'namemsg'] ) ) {
692 $extensionName = $this->
msg( $extension[
'namemsg'] )->text();
693 } elseif ( isset( $extension[
'name'] ) ) {
695 $extensionName = $extension[
'name'];
697 $extensionName = $this->
msg(
'version-no-ext-name' )->text();
700 if ( isset( $extension[
'url'] ) ) {
706 [
'class' =>
'mw-version-ext-name' ]
709 $extensionNameLink = $extensionName;
715 $canonicalVersion =
'–';
716 $extensionPath =
null;
721 if ( isset( $extension[
'version'] ) ) {
722 $canonicalVersion =
$out->parseInline( $extension[
'version'] );
725 if ( isset( $extension[
'path'] ) ) {
727 $extensionPath = dirname( $extension[
'path'] );
728 if ( $this->coreId ==
'' ) {
729 wfDebug(
'Looking up core head id' );
731 if ( $coreHeadSHA1 ) {
732 $this->coreId = $coreHeadSHA1;
736 $memcKey =
$cache->makeKey(
737 'specialversion-ext-version-text', $extension[
'path'], $this->coreId
739 list( $vcsVersion, $vcsLink, $vcsDate ) =
$cache->get( $memcKey );
741 if ( !$vcsVersion ) {
742 wfDebug(
"Getting VCS info for extension {$extension['name']}" );
743 $gitInfo =
new GitInfo( $extensionPath );
744 $vcsVersion = $gitInfo->getHeadSHA1();
745 if ( $vcsVersion !==
false ) {
746 $vcsVersion = substr( $vcsVersion, 0, 7 );
747 $vcsLink = $gitInfo->getHeadViewUrl();
748 $vcsDate = $gitInfo->getHeadCommitDate();
750 $cache->set( $memcKey, [ $vcsVersion, $vcsLink, $vcsDate ], 60 * 60 * 24 );
752 wfDebug(
"Pulled VCS info for extension {$extension['name']} from cache" );
756 $versionString = Html::rawElement(
758 [
'class' =>
'mw-version-ext-version' ],
766 $this->
msg(
'version-version', $vcsVersion ),
769 [
'class' =>
'mw-version-ext-vcs-version' ]
772 $vcsVerString = Html::element(
'span',
773 [
'class' =>
'mw-version-ext-vcs-version' ],
777 $versionString .=
" {$vcsVerString}";
780 $vcsTimeString = Html::element(
'span',
781 [
'class' =>
'mw-version-ext-vcs-timestamp' ],
782 $this->
getLanguage()->timeanddate( $vcsDate,
true )
784 $versionString .=
" {$vcsTimeString}";
786 $versionString = Html::rawElement(
'span',
787 [
'class' =>
'mw-version-ext-meta-version' ],
795 if ( isset( $extension[
'name'] ) ) {
797 if ( isset( $extension[
'license-name'] ) ) {
798 $licenseName =
new HtmlArmor(
$out->parseInline( $extension[
'license-name'] ) );
800 $licenseName = $this->
msg(
'version-ext-license' )->text();
802 if ( $licenseName !==
null ) {
807 'class' =>
'mw-version-ext-license',
817 if ( isset( $extension[
'descriptionmsg'] ) ) {
819 $descriptionMsg = $extension[
'descriptionmsg'];
821 if ( is_array( $descriptionMsg ) ) {
822 $descriptionMsgKey = $descriptionMsg[0];
823 array_shift( $descriptionMsg );
824 array_map(
"htmlspecialchars", $descriptionMsg );
825 $description = $this->
msg( $descriptionMsgKey, $descriptionMsg )->text();
827 $description = $this->
msg( $descriptionMsg )->text();
829 } elseif ( isset( $extension[
'description'] ) ) {
831 $description = $extension[
'description'];
835 $description =
$out->parseInline( $description );
838 $authors = isset( $extension[
'author'] ) ? $extension[
'author'] : [];
839 $authors = $this->
listAuthors( $authors, $extension[
'name'], $extensionPath );
842 $html = Html::openElement(
'tr', [
843 'class' =>
'mw-version-ext',
844 'id' => Sanitizer::escapeIdForAttribute(
'mw-version-ext-' .
$type .
'-' . $extension[
'name'] )
848 $html .= Html::rawElement(
'td', [], $extensionNameLink );
849 $html .= Html::rawElement(
'td', [], $versionString );
850 $html .= Html::rawElement(
'td', [], $licenseLink );
851 $html .= Html::rawElement(
'td', [
'class' =>
'mw-version-ext-description' ], $description );
852 $html .= Html::rawElement(
'td', [
'class' =>
'mw-version-ext-authors' ], $authors );
854 $html .= Html::closeElement(
'tr' );
872 $ret[] =
'== {{int:version-hooks}} ==';
873 $ret[] = Html::openElement(
'table', [
'class' =>
'wikitable',
'id' =>
'sv-hooks' ] );
874 $ret[] = Html::openElement(
'tr' );
875 $ret[] = Html::element(
'th', [], $this->
msg(
'version-hook-name' )->
text() );
876 $ret[] = Html::element(
'th', [], $this->
msg(
'version-hook-subscribedby' )->
text() );
877 $ret[] = Html::closeElement(
'tr' );
879 foreach ( $myWgHooks as $hook => $hooks ) {
880 $ret[] = Html::openElement(
'tr' );
881 $ret[] = Html::element(
'td', [], $hook );
883 $ret[] = Html::closeElement(
'tr' );
886 $ret[] = Html::closeElement(
'table' );
888 return implode(
"\n",
$ret );
897 $opt = [
'colspan' => 5 ];
898 if ( $this->firstExtOpened ) {
900 $out .= Html::rawElement(
'tr', [
'class' =>
'sv-space' ],
901 Html::element(
'td',
$opt )
904 $this->firstExtOpened =
true;
907 $opt[
'id'] =
"sv-$name";
910 if ( $text !==
null ) {
911 $out .= Html::rawElement(
'tr', [],
912 Html::element(
'th',
$opt, $text )
916 $firstHeadingMsg = ( $name ===
'credits-skin' )
917 ?
'version-skin-colheader-name'
918 :
'version-ext-colheader-name';
919 $out .= Html::openElement(
'tr' );
920 $out .= Html::element(
'th', [
'class' =>
'mw-version-ext-col-label' ],
921 $this->
msg( $firstHeadingMsg )->
text() );
922 $out .= Html::element(
'th', [
'class' =>
'mw-version-ext-col-label' ],
923 $this->
msg(
'version-ext-colheader-version' )->
text() );
924 $out .= Html::element(
'th', [
'class' =>
'mw-version-ext-col-label' ],
925 $this->
msg(
'version-ext-colheader-license' )->
text() );
926 $out .= Html::element(
'th', [
'class' =>
'mw-version-ext-col-label' ],
927 $this->
msg(
'version-ext-colheader-description' )->
text() );
928 $out .= Html::element(
'th', [
'class' =>
'mw-version-ext-col-label' ],
929 $this->
msg(
'version-ext-colheader-credits' )->
text() );
930 $out .= Html::closeElement(
'tr' );
941 $ip = str_replace(
'--',
' - ', htmlspecialchars( $this->
getRequest()->getIP() ) );
943 return "<!-- visited from $ip -->\n<span style='display:none'>visited from $ip</span>";
972 foreach ( (array)$authors as $item ) {
973 if ( $item ==
'...' ) {
979 $this->
msg(
'version-poweredby-others' )->
text()
982 $text = $this->
msg(
'version-poweredby-others' )->escaped();
985 } elseif ( substr( $item, -5 ) ==
' ...]' ) {
987 $list[] = $this->
getOutput()->parseInline(
988 substr( $item, 0, -4 ) . $this->
msg(
'version-poweredby-others' )->
text() .
"]"
991 $list[] = $this->
getOutput()->parseInline( $item );
998 $this->
msg(
'version-poweredby-others' )->
text()
1021 foreach ( scandir( $extDir ) as $file ) {
1022 $fullPath = $extDir . DIRECTORY_SEPARATOR . $file;
1023 if ( preg_match(
'/^((AUTHORS)|(CREDITS))(\.txt|\.wiki|\.mediawiki)?$/', $file ) &&
1024 is_readable( $fullPath ) &&
1025 is_file( $fullPath )
1050 foreach ( scandir( $extDir ) as $file ) {
1051 $fullPath = $extDir . DIRECTORY_SEPARATOR . $file;
1052 if ( preg_match(
'/^((COPYING)|(LICENSE))(\.txt)?$/', $file ) &&
1053 is_readable( $fullPath ) &&
1054 is_file( $fullPath )
1072 if ( !count( $list ) ) {
1080 ->listToText( array_map( [ __CLASS__,
'arrayToString' ], $list ) );
1092 if ( is_array( $list ) && count( $list ) == 1 ) {
1095 if ( $list instanceof Closure ) {
1098 } elseif ( is_object( $list ) ) {
1099 $class =
wfMessage(
'parentheses' )->params( get_class( $list ) )->escaped();
1102 } elseif ( !is_array( $list ) ) {
1105 if ( is_object( $list[0] ) ) {
1106 $class = get_class( $list[0] );
1111 return wfMessage(
'parentheses' )->params(
"$class, {$list[1]}" )->escaped();
1122 return $repo->getHeadSHA1();
1131 return $repo->getCurrentBranch();
1143 'version-entrypoints-scriptpath' => $scriptPath,
1144 'version-entrypoints-index-php' =>
wfScript(
'index' ),
1145 'version-entrypoints-api-php' =>
wfScript(
'api' ),
1146 'version-entrypoints-load-php' =>
wfScript(
'load' ),
1151 'dir' => $language->getDir(),
1152 'lang' => $language->getHtmlCode()
1154 $out = Html::element(
1156 [
'id' =>
'mw-version-entrypoints' ],
1157 $this->
msg(
'version-entrypoints' )->
text()
1159 Html::openElement(
'table',
1161 'class' =>
'wikitable plainlinks',
1162 'id' =>
'mw-version-entrypoints-table',
1167 Html::openElement(
'tr' ) .
1171 $this->
msg(
'version-entrypoints-header-entrypoint' )->
text()
1176 $this->
msg(
'version-entrypoints-header-url' )->
text()
1178 Html::closeElement(
'tr' );
1180 foreach ( $entryPoints as $message =>
$value ) {
1182 $out .= Html::openElement(
'tr' ) .
1185 Html::rawElement(
'td', [], $this->
msg( $message )->
text() ) .
1186 Html::rawElement(
'td', [], Html::rawElement(
'code', [],
"[$url $value]" ) ) .
1187 Html::closeElement(
'tr' );
1190 $out .= Html::closeElement(
'table' );
$wgVersion
MediaWiki version number.
$wgScriptPath
The path we should point to.
$wgSpecialVersionShowHooks
Show the contents of $wgHooks in Special:Version.
$wgExtensionCredits
An array of information about installed extensions keyed by their type.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
wfGetCache( $cacheType)
Get a specific cache object.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
wfIsHHVM()
Check if we are running under HHVM.
Reads an installed.json file and provides accessors to get what is installed.
Marks HTML that shouldn't be escaped.
static getICUVersion()
Return the version of ICU library used by PHP's intl extension, or false when the extension is not in...
static makeExternalLink( $url, $text, $escape=true, $linktype='', $attribs=[], $title=null)
Make an external link.
static getLocalInstance( $ts=false)
Get a timestamp instance in the server local timezone ($wgLocaltimezone)
Parent class for all special pages.
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
msg( $key)
Wrapper around wfMessage that sets the current context.
getRequest()
Get the WebRequest being used for this instance.
getPageTitle( $subpage=false)
Get a self-referential title object.
getLanguage()
Shortcut to get user's language.
MediaWiki Linker LinkRenderer null $linkRenderer
Give information about the version of MediaWiki, PHP, the DB and extensions.
static getVersionLinked()
Return a wikitext-formatted string of the MediaWiki version with a link to the Git SHA1 of head if av...
static getExtensionTypeName( $type)
Returns the internationalized name for an extension type.
IPInfo()
Get information about client's IP address.
static getGitHeadSha1( $dir)
getParserFunctionHooks()
Obtains a list of installed parser function hooks and the associated H2 header.
listToText( $list, $sort=true)
Convert an array of items into a list for display.
getEntryPointInfo()
Get the list of entry points and their URLs.
getWgHooks()
Generate wikitext showing hooks in $wgHooks.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
listAuthors( $authors, $extName, $extDir)
Return a formatted unsorted list of authors.
$coreId
Stores the current rev id/SHA hash of MediaWiki core.
static softwareInformation()
Returns wiki text showing the third party software versions (apache, php, mysql).
getExtensionCategory( $type, $message)
Creates and returns the HTML for a single extension category.
static getVersionLinkedGit()
static getExtensionTypes()
Returns an array with the base extension types.
openExtType( $text=null, $name=null)
getCreditsForExtension( $type, array $extension)
Creates and formats a version line for a single extension.
static getwgVersionLinked()
static getExtLicenseFileName( $extDir)
Obtains the full path of an extensions copying or license file if one exists.
static getMediaWikiCredits()
Returns wiki text showing the license information.
getParserTags()
Obtains a list of installed parser tags and the associated H2 header.
static getExtAuthorsFileName( $extDir)
Obtains the full path of an extensions authors or credits file if one exists.
getSkinCredits()
Generate wikitext showing the name, URL, author and description of each skin.
getExtensionCredits()
Generate wikitext showing the name, URL, author and description of each extension.
compare( $a, $b)
Callback to sort extensions by type.
static getVersion( $flags='', $lang=null)
Return a string of the MediaWiki version with Git revision if available.
static getCopyrightAndAuthorList()
Get the "MediaWiki is copyright 2001-20xx by lots of cool guys" text.
getExternalLibraries()
Generate an HTML table for external libraries that are installed.
static getGitCurrentBranch( $dir)
static arrayToString( $list)
Convert an array or object to a string for display.
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
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
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
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 "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
it s the revision text itself In either if gzip is the revision text is gzipped $flags
if the prop value should be in the metadata multi language array format
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
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 $out
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 an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
$wgHooks['ArticleShow'][]
if(!isset( $args[0])) $lang