83 $this->mOldId = $oldId;
84 $this->mPage = $this->
newPage( $title );
102 # @todo FIXME: Doesn't inherit right
103 return $t == null ? null :
new self(
$t );
104 # return $t == null ? null : new static( $t ); // PHP 5.3
123 switch (
$title->getNamespace() ) {
134 $page->setContext( $context );
158 $this->mRedirectedFrom =
$from;
167 return $this->mPage->getTitle();
184 $this->mContentLoaded =
false;
186 $this->mRedirectedFrom = null; #
Title object if set
187 $this->mRevIdFetched = 0;
188 $this->mRedirectUrl =
false;
190 $this->mPage->clear();
206 ContentHandler::deprecated( __METHOD__,
'1.21' );
208 return ContentHandler::getContentText(
$content );
228 if ( $this->mPage->getId() === 0 ) {
229 # If this is a MediaWiki:x message, then load the messages
230 # and return the message value for x.
232 $text = $this->
getTitle()->getDefaultMessageText();
233 if ( $text ===
false ) {
239 $message = $this->
getContext()->getUser()->isLoggedIn() ?
'noarticletext' :
'noarticletextanon';
254 if ( is_null( $this->mOldId ) ) {
267 $this->mRedirectUrl =
false;
270 $oldid =
$request->getIntOrNull(
'oldid' );
272 if ( $oldid === null ) {
276 if ( $oldid !== 0 ) {
277 # Load the given revision and check whether the page is another one.
278 # In that case, update this instance to reflect the change.
279 if ( $oldid === $this->mPage->getLatest() ) {
280 $this->mRevision = $this->mPage->getRevision();
283 if ( $this->mRevision !== null ) {
285 if ( $this->mPage->getId() != $this->mRevision->getPage() ) {
286 $function = [ get_class( $this->mPage ),
'newFromID' ];
287 $this->mPage = call_user_func( $function, $this->mRevision->getPage() );
293 if (
$request->getVal(
'direction' ) ==
'next' ) {
294 $nextid = $this->
getTitle()->getNextRevisionID( $oldid );
297 $this->mRevision = null;
299 $this->mRedirectUrl = $this->
getTitle()->getFullURL(
'redirect=no' );
301 } elseif (
$request->getVal(
'direction' ) ==
'prev' ) {
302 $previd = $this->
getTitle()->getPreviousRevisionID( $oldid );
305 $this->mRevision = null;
329 ContentHandler::deprecated( __METHOD__,
'1.21' );
331 if ( $this->mContentLoaded && $this->mContent ) {
342 $this->mContent = ContentHandler::getContentText(
$content );
343 ContentHandler::runLegacyHooks(
'ArticleAfterFetchContent', [ &$this, &$this->mContent ] );
361 if ( $this->mContentLoaded ) {
365 $this->mContentLoaded =
true;
366 $this->mContent = null;
370 # Pre-fill content with error message so that if something
371 # fails we'll have something telling us what we intended.
373 $this->mContentObject =
new MessageContent(
'missing-revision', [ $oldid ] );
376 # $this->mRevision might already be fetched by getOldIDFromRequest()
377 if ( !$this->mRevision ) {
379 if ( !$this->mRevision ) {
380 wfDebug( __METHOD__ .
" failed to retrieve specified revision, id $oldid\n" );
385 $oldid = $this->mPage->getLatest();
387 wfDebug( __METHOD__ .
" failed to find page data for title " .
388 $this->
getTitle()->getPrefixedText() .
"\n" );
392 # Update error message with correct oldid
393 $this->mContentObject =
new MessageContent(
'missing-revision', [ $oldid ] );
395 $this->mRevision = $this->mPage->getRevision();
397 if ( !$this->mRevision ) {
398 wfDebug( __METHOD__ .
" failed to retrieve current page, rev_id $oldid\n" );
406 $content = $this->mRevision->getContent(
412 wfDebug( __METHOD__ .
" failed to retrieve content of revision " .
413 $this->mRevision->getId() .
"\n" );
418 $this->mRevIdFetched = $this->mRevision->getId();
420 Hooks::run(
'ArticleAfterFetchContentObject', [ &$this, &$this->mContentObject ] );
431 # If no oldid, this is the current version.
436 return $this->mPage->exists() && $this->mRevision && $this->mRevision->isCurrent();
458 if ( $this->mRevIdFetched ) {
461 return $this->mPage->getLatest();
472 # Get variables from query string
473 # As side effect this will load the revision and update the title
474 # in a revision ID is passed in the request, so this should remain
475 # the first call of this method even if $oldid is used way below.
479 # Another whitelist check in case getOldID() is altering the title
480 $permErrors = $this->
getTitle()->getUserPermissionsErrors(
'read',
$user );
481 if ( count( $permErrors ) ) {
482 wfDebug( __METHOD__ .
": denied on secondary read check\n" );
486 $outputPage = $this->
getContext()->getOutput();
487 # getOldID() may as well want us to redirect somewhere else
488 if ( $this->mRedirectUrl ) {
489 $outputPage->redirect( $this->mRedirectUrl );
490 wfDebug( __METHOD__ .
": redirecting due to oldid\n" );
495 # If we got diff in the query, we want to see a diff page instead of the article.
496 if ( $this->
getContext()->getRequest()->getCheck(
'diff' ) ) {
497 wfDebug( __METHOD__ .
": showing diff page\n" );
503 # Set page title (may be overridden by DISPLAYTITLE)
504 $outputPage->setPageTitle( $this->
getTitle()->getPrefixedText() );
506 $outputPage->setArticleFlag(
true );
507 # Allow frames by default
508 $outputPage->allowClickjacking();
513 # Render printable version, use printable version cache
514 if ( $outputPage->isPrintable() ) {
515 $parserOptions->setIsPrintable(
true );
516 $parserOptions->setEditSection(
false );
518 $parserOptions->setEditSection(
false );
521 # Try client and file cache
522 if ( !$wgDebugToolbar && $oldid === 0 && $this->mPage->checkTouched() ) {
523 # Use the greatest of the page's timestamp or the timestamp of any
524 # redirect in the chain (bug 67849)
526 if ( isset( $this->mRedirectedFrom ) ) {
529 # If there can be more than one redirect in the chain, we have
530 # to go through the whole chain too in case an intermediate
531 # redirect was changed.
532 if ( $wgMaxRedirects > 1 ) {
535 ->getRedirectChain();
546 # Is it client cached?
547 if ( $outputPage->checkLastModified(
$timestamp ) ) {
548 wfDebug( __METHOD__ .
": done 304\n" );
553 wfDebug( __METHOD__ .
": done file cache\n" );
554 # tell wgOut that output is taken care of
555 $outputPage->disable();
556 $this->mPage->doViewUpdates(
$user, $oldid );
562 # Should the parser cache be used?
563 $useParserCache = $this->mPage->shouldCheckParserCache( $parserOptions, $oldid );
564 wfDebug(
'Article::view using parser cache: ' . ( $useParserCache ?
'yes' :
'no' ) .
"\n" );
565 if (
$user->getStubThreshold() ) {
566 $this->
getContext()->getStats()->increment(
'pcache_miss_stub' );
572 # Iterate through the possible ways of constructing the output text.
573 # Keep going until $outputDone is set, or we run out of things to do.
576 $this->mParserOutput =
false;
578 while ( !$outputDone && ++$pass ) {
581 Hooks::run(
'ArticleViewHeader', [ &$this, &$outputDone, &$useParserCache ] );
584 # Early abort if the page doesn't exist
585 if ( !$this->mPage->exists() ) {
586 wfDebug( __METHOD__ .
": showing missing article\n" );
588 $this->mPage->doViewUpdates(
$user );
592 # Try the parser cache
593 if ( $useParserCache ) {
594 $this->mParserOutput = $parserCache->get( $this->mPage, $parserOptions );
596 if ( $this->mParserOutput !==
false ) {
598 wfDebug( __METHOD__ .
": showing parser cache contents for current rev permalink\n" );
601 wfDebug( __METHOD__ .
": showing parser cache contents\n" );
603 $outputPage->addParserOutput( $this->mParserOutput );
604 # Ensure that UI elements requiring revision ID have
605 # the correct version information.
606 $outputPage->setRevisionId( $this->mPage->getLatest() );
607 # Preload timestamp to avoid a DB hit
608 $cachedTimestamp = $this->mParserOutput->getTimestamp();
609 if ( $cachedTimestamp !== null ) {
610 $outputPage->setRevisionTimestamp( $cachedTimestamp );
611 $this->mPage->setTimestamp( $cachedTimestamp );
618 # This will set $this->mRevision if needed
621 # Are we looking at an old revision
622 if ( $oldid && $this->mRevision ) {
626 wfDebug( __METHOD__ .
": cannot view deleted revision\n" );
631 # Ensure that UI elements requiring revision ID have
632 # the correct version information.
634 # Preload timestamp to avoid a DB hit
635 $outputPage->setRevisionTimestamp( $this->mPage->getTimestamp() );
637 # Pages containing custom CSS or JavaScript get special treatment
638 if ( $this->
getTitle()->isCssOrJsPage() || $this->
getTitle()->isCssJsSubpage() ) {
639 wfDebug( __METHOD__ .
": showing CSS/JS source\n" );
642 } elseif ( !
Hooks::run(
'ArticleContentViewCustom',
645 # Allow extensions do their own custom view for certain pages
647 } elseif ( !ContentHandler::runLegacyHooks(
'ArticleViewCustom',
650 # Allow extensions do their own custom view for certain pages
655 # Run the parse, protected by a pool counter
656 wfDebug( __METHOD__ .
": doing uncached parse\n" );
662 if ( !$poolArticleView->execute() ) {
663 $error = $poolArticleView->getError();
665 $outputPage->clearHTML();
666 $outputPage->enableClientCache(
false );
667 $outputPage->setRobotPolicy(
'noindex,nofollow' );
669 $errortext = $error->getWikiText(
false,
'view-pool-error' );
670 $outputPage->addWikiText(
'<div class="errorbox">' . $errortext .
'</div>' );
672 # Connection or timeout error
676 $this->mParserOutput = $poolArticleView->getParserOutput();
677 $outputPage->addParserOutput( $this->mParserOutput );
678 if (
$content->getRedirectTarget() ) {
679 $outputPage->addSubtitle(
"<span id=\"redirectsub\">" .
680 $this->
getContext()->msg(
'redirectpagesub' )->parse() .
"</span>" );
683 # Don't cache a dirty ParserOutput object
684 if ( $poolArticleView->getIsDirty() ) {
685 $outputPage->setCdnMaxage( 0 );
686 $outputPage->addHTML(
"<!-- parser cache is expired, " .
687 "sending anyway due to pool overload-->\n" );
692 # Should be unreachable, but just in case...
698 # Get the ParserOutput actually *displayed* here.
699 # Note that $this->mParserOutput is the *current*/oldid version output.
702 : $this->mParserOutput;
704 # Adjust title for main page & pages with displaytitle
709 # For the main page, overwrite the <title> element with the con-
710 # tents of 'pagetitle-view-mainpage' instead of the default (if
712 # This message always exists because it is in the i18n files
713 if ( $this->
getTitle()->isMainPage() ) {
714 $msg =
wfMessage(
'pagetitle-view-mainpage' )->inContentLanguage();
715 if ( !$msg->isDisabled() ) {
716 $outputPage->setHTMLTitle( $msg->title( $this->getTitle() )->
text() );
720 # Check for any __NOINDEX__ tags on the page using $pOutput
722 $outputPage->setIndexPolicy( $policy[
'index'] );
723 $outputPage->setFollowPolicy( $policy[
'follow'] );
726 $this->mPage->doViewUpdates(
$user, $oldid );
728 $outputPage->addModules(
'mediawiki.action.view.postEdit' );
737 # Adjust the title if it was set by displaytitle, -{T|}- or language conversion
739 if ( strval( $titleText ) !==
'' ) {
740 $this->
getContext()->getOutput()->setPageTitle( $titleText );
754 $diffOnly =
$request->getBool(
'diffonly',
$user->getOption(
'diffonly' ) );
755 $purge =
$request->getVal(
'action' ) ==
'purge';
763 $msg = $this->
getContext()->msg(
'difference-missing-revision' )
767 $this->
getContext()->getOutput()->addHTML( $msg );
771 $contentHandler =
$rev->getContentHandler();
772 $de = $contentHandler->createDifferenceEngine(
782 $this->mRevIdFetched = $de->mNewid;
783 $de->showDiffPage( $diffOnly );
787 list( $old, $new ) = $de->mapDiffPrevNext( $oldid, $diff );
789 $this->mPage->doViewUpdates(
$user, (
int)$new );
804 $outputPage = $this->
getContext()->getOutput();
806 if ( $showCacheHint ) {
810 $outputPage->wrapWikiMsg(
811 "<div id='mw-clearyourcache' lang='$lang' dir='$dir' class='mw-content-$dir'>\n$1\n</div>",
818 if ( $this->mContentObject ) {
820 if ( ContentHandler::runLegacyHooks(
822 [ $this->mContentObject, $this->
getTitle(), $outputPage ] )
826 $po = $this->mContentObject->getParserOutput( $this->
getTitle() );
827 $outputPage->addParserOutputContent( $po );
842 $ns = $this->
getTitle()->getNamespace();
844 # Don't index user and user talk pages for blocked users (bug 11443)
846 $specificTarget = null;
848 $titleText = $this->
getTitle()->getText();
850 $vagueTarget = $titleText;
852 $specificTarget = $titleText;
856 'index' =>
'noindex',
857 'follow' =>
'nofollow'
862 if ( $this->mPage->getId() === 0 || $this->
getOldID() ) {
863 # Non-articles (special pages etc), and old revisions
865 'index' =>
'noindex',
866 'follow' =>
'nofollow'
868 } elseif ( $this->
getContext()->getOutput()->isPrintable() ) {
869 # Discourage indexing of printable versions, but encourage following
871 'index' =>
'noindex',
874 } elseif ( $this->
getContext()->getRequest()->getInt(
'curid' ) ) {
875 # For ?curid=x urls, disallow indexing
877 'index' =>
'noindex',
882 # Otherwise, construct the policy based on the various config variables.
883 $policy = self::formatRobotPolicy( $wgDefaultRobotPolicy );
885 if ( isset( $wgNamespaceRobotPolicies[$ns] ) ) {
886 # Honour customised robot policies for this namespace
887 $policy = array_merge(
889 self::formatRobotPolicy( $wgNamespaceRobotPolicies[$ns] )
892 if ( $this->
getTitle()->canUseNoindex() && is_object( $pOutput ) && $pOutput->getIndexPolicy() ) {
893 # __INDEX__ and __NOINDEX__ magic words, if allowed. Incorporates
894 # a final sanity check that we have really got the parser output.
895 $policy = array_merge(
897 [
'index' => $pOutput->getIndexPolicy() ]
901 if ( isset( $wgArticleRobotPolicies[$this->
getTitle()->getPrefixedText()] ) ) {
902 # (bug 14900) site config can override user-defined __INDEX__ or __NOINDEX__
903 $policy = array_merge(
905 self::formatRobotPolicy( $wgArticleRobotPolicies[$this->
getTitle()->getPrefixedText()] )
920 if ( is_array( $policy ) ) {
922 } elseif ( !$policy ) {
926 $policy = explode(
',', $policy );
927 $policy = array_map(
'trim', $policy );
930 foreach ( $policy
as $var ) {
931 if ( in_array( $var, [
'index',
'noindex' ] ) ) {
932 $arr[
'index'] = $var;
933 } elseif ( in_array( $var, [
'follow',
'nofollow' ] ) ) {
934 $arr[
'follow'] = $var;
952 $outputPage =
$context->getOutput();
954 $rdfrom =
$request->getVal(
'rdfrom' );
958 unset(
$query[
'rdfrom'] );
962 $query[
'redirect'] =
'no';
966 if ( isset( $this->mRedirectedFrom ) ) {
969 if (
Hooks::run(
'ArticleViewRedirect', [ &$this ] ) ) {
971 $this->mRedirectedFrom,
974 [
'redirect' =>
'no' ]
977 $outputPage->addSubtitle(
"<span class=\"mw-redirectedfrom\">" .
978 $context->msg(
'redirectedfrom' )->rawParams( $redir )->parse()
983 $outputPage->addJsConfigVars( [
984 'wgInternalRedirectTargetUrl' => $redirectTargetUrl,
986 $outputPage->addModules(
'mediawiki.action.view.redirect' );
989 $outputPage->setCanonicalUrl( $this->
getTitle()->getCanonicalURL() );
992 $outputPage->setRedirectedFrom( $this->mRedirectedFrom );
996 } elseif ( $rdfrom ) {
999 if ( $wgRedirectSources && preg_match( $wgRedirectSources, $rdfrom ) ) {
1001 $outputPage->addSubtitle(
"<span class=\"mw-redirectedfrom\">" .
1002 $context->msg(
'redirectedfrom' )->rawParams( $redir )->parse()
1006 $outputPage->addJsConfigVars( [
1007 'wgInternalRedirectTargetUrl' => $redirectTargetUrl,
1009 $outputPage->addModules(
'mediawiki.action.view.redirect' );
1023 if ( $this->
getTitle()->isTalkPage() ) {
1024 if ( !
wfMessage(
'talkpageheader' )->isDisabled() ) {
1025 $this->
getContext()->getOutput()->wrapWikiMsg(
1026 "<div class=\"mw-talkpageheader\">\n$1\n</div>",
1027 [
'talkpageheader' ]
1037 # check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page
1041 $this->
getContext()->getOutput()->addWikiMsg(
'anontalkpagetext' );
1047 Hooks::run(
'ArticleViewFooter', [ $this, $patrolFooterShown ] );
1062 $outputPage = $this->
getContext()->getOutput();
1068 || !( $wgUseRCPatrol || $wgUseNPPatrol
1075 if ( $this->mRevision
1086 if ( $cache->get( $key ) ) {
1091 $oldestRevisionTimestamp =
$dbr->selectField(
1093 'MIN( rev_timestamp )',
1094 [
'rev_page' =>
$title->getArticleID() ],
1103 $recentPageCreation =
false;
1104 if ( $oldestRevisionTimestamp
1108 $recentPageCreation =
true;
1112 'rc_timestamp' => $oldestRevisionTimestamp,
1113 'rc_namespace' =>
$title->getNamespace(),
1114 'rc_cur_id' =>
$title->getArticleID()
1120 $markPatrolledMsg =
wfMessage(
'markaspatrolledtext' );
1128 $recentFileUpload =
false;
1129 if ( ( !$rc || $rc->getAttribute(
'rc_patrolled' ) ) && $wgUseFilePatrol
1132 $newestUploadTimestamp =
$dbr->selectField(
1134 'MAX( img_timestamp )',
1135 [
'img_name' =>
$title->getDBkey() ],
1138 if ( $newestUploadTimestamp
1142 $recentFileUpload =
true;
1146 'rc_log_type' =>
'upload',
1147 'rc_timestamp' => $newestUploadTimestamp,
1149 'rc_cur_id' =>
$title->getArticleID()
1152 [
'USE INDEX' =>
'rc_timestamp' ]
1156 $markPatrolledMsg =
wfMessage(
'markaspatrolledtext-file' );
1161 if ( !$recentPageCreation && !$recentFileUpload ) {
1166 $cache->set( $key,
'1' );
1178 if ( $rc->getAttribute(
'rc_patrolled' ) ) {
1183 $cache->set( $key,
'1' );
1188 if ( $rc->getPerformer()->equals(
$user ) ) {
1194 $rcid = $rc->getAttribute(
'rc_id' );
1196 $token =
$user->getEditToken( $rcid );
1198 $outputPage->preventClickjacking();
1199 if ( $wgEnableAPI && $wgEnableWriteAPI &&
$user->isAllowed(
'writeapi' ) ) {
1200 $outputPage->addModules(
'mediawiki.page.patrol.ajax' );
1205 $markPatrolledMsg->escaped(),
1208 'action' =>
'markpatrolled',
1214 $outputPage->addHTML(
1215 "<div class='patrollink' data-mw='interface'>" .
1216 wfMessage(
'markaspatrolledlink' )->rawParams(
$link )->escaped() .
1241 $outputPage = $this->
getContext()->getOutput();
1243 $validUserPage =
false;
1247 # Show info in user (talk) namespace. Does the user exist? Is he blocked?
1251 $rootPart = explode(
'/',
$title->getText() )[0];
1256 if ( !( $user && $user->isLoggedIn() ) && !$ip ) { #
User does not exist
1257 $outputPage->wrapWikiMsg(
"<div class=\"mw-userpage-userdoesnotexist error\">\n\$1\n</div>",
1260 # Show log extract if the user is currently blocked
1268 'showIfEmpty' =>
false,
1270 'blocked-notice-logextract',
1271 $user->getName() # Support GENDER
in notice
1275 $validUserPage = !
$title->isSubpage();
1277 $validUserPage = !
$title->isSubpage();
1281 Hooks::run(
'ShowMissingArticle', [ $this ] );
1283 # Show delete and move logs if there were any such events.
1284 # The logging query can DOS the site when bots/crawlers cause 404 floods,
1285 # so be careful showing this. 404 pages must be cheap as they are hard to cache.
1287 $key =
wfMemcKey(
'page-recent-delete', md5(
$title->getPrefixedText() ) );
1288 $loggedIn = $this->
getContext()->getUser()->isLoggedIn();
1289 if ( $loggedIn ||
$cache->get( $key ) ) {
1291 $conds = [
"log_action != 'revision'" ];
1302 'showIfEmpty' =>
false,
1303 'msgKey' => [ $loggedIn
1304 ?
'moveddeleted-notice'
1305 :
'moveddeleted-notice-recent'
1311 if ( !$this->mPage->hasViewableContent() && $wgSend404Code && !$validUserPage ) {
1314 $this->
getContext()->getRequest()->response()->statusHeader( 404 );
1319 $outputPage->setIndexPolicy( $policy[
'index'] );
1320 $outputPage->setFollowPolicy( $policy[
'follow'] );
1322 $hookResult =
Hooks::run(
'BeforeDisplayNoArticleText', [ $this ] );
1324 if ( !$hookResult ) {
1328 # Show error message
1334 $text =
wfMessage(
'missing-revision', $oldid )->plain();
1335 } elseif (
$title->quickUserCan(
'create', $this->getContext()->getUser() )
1336 &&
$title->quickUserCan(
'edit', $this->getContext()->getUser() )
1338 $message = $this->
getContext()->getUser()->isLoggedIn() ?
'noarticletext' :
'noarticletextanon';
1341 $text =
wfMessage(
'noarticletext-nopermission' )->plain();
1347 'class' =>
"noarticletext mw-content-$dir",
1350 ] ) .
"\n$text\n</div>" );
1366 $outputPage = $this->
getContext()->getOutput();
1370 $outputPage->wrapWikiMsg(
"<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1371 'rev-deleted-text-permission' );
1375 } elseif ( $this->
getContext()->getRequest()->getInt(
'unhide' ) != 1 ) {
1376 # Give explanation and add a link to view the revision...
1377 $oldid = intval( $this->
getOldID() );
1378 $link = $this->
getTitle()->getFullURL(
"oldid={$oldid}&unhide=1" );
1380 'rev-suppressed-text-unhide' :
'rev-deleted-text-unhide';
1381 $outputPage->wrapWikiMsg(
"<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1388 'rev-suppressed-text-view' :
'rev-deleted-text-view';
1389 $outputPage->wrapWikiMsg(
"<div class='mw-warning plainlinks'>\n$1\n</div>\n", $msg );
1404 if ( !
Hooks::run(
'DisplayOldSubtitle', [ &$this, &$oldid ] ) ) {
1411 # Cascade unhide param in links for easy deletion browsing
1414 $extraParams[
'unhide'] = 1;
1417 if ( $this->mRevision && $this->mRevision->getId() === $oldid ) {
1425 $current = ( $oldid == $this->mPage->getLatest() );
1426 $language =
$context->getLanguage();
1433 # Show user links if allowed to see them. If hidden, then show them only if requested...
1436 $infomsg = $current && !
$context->msg(
'revision-info-current' )->isDisabled()
1437 ?
'revision-info-current'
1440 $outputPage =
$context->getOutput();
1441 $outputPage->addSubtitle(
"<div id=\"mw-{$infomsg}\">" .
1443 ->rawParams( $userlinks )
1444 ->params( $revision->getId(), $tddate, $tdtime, $revision->getUserText() )
1451 ?
$context->msg(
'currentrevisionlink' )->escaped()
1454 $context->msg(
'currentrevisionlink' )->escaped(),
1459 ?
$context->msg(
'diff' )->escaped()
1462 $context->msg(
'diff' )->escaped(),
1469 $prev = $this->
getTitle()->getPreviousRevisionID( $oldid );
1473 $context->msg(
'previousrevision' )->escaped(),
1476 'direction' =>
'prev',
1480 :
$context->msg(
'previousrevision' )->escaped();
1484 $context->msg(
'diff' )->escaped(),
1491 :
$context->msg(
'diff' )->escaped();
1492 $nextlink = $current
1493 ?
$context->msg(
'nextrevision' )->escaped()
1496 $context->msg(
'nextrevision' )->escaped(),
1499 'direction' =>
'next',
1503 $nextdiff = $current
1504 ?
$context->msg(
'diff' )->escaped()
1507 $context->msg(
'diff' )->escaped(),
1516 if ( $cdel !==
'' ) {
1520 $outputPage->addSubtitle(
"<div id=\"mw-revision-nav\">" . $cdel .
1521 $context->msg(
'revision-nav' )->rawParams(
1522 $prevdiff, $prevlink, $lnk, $curdiff, $nextlink, $nextdiff
1523 )->escaped() .
"</div>" );
1537 public function viewRedirect( $target, $appendSubtitle =
true, $forceKnown =
false ) {
1540 if ( $appendSubtitle ) {
1543 $out->addModuleStyles(
'mediawiki.action.view.redirectPage' );
1544 return static::getRedirectHeaderHtml(
$lang, $target, $forceKnown );
1560 if ( !is_array( $target ) ) {
1561 $target = [ $target ];
1564 $html =
'<ul class="redirectText">';
1569 htmlspecialchars( $title->getFullText() ),
1572 $title->isRedirect() ? [
'redirect' =>
'no' ] : [],
1573 ( $forceKnown ? [
'known',
'noclasses' ] : [] )
1578 $redirectToText =
wfMessage(
'redirectto' )->inLanguage( $lang )->escaped();
1580 return '<div class="redirectMsg">' .
1581 '<p>' . $redirectToText .
'</p>' .
1596 'namespace-' . $this->
getTitle()->getNamespace() .
'-helppage'
1600 if ( !$msg->isDisabled() ) {
1602 $out->addHelpLink( $helpUrl,
true );
1604 $out->addHelpLink( $to, $overrideBaseUrl );
1612 $this->
getContext()->getRequest()->response()->header(
'X-Robots-Tag: noindex' );
1613 $this->
getContext()->getOutput()->setArticleBodyOnly(
true );
1614 $this->
getContext()->getOutput()->enableSectionEditLinks(
false );
1636 public function delete() {
1637 # This code desperately needs to be totally rewritten
1645 $permissionErrors =
$title->getUserPermissionsErrors(
'delete',
$user );
1646 if ( count( $permissionErrors ) ) {
1650 # Read-only check...
1655 # Better double-check that it hasn't been deleted yet!
1656 $this->mPage->loadPageData(
1659 if ( !$this->mPage->exists() ) {
1660 $deleteLogPage =
new LogPage(
'delete' );
1661 $outputPage =
$context->getOutput();
1662 $outputPage->setPageTitle(
$context->msg(
'cannotdelete-title',
$title->getPrefixedText() ) );
1663 $outputPage->wrapWikiMsg(
"<div class=\"error mw-error-cannotdelete\">\n$1\n</div>",
1666 $outputPage->addHTML(
1667 Xml::element(
'h2', null, $deleteLogPage->getName()->text() )
1678 $deleteReasonList =
$request->getText(
'wpDeleteReasonList',
'other' );
1679 $deleteReason =
$request->getText(
'wpReason' );
1681 if ( $deleteReasonList ==
'other' ) {
1682 $reason = $deleteReason;
1683 } elseif ( $deleteReason !=
'' ) {
1685 $colonseparator =
wfMessage(
'colon-separator' )->inContentLanguage()->text();
1686 $reason = $deleteReasonList . $colonseparator . $deleteReason;
1688 $reason = $deleteReasonList;
1692 [
'delete', $this->
getTitle()->getPrefixedText() ] )
1694 # Flag to hide all contents of the archived revisions
1695 $suppress =
$request->getVal(
'wpSuppress' ) &&
$user->isAllowed(
'suppressrevision' );
1697 $this->
doDelete( $reason, $suppress );
1705 $hasHistory =
false;
1709 }
catch ( Exception
$e ) {
1710 # if a page is horribly broken, we still want to be able to
1711 # delete it. So be lenient about errors here.
1712 wfDebug(
"Error while building auto delete summary: $e" );
1718 if ( $hasHistory ) {
1727 $revisions = $edits = (int)
$dbr->selectField(
1730 [
'rev_page' =>
$title->getArticleID() ],
1736 '<strong class="mw-delete-warning-revisions">' .
1737 $context->msg(
'historywarning' )->numParams( $revisions )->parse() .
1739 $context->msg(
'history' )->escaped(),
1741 [
'action' =>
'history' ] ) .
1745 if (
$title->isBigDeletion() ) {
1747 $context->getOutput()->wrapWikiMsg(
"<div class='error'>\n$1\n</div>\n",
1749 'delete-warning-toobig',
1750 $context->getLanguage()->formatNum( $wgDeleteRevisionsLimit )
1765 wfDebug(
"Article::confirmDelete\n" );
1769 $outputPage = $ctx->getOutput();
1770 $useMediaWikiUIEverywhere = $ctx->getConfig()->get(
'UseMediaWikiUIEverywhere' );
1771 $outputPage->setPageTitle(
wfMessage(
'delete-confirm',
$title->getPrefixedText() ) );
1772 $outputPage->addBacklinkSubtitle(
$title );
1773 $outputPage->setRobotPolicy(
'noindex,nofollow' );
1774 $backlinkCache =
$title->getBacklinkCache();
1775 if ( $backlinkCache->hasLinks(
'pagelinks' ) || $backlinkCache->hasLinks(
'templatelinks' ) ) {
1776 $outputPage->wrapWikiMsg(
"<div class='mw-warning plainlinks'>\n$1\n</div>\n",
1777 'deleting-backlinks-warning' );
1779 $outputPage->addWikiMsg(
'confirmdeletetext' );
1781 Hooks::run(
'ArticleConfirmDelete', [ $this, $outputPage, &$reason ] );
1785 if (
$user->isAllowed(
'suppressrevision' ) ) {
1788 'wpSuppress',
'wpSuppress',
false, [
'tabindex' =>
'4' ] ) .
1793 $checkWatch =
$user->getBoolOption(
'watchdeletion' ) ||
$user->isWatched(
$title );
1796 'action' =>
$title->getLocalURL(
'action=delete' ),
'id' =>
'deleteconfirm' ] ) .
1804 'wpDeleteReasonList',
1805 wfMessage(
'deletereason-dropdown' )->inContentLanguage()->
text(),
1806 wfMessage(
'deletereasonotherlist' )->inContentLanguage()->
text(),
1817 'maxlength' =>
'255',
1820 'class' =>
'mw-ui-input-inline',
1825 # Disallow watching if user is not logged in
1826 if (
$user->isLoggedIn() ) {
1829 'wpWatch',
'wpWatch', $checkWatch, [
'tabindex' =>
'3' ] );
1837 'name' =>
'wpConfirmB',
1838 'id' =>
'wpConfirmB',
1840 'class' => $useMediaWikiUIEverywhere ?
'mw-ui-button mw-ui-destructive' :
'',
1848 $user->getEditToken( [
'delete',
$title->getPrefixedText() ] )
1852 if (
$user->isAllowed(
'editinterface' ) ) {
1854 $ctx->msg(
'deletereason-dropdown' )->inContentLanguage()->getTitle(),
1855 wfMessage(
'delete-edit-reasonlist' )->escaped(),
1857 [
'action' =>
'edit' ]
1859 $form .=
'<p class="mw-delete-editreasons">' .
$link .
'</p>';
1862 $outputPage->addHTML( $form );
1864 $deleteLogPage =
new LogPage(
'delete' );
1865 $outputPage->addHTML(
Xml::element(
'h2', null, $deleteLogPage->getName()->text() ) );
1874 public function doDelete( $reason, $suppress =
false ) {
1877 $outputPage =
$context->getOutput();
1879 $status = $this->mPage->doDeleteArticleReal( $reason, $suppress, 0,
true, $error,
$user );
1882 $deleted = $this->
getTitle()->getPrefixedText();
1884 $outputPage->setPageTitle(
wfMessage(
'actioncomplete' ) );
1885 $outputPage->setRobotPolicy(
'noindex,nofollow' );
1887 $loglink =
'[[Special:Log/delete|' .
wfMessage(
'deletionlog' )->text() .
']]';
1889 $outputPage->addWikiMsg(
'deletedtext',
wfEscapeWikiText( $deleted ), $loglink );
1893 $outputPage->returnToMain(
false );
1895 $outputPage->setPageTitle(
1897 $this->
getTitle()->getPrefixedText() )
1900 if ( $error ==
'' ) {
1901 $outputPage->addWikiText(
1902 "<div class=\"error mw-error-cannotdelete\">\n" .
$status->getWikiText() .
"\n</div>"
1904 $deleteLogPage =
new LogPage(
'delete' );
1905 $outputPage->addHTML(
Xml::element(
'h2', null, $deleteLogPage->getName()->text() ) );
1913 $outputPage->addHTML( $error );
1928 static $called =
false;
1931 wfDebug(
"Article::tryFileCache(): called twice!?\n" );
1938 if (
$cache->isCacheGood( $this->mPage->getTouched() ) ) {
1939 wfDebug(
"Article::tryFileCache(): about to load file\n" );
1943 wfDebug(
"Article::tryFileCache(): starting buffer\n" );
1944 ob_start( [ &
$cache,
'saveToFileCache' ] );
1947 wfDebug(
"Article::tryFileCache(): not cacheable\n" );
1961 $cacheable = $this->mPage->getId()
1962 && !$this->mRedirectedFrom && !$this->
getTitle()->isRedirect();
1965 $cacheable =
Hooks::run(
'IsFileCacheable', [ &$this ] );
1988 if (
$user === null ) {
1991 $parserOptions = $this->mPage->makeParserOptions(
$user );
1994 return $this->mPage->getParserOutput( $parserOptions, $oldid );
2004 if ( $this->mParserOptions ) {
2005 throw new MWException(
"can't change parser options after they have already been set" );
2009 $this->mParserOptions = clone
$options;
2017 if ( !$this->mParserOptions ) {
2018 $this->mParserOptions = $this->mPage->makeParserOptions( $this->
getContext() );
2044 wfDebug( __METHOD__ .
" called and \$mContext is null. " .
2045 "Return RequestContext::getMain(); for sanity\n" );
2058 if ( property_exists( $this->mPage,
$fname ) ) {
2059 # wfWarn( "Access to raw $fname field " . __CLASS__ );
2060 return $this->mPage->$fname;
2062 trigger_error(
'Inaccessible property via __get(): ' .
$fname, E_USER_NOTICE );
2073 if ( property_exists( $this->mPage,
$fname ) ) {
2074 # wfWarn( "Access to raw $fname field of " . __CLASS__ );
2075 $this->mPage->$fname = $fvalue;
2077 } elseif ( !in_array(
$fname, [
'mContext',
'mPage' ] ) ) {
2078 $this->mPage->$fname = $fvalue;
2080 trigger_error(
'Inaccessible property via __set(): ' .
$fname, E_USER_NOTICE );
2089 return $this->mPage->checkFlags(
$flags );
2097 return $this->mPage->checkTouched();
2105 $this->mPage->clearPreparedEdit();
2113 $reason, $suppress =
false, $u1 = null, $u2 = null, &$error =
'',
User $user = null
2115 return $this->mPage->doDeleteArticleReal(
2116 $reason, $suppress, $u1, $u2, $error,
$user
2125 return $this->mPage->doDeleteUpdates( $id,
$content );
2133 ContentHandler::deprecated( __METHOD__,
'1.21' );
2144 return $this->mPage->doEditContent( $content,
$summary,
$flags, $baseRevId,
2145 $user, $serialFormat
2154 return $this->mPage->doEditUpdates( $revision, $user,
$options );
2162 return $this->mPage->doPurge();
2172 return $this->mPage->doQuickEditContent(
2173 $content, $user,
$comment, $minor, $serialFormat
2182 $this->mPage->doViewUpdates( $user, $oldid );
2190 return $this->mPage->exists();
2198 return $this->mPage->followRedirect();
2206 return $this->mPage->getActionOverrides();
2214 return $this->mPage->getAutoDeleteReason( $hasHistory );
2222 return $this->mPage->getCategories();
2230 return $this->mPage->getComment( $audience,
$user );
2238 return $this->mPage->getContentHandler();
2246 return $this->mPage->getContentModel();
2254 return $this->mPage->getContributors();
2262 return $this->mPage->getCreator( $audience,
$user );
2270 return $this->mPage->getDeletionUpdates(
$content );
2278 return $this->mPage->getHiddenCategories();
2286 return $this->mPage->getId();
2294 return $this->mPage->getLatest();
2302 return $this->mPage->getLinksTimestamp();
2310 return $this->mPage->getMinorEdit();
2318 return $this->mPage->getOldestRevision();
2326 return $this->mPage->getRedirectTarget();
2334 return $this->mPage->getRedirectURL( $rt );
2342 return $this->mPage->getRevision();
2350 ContentHandler::deprecated( __METHOD__,
'1.21' );
2351 return $this->mPage->getText( $audience,
$user );
2359 return $this->mPage->getTimestamp();
2367 return $this->mPage->getTouched();
2375 return $this->mPage->getUndoContent( $undo, $undoafter );
2383 return $this->mPage->getUser( $audience,
$user );
2391 return $this->mPage->getUserText( $audience,
$user );
2399 return $this->mPage->hasViewableContent();
2407 return $this->mPage->insertOn( $dbw, $pageId );
2415 array $expiry, $cascade, $reason,
$user = null
2417 return $this->mPage->insertProtectNullRevision( $revCommentMsg, $limit,
2418 $expiry, $cascade, $reason,
$user
2427 return $this->mPage->insertRedirect();
2435 return $this->mPage->insertRedirectEntry( $rt, $oldLatest );
2443 return $this->mPage->isCountable( $editInfo );
2451 return $this->mPage->isRedirect();
2459 return $this->mPage->loadFromRow( $data,
$from );
2467 $this->mPage->loadPageData(
$from );
2475 return $this->mPage->lockAndGetLatest();
2483 return $this->mPage->makeParserOptions(
$context );
2491 return $this->mPage->pageDataFromId(
$dbr, $id,
$options );
2508 $serialFormat = null, $useCache =
true
2510 return $this->mPage->prepareContentForEdit(
2511 $content, $revision,
$user,
2512 $serialFormat, $useCache
2521 return $this->mPage->prepareTextForEdit( $text, $revid,
$user );
2529 return $this->mPage->protectDescription( $limit, $expiry );
2537 return $this->mPage->protectDescriptionLog( $limit, $expiry );
2545 $sectionTitle =
'', $baseRevId = null
2547 return $this->mPage->replaceSectionAtRev( $sectionId, $sectionContent,
2548 $sectionTitle, $baseRevId
2559 return $this->mPage->replaceSectionContent(
2560 $sectionId, $sectionContent, $sectionTitle, $edittime
2569 return $this->mPage->setTimestamp( $ts );
2577 return $this->mPage->shouldCheckParserCache( $parserOptions, $oldId );
2585 return $this->mPage->supportsSections();
2593 return $this->mPage->triggerOpportunisticLinksUpdate( $parserOutput );
2601 return $this->mPage->updateCategoryCounts( $added, $deleted, $id );
2609 return $this->mPage->updateIfNewerOn( $dbw, $revision );
2617 return $this->mPage->updateRedirectOn( $dbw, $redirectTitle, $lastRevIsRedirect = null );
2625 $lastRevIsRedirect = null
2627 return $this->mPage->updateRevisionOn( $dbw, $revision, $lastRevision,
2643 return $this->mPage->doUpdateRestrictions( $limit, $expiry, $cascade, $reason, $user );
2654 &$cascade = 0, $expiry = []
2656 return $this->mPage->doUpdateRestrictions(
2674 $reason, $suppress =
false, $u1 = null, $u2 = null, &$error =
''
2676 return $this->mPage->doDeleteArticle( $reason, $suppress, $u1, $u2, $error );
2690 return $this->mPage->doRollback( $fromP,
$summary, $token, $bot, $resultDetails,
$user );
2702 $guser = is_null( $guser ) ? $this->
getContext()->getUser() : $guser;
2703 return $this->mPage->commitRollback( $fromP,
$summary, $bot, $resultDetails, $guser );
2711 $title = $this->mPage->getTitle();
pageDataFromId($dbr, $id, $options=[])
Call to WikiPage function for backwards compatibility.
__set($fname, $fvalue)
Use PHP's magic __set handler to handle setting of raw WikiPage fields for backwards compatibility...
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
getRedirectTarget()
Call to WikiPage function for backwards compatibility.
static purgePatrolFooterCache($articleID)
Purge the cache used to check if it is worth showing the patrol footer For example, it is done during re-uploads when file patrol is used.
viewRedirect($target, $appendSubtitle=true, $forceKnown=false)
Return the HTML for the top of a redirect page.
static newFromID($id, $flags=0)
Create a new Title from an article ID.
static closeElement($element)
Returns "</$element>".
lockAndGetLatest()
Call to WikiPage function for backwards compatibility.
static onArticleCreate(Title $title)
The onArticle*() functions are supposed to be a kind of hooks which should be called whenever any of ...
static onArticleCreate($title)
getUndoContent(Revision $undo, Revision $undoafter=null)
Call to WikiPage function for backwards compatibility.
doDeleteArticleReal($reason, $suppress=false, $u1=null, $u2=null, &$error= '', User $user=null)
Call to WikiPage function for backwards compatibility.
static getMainWANInstance()
Get the main WAN cache object.
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
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
Interface for objects which can provide a MediaWiki context on request.
static isInRCLifespan($timestamp, $tolerance=0)
Check whether the given timestamp is new enough to have a RC row with a given tolerance as the recent...
static revComment(Revision $rev, $local=false, $isPublic=false)
Wrap and format the given revision's comment block, if the current user is allowed to view it...
WikiPage $mPage
The WikiPage object of this instance.
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
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
getRobotPolicy($action, $pOutput=null)
Get the robot policy to be used for the current view.
the array() calling protocol came about after MediaWiki 1.4rc1.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
updateRestrictions($limit=[], $reason= '', &$cascade=0, $expiry=[])
doEditContent(Content $content, $summary, $flags=0, $baseRevId=false, User $user=null, $serialFormat=null)
Call to WikiPage function for backwards compatibility.
getText($audience=Revision::FOR_PUBLIC, User $user=null)
Call to WikiPage function for backwards compatibility.
getLatest()
Call to WikiPage function for backwards compatibility.
setParserOptions(ParserOptions $options)
Override the ParserOptions used to render the primary article wikitext.
doEditUpdates(Revision $revision, User $user, array $options=[])
Call to WikiPage function for backwards compatibility.
$wgEnableAPI
Enable the MediaWiki API for convenient access to machine-readable data via api.php.
static getRevDeleteLink(User $user, Revision $rev, Title $title)
Get a revision-deletion link, or disabled link, or nothing, depending on user permissions & the setti...
static element($element, $attribs=null, $contents= '', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
exists()
Call to WikiPage function for backwards compatibility.
supportsSections()
Call to WikiPage function for backwards compatibility.
static makeUrl($name, $urlaction= '')
getContent()
Note that getContent does not follow redirects anymore.
doRollback($fromP, $summary, $token, $bot, &$resultDetails, User $user=null)
Show an error when the wiki is locked/read-only and the user tries to do something that requires writ...
doDeleteArticle($reason, $suppress=false, $u1=null, $u2=null, &$error= '')
protect()
action=protect handler
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify prev or next refreshes the diff cache $unhide
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
$wgNamespaceRobotPolicies
Robot policies per namespaces.
IContextSource $mContext
The context this Article is executed in.
Set options of the Parser.
isCountable($editInfo=false)
Call to WikiPage function for backwards compatibility.
Wrapper allowing us to handle a system message as a Content object.
$wgDebugToolbar
Display the new debugging toolbar.
getPage()
Get the WikiPage object of this instance.
getParserOutput($oldid=null, User $user=null)
#@-
updateCategoryCounts(array $added, array $deleted, $id=0)
Call to WikiPage function for backwards compatibility.
string bool $mRedirectUrl
URL to redirect to or false if none.
loadPageData($from= 'fromdb')
Call to WikiPage function for backwards compatibility.
if(!isset($args[0])) $lang
ParserOptions $mParserOptions
ParserOptions object for $wgUser articles.
$wgEnableWriteAPI
Allow the API to be used to perform write operations (page edits, rollback, etc.) when an authorised ...
Content $mContentObject
Content of the revision we are working on.
Special handling for category description pages, showing pages, subcategories and file that belong to...
doDeleteUpdates($id, Content $content=null)
Call to WikiPage function for backwards compatibility.
adjustDisplayTitle(ParserOutput $pOutput)
Adjust title for pages with displaytitle, -{T|}- or language conversion.
static hidden($name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
shouldCheckParserCache(ParserOptions $parserOptions, $oldId)
Call to WikiPage function for backwards compatibility.
doUpdateRestrictions(array $limit, array $expiry, &$cascade, $reason, User $user)
Class for viewing MediaWiki article and history.
null for the local wiki Added in
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function array $article
Page view caching in the file system.
followRedirect()
Call to WikiPage function for backwards compatibility.
confirmDelete($reason)
Output deletion confirmation dialog.
Class for viewing MediaWiki file description pages.
triggerOpportunisticLinksUpdate(ParserOutput $parserOutput)
Call to WikiPage function for backwards compatibility.
getOldIDFromRequest()
Sets $this->mRedirectUrl to a correct URL if the query parameters are incorrect.
__get($fname)
Use PHP's magic __get handler to handle accessing of raw WikiPage fields for backwards compatibility...
it s the revision text itself In either if gzip is the revision text is gzipped $flags
getDeletionUpdates(Content $content=null)
Call to WikiPage function for backwards compatibility.
updateIfNewerOn($dbw, $revision)
Call to WikiPage function for backwards compatibility.
clearPreparedEdit()
Call to WikiPage function for backwards compatibility.
static getMainStashInstance()
Get the cache object for the main stash.
Represents a title within MediaWiki.
when a variable name is used in a it is silently declared as a new local masking the global
static useFileCache(IContextSource $context)
Check if pages can be cached for this request/user.
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target...
$wgUseNPPatrol
Use new page patrolling to check new pages on Special:Newpages.
getContributors()
Call to WikiPage function for backwards compatibility.
static submitButton($value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
commitRollback($fromP, $summary, $bot, &$resultDetails, User $guser=null)
showMissingArticle()
Show the error text for a missing article.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
static showLogExtract(&$out, $types=[], $page= '', $user= '', $param=[])
Show log extract.
protectDescription(array $limit, array $expiry)
Call to WikiPage function for backwards compatibility.
the value to return A Title object or null for latest to be modified or replaced by the hook handler or if authentication is not possible after cache objects are set for highlighting & $link
Class to simplify the use of log pages.
The User object encapsulates all of the user-specific settings (user_id, name, rights, email address, options, last login time).
getContext()
Gets the context this Article is executed in.
static closeElement($element)
Shortcut to close an XML element.
isRedirect()
Call to WikiPage function for backwards compatibility.
__construct(Title $title, $oldId=null)
Constructor and clear the article.
setTimestamp($ts)
Call to WikiPage function for backwards compatibility.
protectDescriptionLog(array $limit, array $expiry)
Call to WikiPage function for backwards compatibility.
static onArticleDelete($title)
static openElement($element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
Interface for type hinting (accepts WikiPage, Article, ImagePage, CategoryPage)
makeParserOptions($context)
Call to WikiPage function for backwards compatibility.
wfEscapeWikiText($text)
Escapes the given text so that it may be output using addWikiText() without any linking, formatting, etc.
wfReadOnly()
Check whether the wiki is in read-only mode.
$wgDefaultRobotPolicy
Default robot policy.
static getMain()
Static methods.
prepareContentForEdit(Content $content, $revision=null, User $user=null, $serialFormat=null, $useCache=true)
Call to WikiPage function for backwards compatibility.
static getCanonicalName($index)
Returns the canonical (English) name for a given index.
$wgUseFileCache
This will cache static pages for non-logged-in users to reduce database traffic on public sites...
showViewFooter()
Show the footer section of an ordinary page view.
static newFromTarget($specificTarget, $vagueTarget=null, $fromMaster=false)
Given a target and the target's type, get an existing Block object if possible.
$wgUseFilePatrol
Use file patrolling to check new files on Special:Newfiles.
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 $parserOutput
getRevisionFetched()
Get the fetched Revision object depending on request parameters or null on failure.
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 as context as context $options
insertProtectNullRevision($revCommentMsg, array $limit, array $expiry, $cascade, $reason, $user=null)
Call to WikiPage function for backwards compatibility.
static isValid($ip)
Validate an IP address.
showRedirectedFromHeader()
If this request is a redirect view, send "redirected from" subtitle to the output.
ParserOutput $mParserOutput
getRevision()
Call to WikiPage function for backwards compatibility.
it s the revision text itself In either if gzip is set
generateReason(&$hasHistory)
static getRedirectHeaderHtml(Language $lang, $target, $forceKnown=false)
Return the HTML for the top of a redirect page.
insertRedirect()
Call to WikiPage function for backwards compatibility.
int null $mOldId
The oldid of the article that is to be shown, 0 for the current revision.
static openElement($element, $attribs=null)
This opens an XML element.
hasViewableContent()
Call to WikiPage function for backwards compatibility.
getComment($audience=Revision::FOR_PUBLIC, User $user=null)
Call to WikiPage function for backwards compatibility.
Base interface for content objects.
Internationalisation code.
getTitle()
Get the title object of the article.
loadFromRow($data, $from)
Call to WikiPage function for backwards compatibility.
getActionOverrides()
Call to WikiPage function for backwards compatibility.
doViewUpdates(User $user, $oldid=0)
Call to WikiPage function for backwards compatibility.
getTitle()
Get the title object of the article.
doPurge()
Call to WikiPage function for backwards compatibility.
static newFromTitle($title, IContextSource $context)
Create an Article object of the appropriate class for the given page.
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
render()
Handle action=render.
static isIP($name)
Does the string match an anonymous IP address?
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty & $sectionContent
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 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 after processing 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 unsetoffset-wrap String Wrap the message in html(usually something like"<
getCategories()
Call to WikiPage function for backwards compatibility.
Allows to change the fields on the form that will be generated are created Can be used to omit specific feeds from being outputted You must not use this hook to add use OutputPage::addFeedLink() instead.&$feedLinks conditions will AND in the final query as a Content object as a Content object $title
static linkKnown($target, $html=null, $customAttribs=[], $query=[], $options=[ 'known'])
Identical to link(), except $options defaults to 'known'.
replaceSectionAtRev($sectionId, Content $sectionContent, $sectionTitle= '', $baseRevId=null)
Call to WikiPage function for backwards compatibility.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
$wgUseRCPatrol
Use RC Patrolling to check for vandalism (from recent changes and watchlists) New pages and new files...
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
checkFlags($flags)
Call to WikiPage function for backwards compatibility.
$wgRedirectSources
If local interwikis are set up which allow redirects, set this regexp to restrict URLs which will be ...
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
$wgArticleRobotPolicies
Robot policies per article.
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
getContentHandler()
Call to WikiPage function for backwards compatibility.
showCssOrJsPage($showCacheHint=true)
Show a page view for a page formatted as CSS or JavaScript.
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
static link($target, $html=null, $customAttribs=[], $query=[], $options=[])
This function returns an HTML link to the given target.
static onArticleEdit(Title $title, Revision $revision=null)
Purge caches on page update etc.
Title $mRedirectedFrom
Title from which we were redirected here.
isFileCacheable()
Check if the page can be cached.
getCreator($audience=Revision::FOR_PUBLIC, User $user=null)
Call to WikiPage function for backwards compatibility.
static singleton()
Get an instance of this object.
addHelpLink($to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
Class representing a MediaWiki article and history.
static newFromId($id, $flags=0)
Load a page revision from a given revision ID number.
getOldestRevision()
Call to WikiPage function for backwards compatibility.
string $mContent
Text of the revision we are working on.
static makeExternalLink($url, $text, $escape=true, $linktype= '', $attribs=[], $title=null)
Make an external link.
bool $mContentLoaded
Is the content ($mContent) already loaded?
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
getAutoDeleteReason(&$hasHistory)
Call to WikiPage function for backwards compatibility.
checkTouched()
Call to WikiPage function for backwards compatibility.
updateRevisionOn($dbw, $revision, $lastRevision=null, $lastRevIsRedirect=null)
Call to WikiPage function for backwards compatibility.
prepareTextForEdit($text, $revid=null, User $user=null)
Call to WikiPage function for backwards compatibility.
error also a ContextSource you ll probably need to make sure the header is varied on $request
static newFromID($id)
Constructor from a page id.
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined...
getId()
Call to WikiPage function for backwards compatibility.
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
getTimestamp()
Call to WikiPage function for backwards compatibility.
static input($name, $value= '', $type= 'text', array $attribs=[])
Convenience function to produce an "<input>" element.
pageDataFromTitle($dbr, $title, $options=[])
Call to WikiPage function for backwards compatibility.
getMinorEdit()
Call to WikiPage function for backwards compatibility.
view()
This is the default action of the index.php entry point: just view the page of the given title...
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
static onArticleDelete(Title $title)
Clears caches when article is deleted.
getContentObject()
Returns a Content object representing the pages effective display content, not necessarily the revisi...
doDelete($reason, $suppress=false)
Perform a deletion and output success or failure messages.
showNamespaceHeader()
Show a header specific to the namespace currently being viewed, like [[MediaWiki:Talkpagetext]].
Show an error when a user tries to do something they do not have the necessary permissions for...
$wgDeleteRevisionsLimit
Optional to restrict deletion of pages with higher revision counts to users with the 'bigdelete' perm...
updateRedirectOn($dbw, $redirectTitle, $lastRevIsRedirect=null)
Call to WikiPage function for backwards compatibility.
tryFileCache()
checkLastModified returns true if it has taken care of all output to the client that is necessary for...
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 as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
insertRedirectEntry(Title $rt, $oldLatest=null)
Call to WikiPage function for backwards compatibility.
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 $status
doEdit($text, $summary, $flags=0, $baseRevId=false, $user=null)
Call to WikiPage function for backwards compatibility.
static checkLabel($label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
int $mRevIdFetched
Revision ID of revision we are working on.
wfMemcKey()
Make a cache key for the local wiki.
fetchContentObject()
Get text content object Does NOT follow redirects.
setOldSubtitle($oldid=0)
Generate the navigation links when browsing through an article revisions It shows the information as:...
static compare($a, $b)
Callback for usort() to do title sorts by (namespace, title)
isCurrent()
Returns true if the currently-referenced revision is the current edit to this page (and it exists)...
unprotect()
action=unprotect handler (alias)
getTouched()
Call to WikiPage function for backwards compatibility.
static onArticleEdit($title)
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 modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Allows to change the fields on the form that will be generated are created Can be used to omit specific feeds from being outputted You must not use this hook to add use OutputPage::addFeedLink() instead.&$feedLinks conditions will AND in the final query $logTypes
getUser($audience=Revision::FOR_PUBLIC, User $user=null)
Call to WikiPage function for backwards compatibility.
static newFromWikiPage(WikiPage $page, IContextSource $context)
Create an Article object of the appropriate class for the given page.
fetchContent()
Get text of an article from database Does NOT follow redirects.
static selectFields()
Return the list of revision fields that should be selected to create a new page.
static getAutosummary($oldtext, $newtext, $flags)
Return an applicable autosummary if one exists for the given edit.
static doWatchOrUnwatch($watch, Title $title, User $user)
Watch or unwatch a page.
$wgSend404Code
Some web hosts attempt to rewrite all responses with a 404 (not found) status code, mangling or hiding MediaWiki's output.
replaceSectionContent($sectionId, Content $sectionContent, $sectionTitle= '', $edittime=null)
Call to WikiPage function for backwards compatibility.
setContext($context)
Sets the context this Article is executed in.
static listDropDown($name= '', $list= '', $other= '', $selected= '', $class= '', $tabindex=null)
Build a drop-down box from a textual list.
getRevIdFetched()
Use this to fetch the rev ID used on page views.
static revUserTools($rev, $isPublic=false)
Generate a user tool link cluster if the current user is allowed to view it.
showDiffPage()
Show a diff page according to current request variables.
static element($element, $attribs=[], $contents= '')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
getRedirectURL($rt)
Call to WikiPage function for backwards compatibility.
static getAutosummary($oldtext, $newtext, $flags)
showDeletedRevisionHeader()
If the revision requested for view is deleted, check permissions.
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
setRedirectedFrom(Title $from)
Tell the page view functions that this view was redirected from another page on the wiki...
static newFromConds($conds, $fname=__METHOD__, $dbType=DB_SLAVE)
Find the first recent change matching some specific conditions.
getContentModel()
Call to WikiPage function for backwards compatibility.
doQuickEditContent(Content $content, User $user, $comment= '', $minor=false, $serialFormat=null)
Call to WikiPage function for backwards compatibility.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
getLinksTimestamp()
Call to WikiPage function for backwards compatibility.
insertOn($dbw, $pageId=null)
Call to WikiPage function for backwards compatibility.
getParserOptions()
Get parser options suitable for rendering the primary article wikitext.
Revision $mRevision
Revision we are working on.
getUserText($audience=Revision::FOR_PUBLIC, User $user=null)
Call to WikiPage function for backwards compatibility.
showPatrolFooter()
If patrol is possible, output a patrol UI box.
static label($label, $id, array $attribs=[])
Convenience function for generating a label for inputs.
static formatRobotPolicy($policy)
Converts a String robot policy into an associative array, to allow merging of several policies using ...
getHiddenCategories()
Call to WikiPage function for backwards compatibility.