Go to the documentation of this file.
73 $revid = $revision ? $revision->getId() :
null;
75 if ( $revid !==
null ) {
76 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
91 $oldid = $this->
page->getOldID();
93 $revision = $this->
page->getRevisionFetched();
96 if ( $revision ===
null ) {
97 return $this->
msg(
'missing-revision', $oldid )->parse();
101 if ( !$revision->isCurrent() ) {
102 return $this->
msg(
'pageinfo-not-current' )->plain();
107 if ( !$this->
msg(
'pageinfo-header' )->isDisabled() ) {
108 $content .= $this->
msg(
'pageinfo-header' )->parse();
112 $content .= Html::element(
'style', [],
113 '.mw-hiddenCategoriesExplanation { display: none; }' ) .
"\n";
116 $content .= Html::element(
'style', [],
117 '.mw-templatesUsedExplanation { display: none; }' ) .
"\n";
126 foreach ( $pageInfo
as $header => $infoTable ) {
131 $this->
msg(
"pageinfo-${header}" )->
text(),
132 "mw-pageinfo-${header}"
136 foreach ( $infoTable
as $infoRow ) {
137 if ( $infoRow[0] ==
"below" ) {
138 $below = $infoRow[1] .
"\n";
141 $name = ( $infoRow[0] instanceof Message ) ? $infoRow[0]->escaped() : $infoRow[0];
142 $value = ( $infoRow[1] instanceof Message ) ? $infoRow[1]->escaped() : $infoRow[1];
143 $id = ( $infoRow[0] instanceof Message ) ? $infoRow[0]->getKey() :
null;
150 if ( !$this->
msg(
'pageinfo-footer' )->isDisabled() ) {
151 $content .= $this->
msg(
'pageinfo-footer' )->parse();
165 $spanAttribs = [
'class' =>
'mw-headline',
'id' => Sanitizer::escapeIdForAttribute(
$header ) ];
166 $h2Attribs = [
'id' => Sanitizer::escapeIdForAttribute( $canonicalId ) ];
168 return Html::rawElement(
'h2', $h2Attribs, Html::element(
'span', $spanAttribs,
$header ) );
184 $id ===
null ? [] : [
'id' =>
'mw-' . $id ],
185 Html::rawElement(
'td', [
'style' =>
'vertical-align: top;' ],
$name ) .
186 Html::rawElement(
'td', [],
$value )
198 return $content . Html::rawElement(
'table', [
'class' =>
'wikitable mw-page-info' ],
215 $services = MediaWikiServices::getInstance();
220 $id =
$title->getArticleID();
221 $config = $this->context->getConfig();
227 $pageProperties = $props[$id] ?? [];
231 $pageInfo[
'header-basic'] = [];
234 $displayTitle = $pageProperties[
'displaytitle'] ??
$title->getPrefixedText();
236 $pageInfo[
'header-basic'][] = [
237 $this->
msg(
'pageinfo-display-title' ), $displayTitle
241 $redirectTarget = $this->
page->getRedirectTarget();
242 if ( $redirectTarget !==
null ) {
243 $pageInfo[
'header-basic'][] = [
244 $this->
msg(
'pageinfo-redirectsto' ),
246 $this->
msg(
'word-separator' )->escaped() .
249 $this->msg(
'pageinfo-redirectsto-info' )->text(),
251 [
'action' =>
'info' ]
257 $sortKey = $pageProperties[
'defaultsort'] ??
$title->getCategorySortkey();
259 $sortKey = htmlspecialchars( $sortKey );
260 $pageInfo[
'header-basic'][] = [ $this->
msg(
'pageinfo-default-sort' ), $sortKey ];
263 $pageInfo[
'header-basic'][] = [
264 $this->
msg(
'pageinfo-length' ),
$lang->formatNum(
$title->getLength() )
268 $pageNamespace =
$title->getNsText();
269 if ( $pageNamespace ) {
270 $pageInfo[
'header-basic'][] = [ $this->
msg(
'pageinfo-namespace' ), $pageNamespace ];
274 $pageInfo[
'header-basic'][] = [ $this->
msg(
'pageinfo-article-id' ), $id ];
277 $pageLang =
$title->getPageLanguage()->getCode();
279 $pageLangHtml = $pageLang .
' - ' .
282 if ( $config->get(
'PageLanguageUseDB' )
285 $pageLangHtml .=
' ' . $this->
msg(
'parentheses' )->rawParams(
$linkRenderer->makeLink(
287 $this->
msg(
'pageinfo-language-change' )->text()
291 $pageInfo[
'header-basic'][] = [
292 $this->
msg(
'pageinfo-language' )->escaped(),
299 if ( $config->get(
'ContentHandlerUseDB' )
302 $modelHtml .=
' ' . $this->
msg(
'parentheses' )->rawParams(
$linkRenderer->makeLink(
304 $this->
msg(
'pageinfo-content-model-change' )->text()
308 $pageInfo[
'header-basic'][] = [
309 $this->
msg(
'pageinfo-content-model' ),
315 if ( $pageUser && $pageUser->getId() && !$pageUser->isHidden() ) {
316 $pageInfo[
'header-basic'][] = [
317 $this->
msg(
'pageinfo-user-id' ),
325 if ( isset( $pageProperties[
'noindex'] ) ) {
326 $pOutput->setIndexPolicy(
'noindex' );
328 if ( isset( $pageProperties[
'index'] ) ) {
329 $pOutput->setIndexPolicy(
'index' );
333 $policy = $this->
page->getRobotPolicy(
'view', $pOutput );
334 $pageInfo[
'header-basic'][] = [
336 $this->
msg(
'pageinfo-robot-policy' ),
337 $this->
msg(
"pageinfo-robot-${policy['index']}" )
340 $unwatchedPageThreshold = $config->get(
'UnwatchedPageThreshold' );
342 $user->isAllowed(
'unwatchedpages' ) ||
343 ( $unwatchedPageThreshold !==
false &&
344 $pageCounts[
'watchers'] >= $unwatchedPageThreshold )
347 $pageInfo[
'header-basic'][] = [
348 $this->
msg(
'pageinfo-watchers' ),
349 $lang->formatNum( $pageCounts[
'watchers'] )
352 $config->get(
'ShowUpdatedMarker' ) &&
353 isset( $pageCounts[
'visitingWatchers'] )
355 $minToDisclose = $config->get(
'UnwatchedPageSecret' );
356 if ( $pageCounts[
'visitingWatchers'] > $minToDisclose ||
357 $user->isAllowed(
'unwatchedpages' ) ) {
358 $pageInfo[
'header-basic'][] = [
359 $this->
msg(
'pageinfo-visiting-watchers' ),
360 $lang->formatNum( $pageCounts[
'visitingWatchers'] )
363 $pageInfo[
'header-basic'][] = [
364 $this->
msg(
'pageinfo-visiting-watchers' ),
365 $this->
msg(
'pageinfo-few-visiting-watchers' )
369 } elseif ( $unwatchedPageThreshold !==
false ) {
370 $pageInfo[
'header-basic'][] = [
371 $this->
msg(
'pageinfo-watchers' ),
372 $this->
msg(
'pageinfo-few-watchers' )->numParams( $unwatchedPageThreshold )
378 $pageInfo[
'header-basic'][] = [
381 $this->
msg(
'pageinfo-redirects-name' )->
text(),
389 $this->
msg(
'pageinfo-redirects-value' )
394 if ( $this->
page->isCountable() ) {
395 $pageInfo[
'header-basic'][] = [
396 $this->
msg(
'pageinfo-contentpage' ),
397 $this->
msg(
'pageinfo-contentpage-yes' )
404 'Prefixindex',
$title->getPrefixedText() .
'/' );
405 $pageInfo[
'header-basic'][] = [
408 $this->
msg(
'pageinfo-subpages-name' )->
text()
410 $this->
msg(
'pageinfo-subpages-value' )
412 $pageCounts[
'subpages'][
'total'],
413 $pageCounts[
'subpages'][
'redirects'],
414 $pageCounts[
'subpages'][
'nonredirects'] )
423 $allCount = (int)$category->getPageCount();
424 $subcatCount = (int)$category->getSubcatCount();
425 $fileCount = (int)$category->getFileCount();
426 $pagesCount = $allCount - $subcatCount - $fileCount;
428 $pageInfo[
'category-info'] = [
430 $this->
msg(
'pageinfo-category-total' ),
431 $lang->formatNum( $allCount )
434 $this->
msg(
'pageinfo-category-pages' ),
435 $lang->formatNum( $pagesCount )
438 $this->
msg(
'pageinfo-category-subcats' ),
439 $lang->formatNum( $subcatCount )
442 $this->
msg(
'pageinfo-category-files' ),
443 $lang->formatNum( $fileCount )
451 if ( $fileObj !==
false ) {
453 $output = Wikimedia\base_convert( $fileObj->getSha1(), 36, 16, 40 );
454 $pageInfo[
'header-basic'][] = [
455 $this->
msg(
'pageinfo-file-hash' ),
462 $pageInfo[
'header-restrictions'] = [];
465 if (
$title->isCascadeProtected() ) {
467 $sources =
$title->getCascadeProtectionSources()[0];
469 foreach ( $sources
as $sourceTitle ) {
470 $cascadingFrom .= Html::rawElement(
474 $cascadingFrom = Html::rawElement(
'ul', [], $cascadingFrom );
475 $pageInfo[
'header-restrictions'][] = [
476 $this->
msg(
'pageinfo-protect-cascading-from' ),
482 if (
$title->areRestrictionsCascading() ) {
483 $pageInfo[
'header-restrictions'][] = [
484 $this->
msg(
'pageinfo-protect-cascading' ),
485 $this->
msg(
'pageinfo-protect-cascading-yes' )
490 foreach (
$title->getRestrictionTypes()
as $restrictionType ) {
491 $protectionLevel = implode(
', ',
$title->getRestrictions( $restrictionType ) );
493 if ( $protectionLevel ==
'' ) {
495 $message = $this->
msg(
'protect-default' )->escaped();
499 $message = $this->
msg(
"protect-level-$protectionLevel" );
500 if ( $message->isDisabled() ) {
502 $message = $this->
msg(
"protect-fallback", $protectionLevel )->parse();
504 $message = $message->escaped();
507 $expiry =
$title->getRestrictionExpiry( $restrictionType );
508 $formattedexpiry = $this->
msg(
'parentheses',
509 $lang->formatExpiry( $expiry ) )->escaped();
510 $message .= $this->
msg(
'word-separator' )->escaped() . $formattedexpiry;
514 $pageInfo[
'header-restrictions'][] = [
515 $this->
msg(
"restriction-$restrictionType" ), $message
519 $pageInfo[
'header-restrictions'][] = [
523 $this->
msg(
'pageinfo-view-protect-log' )->
text(),
525 [
'type' =>
'protect',
'page' =>
$title->getPrefixedText() ]
529 if ( !$this->
page->exists() ) {
534 $pageInfo[
'header-edits'] = [];
536 $firstRev = $this->
page->getOldestRevision();
537 $lastRev = $this->
page->getRevision();
542 if ( $firstRevUser !==
'' ) {
544 $batch->addObj( $firstRevUserTitle );
545 $batch->addObj( $firstRevUserTitle->getTalkPage() );
551 if ( $lastRevUser !==
'' ) {
553 $batch->addObj( $lastRevUserTitle );
554 $batch->addObj( $lastRevUserTitle->getTalkPage() );
562 $pageInfo[
'header-edits'][] = [
563 $this->
msg(
'pageinfo-firstuser' ),
568 $pageInfo[
'header-edits'][] = [
569 $this->
msg(
'pageinfo-firsttime' ),
572 $lang->userTimeAndDate( $firstRev->getTimestamp(),
$user ),
574 [
'oldid' => $firstRev->getId() ]
581 $pageInfo[
'header-edits'][] = [
582 $this->
msg(
'pageinfo-lastuser' ),
587 $pageInfo[
'header-edits'][] = [
588 $this->
msg(
'pageinfo-lasttime' ),
591 $lang->userTimeAndDate( $this->page->getTimestamp(),
$user ),
593 [
'oldid' => $this->
page->getLatest() ]
599 $pageInfo[
'header-edits'][] = [
600 $this->
msg(
'pageinfo-edits' ),
$lang->formatNum( $pageCounts[
'edits'] )
604 if ( $pageCounts[
'authors'] > 0 ) {
605 $pageInfo[
'header-edits'][] = [
606 $this->
msg(
'pageinfo-authors' ),
$lang->formatNum( $pageCounts[
'authors'] )
611 $pageInfo[
'header-edits'][] = [
612 $this->
msg(
'pageinfo-recent-edits',
613 $lang->formatDuration( $config->get(
'RCMaxAge' ) ) ),
614 $lang->formatNum( $pageCounts[
'recent_edits'] )
618 $pageInfo[
'header-edits'][] = [
619 $this->
msg(
'pageinfo-recent-authors' ),
620 $lang->formatNum( $pageCounts[
'recent_authors'] )
630 $localizedWords =
$services->getContentLanguage()->getMagicWords();
635 $listItems[] = Html::element(
'li', [], $localizedWords[
$property][1] );
639 $localizedList = Html::rawElement(
'ul', [], implode(
'', $listItems ) );
640 $hiddenCategories = $this->
page->getHiddenCategories();
643 count( $listItems ) > 0 ||
644 count( $hiddenCategories ) > 0 ||
645 $pageCounts[
'transclusion'][
'from'] > 0 ||
646 $pageCounts[
'transclusion'][
'to'] > 0
648 $options = [
'LIMIT' => $config->get(
'PageInfoTransclusionLimit' ) ];
650 if ( $config->get(
'MiserMode' ) ) {
651 $transcludedTargets = [];
657 $pageInfo[
'header-properties'] = [];
660 if (
count( $listItems ) > 0 ) {
661 $pageInfo[
'header-properties'][] = [
662 $this->
msg(
'pageinfo-magic-words' )->numParams(
count( $listItems ) ),
668 if (
count( $hiddenCategories ) > 0 ) {
669 $pageInfo[
'header-properties'][] = [
670 $this->
msg(
'pageinfo-hidden-categories' )
671 ->numParams(
count( $hiddenCategories ) ),
677 if ( $pageCounts[
'transclusion'][
'from'] > 0 ) {
678 if ( $pageCounts[
'transclusion'][
'from'] >
count( $transcludedTemplates ) ) {
679 $more = $this->
msg(
'morenotlisted' )->escaped();
689 $pageInfo[
'header-properties'][] = [
690 $this->
msg(
'pageinfo-templates' )
691 ->numParams( $pageCounts[
'transclusion'][
'from'] ),
692 $templateListFormatter->format( $transcludedTemplates,
false, $more )
696 if ( !$config->get(
'MiserMode' ) && $pageCounts[
'transclusion'][
'to'] > 0 ) {
697 if ( $pageCounts[
'transclusion'][
'to'] >
count( $transcludedTargets ) ) {
700 $this->
msg(
'moredotdotdot' )->
text(),
702 [
'hidelinks' => 1,
'hideredirs' => 1 ]
713 $pageInfo[
'header-properties'][] = [
714 $this->
msg(
'pageinfo-transclusions' )
715 ->numParams( $pageCounts[
'transclusion'][
'to'] ),
716 $templateListFormatter->format( $transcludedTargets,
false, $more )
732 $config = $this->context->getConfig();
733 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
735 return $cache->getWithSetCallback(
738 function ( $oldValue, &$ttl, &$setOpts )
use (
$page, $config,
$fname ) {
742 $id =
$title->getArticleID();
746 $setOpts += Database::getCacheSetOptions(
$dbr, $dbrWatchlist );
749 $tables = [
'revision_actor_temp' ];
750 $field =
'revactor_actor';
751 $pageField =
'revactor_page';
752 $tsField =
'revactor_timestamp';
756 $field =
'rev_user_text';
757 $pageField =
'rev_page';
758 $tsField =
'rev_timestamp';
762 $watchedItemStore = MediaWikiServices::getInstance()->getWatchedItemStore();
765 $result[
'watchers'] = $watchedItemStore->countWatchers(
$title );
767 if ( $config->get(
'ShowUpdatedMarker' ) ) {
769 $result[
'visitingWatchers'] = $watchedItemStore->countVisitingWatchers(
771 $updated - $config->get(
'WatchersMaxAge' )
776 $edits = (int)
$dbr->selectField(
779 [
'rev_page' => $id ],
785 if ( $config->get(
'MiserMode' ) ) {
790 "COUNT(DISTINCT $field)",
791 [ $pageField => $id ],
799 $threshold =
$dbr->timestamp( time() - $config->get(
'RCMaxAge' ) );
802 $edits = (int)
$dbr->selectField(
807 "rev_timestamp >= " .
$dbr->addQuotes( $threshold )
811 $result[
'recent_edits'] = $edits;
814 $result[
'recent_authors'] = (int)
$dbr->selectField(
816 "COUNT(DISTINCT $field)",
819 "$tsField >= " .
$dbr->addQuotes( $threshold )
828 $conds = [
'page_namespace' =>
$title->getNamespace() ];
829 $conds[] =
'page_title ' .
833 $conds[
'page_is_redirect'] = 1;
834 $result[
'subpages'][
'redirects'] = (int)
$dbr->selectField(
842 $conds[
'page_is_redirect'] = 0;
843 $result[
'subpages'][
'nonredirects'] = (int)
$dbr->selectField(
852 +
$result[
'subpages'][
'nonredirects'];
856 if ( $config->get(
'MiserMode' ) ) {
857 $result[
'transclusion'][
'to'] = 0;
859 $result[
'transclusion'][
'to'] = (int)
$dbr->selectField(
863 'tl_namespace' =>
$title->getNamespace(),
864 'tl_title' =>
$title->getDBkey()
870 $result[
'transclusion'][
'from'] = (int)
$dbr->selectField(
873 [
'tl_from' =>
$title->getArticleID() ],
888 return $this->
msg(
'pageinfo-title', $this->
getTitle()->getPrefixedText() )->text();
900 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
902 # Sift for real versus user names
907 :
$user->getUserPage();
909 $hiddenPrefs = $this->context->getConfig()->get(
'HiddenPrefs' );
910 if (
$user->getId() == 0 ) {
912 } elseif ( !in_array(
'realname', $hiddenPrefs ) &&
$user->getRealName() ) {
921 $real =
$lang->listToText( $real_names );
923 # "ThisSite user(s) A, B and C"
924 if (
count( $user_names ) ) {
926 ->rawParams(
$lang->listToText( $user_names ) )
927 ->params(
count( $user_names ) )->escaped();
932 if (
count( $anon_ips ) ) {
933 $anon = $this->
msg(
'anonusers' )
934 ->rawParams(
$lang->listToText( $anon_ips ) )
935 ->params(
count( $anon_ips ) )->escaped();
940 # This is the big list, all mooshed together. We sift for blank strings
942 foreach ( [ $real,
$user, $anon ]
as $s ) {
944 array_push( $fulllist,
$s );
948 $count =
count( $fulllist );
950 # "Based on work by ..."
952 ? $this->
msg(
'othercontribs' )->rawParams(
953 $lang->listToText( $fulllist ) )->params( $count )->escaped()
973 return $cache->makeKey(
'infoaction', md5(
$title->getPrefixedText() ), $revId, self::VERSION );
static fetchLanguageName( $code, $inLanguage=self::AS_AUTONYMS, $include=self::ALL)
return true to allow those checks to and false if checking is done & $user
Interface for type hinting (accepts WikiPage, Article, ImagePage, CategoryPage)
const SCHEMA_COMPAT_READ_NEW
Class representing a list of titles The execute() method checks them all for existence and adds them ...
if(!isset( $args[0])) $lang
getDescription()
Returns the description that goes below the "<h1>" tag.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
requiresWrite()
Whether this action requires the wiki not to be locked.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
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 after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
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,...
getName()
Returns the name of the action this object responds to.
getContributors()
Get a list of contributors of $article.
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 formatHiddenCategories( $hiddencats)
Returns HTML for the "hidden categories on this page" list.
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
getContext()
Get the IContextSource in use here.
Displays information about a page.
makeHeader( $header, $canonicalId)
Creates a header that can be added to the output.
namespace and then decline to actually register it file or subcat img or subcat $title
getPageTitle()
Returns the name that goes in the "<h1>" page title.
static getTitleValueFor( $name, $subpage=false, $fragment='')
Get a localised TitleValue object for a specified special page name.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
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
static hasSubpages( $index)
Does the namespace allow subpages?
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
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 revUserTools( $rev, $isPublic=false, $useParentheses=true)
Generate a user tool link cluster if the current user is allowed to view it.
addRow( $table, $name, $value, $id)
Adds a row to a table that will be added to the content.
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
static getCacheKey(WANObjectCache $cache, Title $title, $revId)
static newFromTitle( $title)
Factory function.
Allows to change the fields on the form that will be generated $name
getUser()
Shortcut to get the User being used for this instance.
pageInfo()
Returns an array of info groups (will be rendered as tables), keyed by group ID.
Handles formatting for the "templates used on this page" lists.
addTable( $content, $table)
Adds a table to the content that will be added to the output.
static getLocalizedName( $name, Language $lang=null)
Returns the localized name for a given content model.
Multi-datacenter aware caching interface.
getTitle()
Shortcut to get the Title object from the page.
requiresUnblock()
Whether this action can still be executed by a blocked user.
wfFindFile( $title, $options=[])
Find a file.
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
onView()
Shows page information on GET request.
Represents a title within MediaWiki.
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 & $options
$page
Page on which we're performing the action.
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
getLanguage()
Shortcut to get the user Language being used for this instance.
static invalidateCache(Title $title, $revid=null)
Clear the info cache for a given Title.
pageCounts(Page $page)
Returns page counts that would be too "expensive" to retrieve by normal means.
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
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 run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.