119 throw new MWException(
"NS_MEDIA is a virtual namespace; use NS_FILE." );
120 } elseif ( $ns < 0 ) {
121 throw new MWException(
"Invalid or virtual namespace $ns given." );
161 $row = $db->selectRow(
162 'page', self::selectFields(), [
'page_id' => $id ], __METHOD__ );
166 return self::newFromRow( $row,
$from );
195 return self::READ_NORMAL;
197 return self::READ_LATEST;
199 return self::READ_LOCKING;
241 $this->mDataLoaded =
false;
242 $this->mDataLoadedFrom = self::READ_NONE;
253 $this->mRedirectTarget = null;
254 $this->mLastRevision = null;
255 $this->mTouched =
'19700101000000';
256 $this->mLinksUpdated =
'19700101000000';
257 $this->mTimestamp =
'';
258 $this->mIsRedirect =
false;
259 $this->mLatest =
false;
272 $this->mPreparedEdit =
false;
282 global $wgContentHandlerUseDB, $wgPageLanguageUseDB;
293 'page_links_updated',
298 if ( $wgContentHandlerUseDB ) {
299 $fields[] =
'page_content_model';
302 if ( $wgPageLanguageUseDB ) {
303 $fields[] =
'page_lang';
317 $fields = self::selectFields();
319 Hooks::run(
'ArticlePageDataBefore', [ &$this, &$fields ] );
321 $row =
$dbr->selectRow(
'page', $fields, $conditions, __METHOD__,
$options );
323 Hooks::run(
'ArticlePageDataAfter', [ &$this, &$row ] );
339 'page_namespace' =>
$title->getNamespace(),
369 if ( is_int(
$from ) && $from <= $this->mDataLoadedFrom ) {
374 if ( is_int(
$from ) ) {
380 &&
wfGetLB()->getServerCount() > 1
381 &&
wfGetLB()->hasOrMadeRecentMasterChanges()
383 $from = self::READ_LATEST;
390 $from = self::READ_NORMAL;
409 $lc->clearLink( $this->mTitle );
412 $lc->addGoodLinkObjFromRow( $this->mTitle, $data );
414 $this->mTitle->loadFromRow( $data );
417 $this->mTitle->loadRestrictions( $data->page_restrictions );
419 $this->mId = intval( $data->page_id );
422 $this->mIsRedirect = intval( $data->page_is_redirect );
423 $this->mLatest = intval( $data->page_latest );
426 if ( $this->mLastRevision && $this->mLastRevision->getId() !=
$this->mLatest ) {
427 $this->mLastRevision = null;
428 $this->mTimestamp =
'';
431 $lc->addBadLinkObj( $this->mTitle );
433 $this->mTitle->loadFromRow(
false );
440 $this->mDataLoaded =
true;
441 $this->mDataLoadedFrom = self::convertSelectType(
$from );
448 if ( !$this->mDataLoaded ) {
458 if ( !$this->mDataLoaded ) {
461 return $this->mId > 0;
473 return $this->mTitle->isKnown();
482 if ( !$this->mDataLoaded ) {
503 return $cache->getWithSetCallback(
504 $cache->makeKey(
'page',
'content-model', $this->getLatest() ),
510 return $rev->getContentModel();
512 $title = $this->mTitle->getPrefixedDBkey();
513 wfWarn(
"Page $title exists but has no (visible) revisions!" );
514 return $this->mTitle->getContentModel();
521 return $this->mTitle->getContentModel();
529 if ( !$this->mDataLoaded ) {
532 return ( $this->mId && !$this->mIsRedirect );
540 if ( !$this->mDataLoaded ) {
551 if ( !$this->mDataLoaded ) {
562 if ( !$this->mDataLoaded ) {
580 while ( $continue ) {
581 $row = $db->selectRow(
582 [
'page',
'revision' ],
585 'page_namespace' => $this->mTitle->getNamespace(),
586 'page_title' => $this->mTitle->getDBkey(),
591 'ORDER BY' =>
'rev_timestamp ASC'
611 if ( $this->mLastRevision !== null ) {
620 if ( $this->mDataLoadedFrom == self::READ_LOCKING ) {
630 } elseif ( $this->mDataLoadedFrom == self::READ_LATEST ) {
634 $flags = Revision::READ_LATEST;
651 $this->mLastRevision = $revision;
661 if ( $this->mLastRevision ) {
682 if ( $this->mLastRevision ) {
683 return $this->mLastRevision->getContent( $audience,
$user );
704 if ( $this->mLastRevision ) {
705 return $this->mLastRevision->getText( $audience,
$user );
715 if ( !$this->mTimestamp ) {
742 if ( $this->mLastRevision ) {
743 return $this->mLastRevision->getUser( $audience,
$user );
762 $userName = $revision->getUserText( $audience,
$user );
780 if ( $this->mLastRevision ) {
781 return $this->mLastRevision->getUserText( $audience,
$user );
798 if ( $this->mLastRevision ) {
799 return $this->mLastRevision->getComment( $audience,
$user );
812 if ( $this->mLastRevision ) {
813 return $this->mLastRevision->isMinor();
828 global $wgArticleCountMethod;
830 if ( !$this->mTitle->isContentPage() ) {
846 if ( $wgArticleCountMethod ===
'link' ) {
854 $hasLinks = (bool)count( $editInfo->output->getLinks() );
857 [
'pl_from' => $this->
getId() ], __METHOD__ );
861 return $content->isCountable( $hasLinks );
872 if ( !$this->mTitle->isRedirect() ) {
876 if ( $this->mRedirectTarget !== null ) {
882 $row =
$dbr->selectRow(
'redirect',
883 [
'rd_namespace',
'rd_title',
'rd_fragment',
'rd_interwiki' ],
884 [
'rd_from' => $this->
getId() ],
889 if ( $row && !is_null( $row->rd_fragment ) && !is_null( $row->rd_interwiki ) ) {
891 $row->rd_namespace, $row->rd_title,
892 $row->rd_fragment, $row->rd_interwiki
922 $that->insertRedirectEntry(
$retval, $latest );
938 $dbw->startAtomic( __METHOD__ );
941 $dbw->replace(
'redirect',
944 'rd_from' => $this->
getId(),
954 $dbw->endAtomic( __METHOD__ );
978 if ( $rt->isExternal() ) {
979 if ( $rt->isLocal() ) {
983 $source = $this->mTitle->getFullURL(
'redirect=no' );
984 return $rt->getFullURL( [
'rdfrom' =>
$source ] );
992 if ( $rt->isSpecialPage() ) {
996 if ( $rt->isValidRedirectTarget() ) {
997 return $rt->getFullURL();
1016 if (
$dbr->implicitGroupby() ) {
1017 $realNameField =
'user_real_name';
1019 $realNameField =
'MIN(user_real_name) AS user_real_name';
1022 $tables = [
'revision',
'user' ];
1025 'user_id' =>
'rev_user',
1026 'user_name' =>
'rev_user_text',
1028 'timestamp' =>
'MAX(rev_timestamp)',
1031 $conds = [
'rev_page' => $this->
getId() ];
1037 $conds[] =
"rev_user != $user";
1039 $conds[] =
"rev_user_text != {$dbr->addQuotes( $this->getUserText() )}";
1043 $conds[] =
"{$dbr->bitAnd( 'rev_deleted', Revision::DELETED_USER )} = 0";
1046 'user' => [
'LEFT JOIN',
'rev_user = user_id' ],
1050 'GROUP BY' => [
'rev_user',
'rev_user_text' ],
1051 'ORDER BY' =>
'timestamp DESC',
1068 && ( $oldId === null || $oldId === 0 || $oldId === $this->
getLatest() )
1086 ParserOptions $parserOptions, $oldid = null, $forceParse =
false
1091 ': using parser cache: ' . ( $useParserCache ?
'yes' :
'no' ) .
"\n" );
1096 if ( $useParserCache ) {
1103 if ( $oldid === null || $oldid === 0 ) {
1110 return $pool->getParserOutput();
1123 Hooks::run(
'PageViewUpdates', [ $this, $user ] );
1139 if ( !
Hooks::run(
'ArticlePurge', [ &$this ] ) ) {
1143 if ( (
$flags & self::PURGE_GLOBAL_PCACHE ) == self::PURGE_GLOBAL_PCACHE ) {
1145 $this->mTitle->invalidateCache();
1146 } elseif ( (
$flags & self::PURGE_CLUSTER_PCACHE ) == self::PURGE_CLUSTER_PCACHE ) {
1152 $cache->makeKey(
'page',
'last-dc-purge', $this->getId() ),
1158 if ( (
$flags & self::PURGE_CDN_CACHE ) == self::PURGE_CDN_CACHE ) {
1177 if ( $text === null ) {
1199 return $cache->get(
$cache->makeKey(
'page',
'last-dc-purge', $this->getId() ) );
1217 $pageIdForInsert = $pageId ?: $dbw->nextSequenceValue(
'page_page_id_seq' );
1221 'page_id' => $pageIdForInsert,
1222 'page_namespace' => $this->mTitle->getNamespace(),
1223 'page_title' => $this->mTitle->getDBkey(),
1224 'page_restrictions' =>
'',
1225 'page_is_redirect' => 0,
1228 'page_touched' => $dbw->timestamp(),
1236 if ( $dbw->affectedRows() > 0 ) {
1237 $newid = $pageId ?: $dbw->insertId();
1238 $this->mId = $newid;
1239 $this->mTitle->resetArticleID( $newid );
1261 $lastRevIsRedirect = null
1263 global $wgContentHandlerUseDB;
1266 if ( (
int)$revision->getId() === 0 ) {
1268 __METHOD__ .
': Revision has ID ' . var_export( $revision->getId(), 1 )
1272 $content = $revision->getContent();
1276 $conditions = [
'page_id' => $this->
getId() ];
1278 if ( !is_null( $lastRevision ) ) {
1280 $conditions[
'page_latest'] = $lastRevision;
1284 'page_latest' => $revision->getId(),
1285 'page_touched' => $dbw->timestamp( $revision->getTimestamp() ),
1286 'page_is_new' => ( $lastRevision === 0 ) ? 1 : 0,
1287 'page_is_redirect' => $rt !== null ? 1 : 0,
1291 if ( $wgContentHandlerUseDB ) {
1292 $row[
'page_content_model'] = $revision->getContentModel();
1295 $dbw->update(
'page',
1300 $result = $dbw->affectedRows() > 0;
1304 $this->mLatest = $revision->getId();
1305 $this->mIsRedirect = (bool)$rt;
1313 $revision->getContentModel()
1335 $isRedirect = !is_null( $redirectTitle );
1337 if ( !$isRedirect && $lastRevIsRedirect ===
false ) {
1341 if ( $isRedirect ) {
1345 $where = [
'rd_from' => $this->
getId() ];
1346 $dbw->delete(
'redirect', $where, __METHOD__ );
1353 return ( $dbw->affectedRows() != 0 );
1368 $row = $dbw->selectRow(
1369 [
'revision',
'page' ],
1370 [
'rev_id',
'rev_timestamp',
'page_is_redirect' ],
1372 'page_id' => $this->
getId(),
1373 'page_latest=rev_id' ],
1377 if (
wfTimestamp(
TS_MW, $row->rev_timestamp ) >= $revision->getTimestamp() ) {
1380 $prev = $row->rev_id;
1381 $lastRevIsRedirect = (bool)$row->page_is_redirect;
1385 $lastRevIsRedirect = null;
1441 if ( $edittime && $sectionId !==
'new' ) {
1448 &&
wfGetLB()->getServerCount() > 1
1449 &&
wfGetLB()->hasOrMadeRecentMasterChanges()
1455 $baseRevId =
$rev->getId();
1459 return $this->
replaceSectionAtRev( $sectionId, $sectionContent, $sectionTitle, $baseRevId );
1476 $sectionTitle =
'', $baseRevId = null
1479 if ( strval( $sectionId ) ===
'' ) {
1484 throw new MWException(
"sections not supported for content model " .
1489 if ( is_null( $baseRevId ) || $sectionId ===
'new' ) {
1494 wfDebug( __METHOD__ .
" asked for bogus section (page: " .
1495 $this->
getId() .
"; section: $sectionId)\n" );
1499 $oldContent =
$rev->getContent();
1502 if ( !$oldContent ) {
1503 wfDebug( __METHOD__ .
": no page text\n" );
1507 $newContent = $oldContent->replaceSection( $sectionId, $sectionContent, $sectionTitle );
1651 User $user = null, $serialFormat = null, $tags = []
1656 if ( $tags === null ) {
1661 if ( $this->mTitle->getText() ===
'' ) {
1662 throw new MWException(
'Something is trying to edit an article with an empty title' );
1668 $this->mTitle->getPrefixedText()
1685 if ( !
Hooks::run(
'PageContentSave', $hook_args )
1688 if ( $hookStatus->isOK() ) {
1690 $hookStatus->fatal(
'edit-hook-aborted' );
1699 if ( $old_content && $old_content->getModel() !== $content->getModel() ) {
1700 $tags[] =
'mw-contentmodelchange';
1704 if ( $wgUseAutomaticEditSummaries && ( $flags &
EDIT_AUTOSUMMARY ) && $summary ==
'' ) {
1705 $handler = $content->getContentHandler();
1706 $summary =
$handler->getAutosummary( $old_content, $content, $flags );
1718 $pstContent = $editInfo->pstContent;
1721 'minor' => ( $flags & EDIT_MINOR ) && $user->isAllowed(
'minoredit' ),
1722 'serialized' => $editInfo->pst,
1723 'serialFormat' => $serialFormat,
1724 'baseRevId' => $baseRevId,
1725 'oldRevision' => $old_revision,
1726 'oldContent' => $old_content,
1730 'tags' => ( $tags !== null ) ? (
array)$tags : []
1735 $status = $this->
doModify( $pstContent, $flags, $user, $summary, $meta );
1737 $status = $this->
doCreate( $pstContent, $flags, $user, $summary, $meta );
1742 $user->addAutopromoteOnceGroups(
'onEdit' );
1743 $user->addAutopromoteOnceGroups(
'onView' );
1771 $oldid = $meta[
'oldId'];
1773 $oldContent = $meta[
'oldContent'];
1774 $newsize = $content->
getSize();
1778 $status->fatal(
'edit-gone-missing' );
1781 } elseif ( !$oldContent ) {
1783 throw new MWException(
"Could not find text for current revision {$oldid}." );
1788 'page' => $this->
getId(),
1789 'title' => $this->mTitle,
1791 'minor_edit' => $meta[
'minor'],
1792 'text' => $meta[
'serialized'],
1794 'parent_id' => $oldid,
1795 'user' => $user->
getId(),
1796 'user_text' => $user->
getName(),
1797 'timestamp' => $now,
1798 'content_model' => $content->
getModel(),
1799 'content_format' => $meta[
'serialFormat'],
1802 $changed = !$content->
equals( $oldContent );
1808 $status->merge( $prepStatus );
1813 $dbw->startAtomic( __METHOD__ );
1818 if ( $latestNow != $oldid ) {
1819 $dbw->endAtomic( __METHOD__ );
1821 $status->fatal(
'edit-conflict' );
1832 $revisionId = $revision->insertOn( $dbw );
1834 if ( !$this->
updateRevisionOn( $dbw, $revision, null, $meta[
'oldIsRedirect'] ) ) {
1835 throw new MWException(
"Failed to update page row to use new revision." );
1839 [ $this, $revision, $meta[
'baseRevId'], $user ] );
1844 $patrolled = $wgUseRCPatrol && !count(
1845 $this->mTitle->getUserPermissionsErrors(
'autopatrol', $user ) );
1850 $revision->isMinor(),
1857 $oldContent ? $oldContent->getSize() : 0,
1867 $dbw->endAtomic( __METHOD__ );
1868 $this->mTimestamp = $now;
1873 $revision->setUserIdAndName(
1881 $status->value[
'revision'] = $revision;
1883 $status->warning(
'edit-no-change' );
1886 $this->mTitle->invalidateCache( $now );
1903 'changed' => $changed,
1904 'oldcountable' => $meta[
'oldCountable'],
1905 'oldrevision' => $meta[
'oldRevision']
1910 null, null, &
$flags, $revision, &
$status, $meta[
'baseRevId'] ];
1936 global $wgUseRCPatrol, $wgUseNPPatrol;
1941 $newsize = $content->
getSize();
1943 $status->merge( $prepStatus );
1949 $dbw->startAtomic( __METHOD__ );
1953 if ( $newid ===
false ) {
1954 $dbw->endAtomic( __METHOD__ );
1955 $status->fatal(
'edit-already-exists' );
1968 'title' => $this->mTitle,
1970 'minor_edit' => $meta[
'minor'],
1971 'text' => $meta[
'serialized'],
1973 'user' => $user->
getId(),
1974 'user_text' => $user->
getName(),
1975 'timestamp' => $now,
1976 'content_model' => $content->
getModel(),
1977 'content_format' => $meta[
'serialFormat'],
1981 $revisionId = $revision->
insertOn( $dbw );
1984 throw new MWException(
"Failed to update page row to use new revision." );
1987 Hooks::run(
'NewRevisionFromEditComplete', [ $this, $revision,
false, $user ] );
1992 $patrolled = ( $wgUseRCPatrol || $wgUseNPPatrol ) &&
1993 !count( $this->mTitle->getUserPermissionsErrors(
'autopatrol', $user ) );
1998 $revision->isMinor(),
2012 $dbw->endAtomic( __METHOD__ );
2013 $this->mTimestamp = $now;
2016 $status->value[
'revision'] = $revision;
2027 $this->
doEditUpdates( $revision, $user, [
'created' =>
true ] );
2063 if ( $this->
getTitle()->isConversionTable() ) {
2066 $options->disableContentConversion();
2105 $serialFormat = null, $useCache =
true
2109 if ( is_object( $revision ) ) {
2110 $revid = $revision->getId();
2115 if ( $revid !== null ) {
2126 if ( $serialFormat === null ) {
2130 if ( $this->mPreparedEdit
2131 && isset( $this->mPreparedEdit->newContent )
2132 && $this->mPreparedEdit->newContent->equals( $content )
2133 && $this->mPreparedEdit->revid == $revid
2134 && $this->mPreparedEdit->format == $serialFormat
2142 $cachedEdit = $useCache && $wgAjaxEditStash
2147 Hooks::run(
'ArticlePrepareTextForEdit', [ $this, $popts ] );
2150 if ( $cachedEdit ) {
2151 $edit->timestamp = $cachedEdit->timestamp;
2156 $edit->revid = $revid;
2158 if ( $cachedEdit ) {
2159 $edit->pstContent = $cachedEdit->pstContent;
2161 $edit->pstContent = $content
2166 $edit->format = $serialFormat;
2168 if ( $cachedEdit ) {
2169 $edit->output = $cachedEdit->output;
2176 $oldCallback = $edit->popts->getCurrentRevisionCallback();
2177 $edit->popts->setCurrentRevisionCallback(
2179 if ( $title->
equals( $revision->getTitle() ) ) {
2182 return call_user_func( $oldCallback, $title,
$parser );
2188 $edit->popts->setSpeculativeRevIdCallback(
function () {
2197 $edit->output = $edit->pstContent
2198 ? $edit->pstContent->getParserOutput( $this->mTitle, $revid, $edit->popts )
2206 $edit->newText = $edit->newContent
2209 $edit->oldText = $edit->oldContent
2212 $edit->pst = $edit->pstContent ? $edit->pstContent->serialize( $serialFormat ) :
'';
2214 if ( $edit->output ) {
2219 $this->mPreparedEdit = $edit;
2252 'restored' =>
false,
2253 'oldrevision' => null,
2254 'oldcountable' => null
2258 $logger = LoggerFactory::getInstance(
'SaveParse' );
2262 if ( !$this->mPreparedEdit ) {
2263 $logger->debug( __METHOD__ .
": No prepared edit...\n" );
2264 } elseif ( $this->mPreparedEdit->output->getFlag(
'vary-revision' ) ) {
2265 $logger->info( __METHOD__ .
": Prepared edit has vary-revision...\n" );
2266 } elseif ( $this->mPreparedEdit->output->getFlag(
'vary-revision-id' )
2267 && $this->mPreparedEdit->output->getSpeculativeRevIdUsed() !== $revision->
getId()
2269 $logger->info( __METHOD__ .
": Prepared edit has vary-revision-id with wrong ID...\n" );
2270 } elseif ( $this->mPreparedEdit->output->getFlag(
'vary-user' ) && !
$options[
'changed'] ) {
2271 $logger->info( __METHOD__ .
": Prepared edit has vary-user and is null...\n" );
2273 wfDebug( __METHOD__ .
": Using prepared edit...\n" );
2287 $editInfo->output, $this, $editInfo->popts,
2294 $updates =
$content->getSecondaryDataUpdates(
2295 $this->
getTitle(), null, $recursive, $editInfo->output
2297 foreach ( $updates
as $update ) {
2299 $update->setRevision( $revision );
2300 $update->setTriggeringUser( $user );
2304 if ( $wgRCWatchCategoryMembership
2315 'pageId' => $this->
getId(),
2324 if (
Hooks::run(
'ArticleEditUpdatesDeleteFromRecentchanges', [ &$this ] ) ) {
2326 if ( mt_rand( 0, 9 ) == 0 ) {
2331 if ( !$this->
exists() ) {
2335 $id = $this->
getId();
2336 $title = $this->mTitle->getPrefixedDBkey();
2337 $shortTitle = $this->mTitle->getDBkey();
2339 if (
$options[
'oldcountable'] ===
'no-change' ||
2345 } elseif (
$options[
'oldcountable'] !== null ) {
2350 $edits =
$options[
'changed'] ? 1 : 0;
2351 $total =
$options[
'created'] ? 1 : 0;
2365 if ( !$recipient ) {
2366 wfDebug( __METHOD__ .
": invalid username\n" );
2370 if (
Hooks::run(
'ArticleEditUpdateNewTalk', [ &$this, $recipient ] ) ) {
2373 $recipient->setNewtalk(
true, $revision );
2374 } elseif ( $recipient->isLoggedIn() ) {
2375 $recipient->setNewtalk(
true, $revision );
2377 wfDebug( __METHOD__ .
": don't need to notify a nonexistent user\n" );
2386 if ( $msgtext ===
false || $msgtext === null ) {
2392 if ( $wgContLang->hasVariants() ) {
2393 $wgContLang->updateConversionTable( $this->mTitle );
2398 self::onArticleCreate( $this->mTitle );
2400 self::onArticleEdit( $this->mTitle, $revision );
2423 &$cascade, $reason,
User $user, $tags = null
2432 $restrictionTypes = $this->mTitle->getRestrictionTypes();
2433 $id = $this->
getId();
2444 $isProtected =
false;
2450 foreach ( $restrictionTypes
as $action ) {
2451 if ( !isset( $expiry[$action] ) || $expiry[$action] === $dbw->getInfinity() ) {
2452 $expiry[$action] =
'infinity';
2454 if ( !isset( $limit[$action] ) ) {
2455 $limit[$action] =
'';
2456 } elseif ( $limit[$action] !=
'' ) {
2461 $current = implode(
'', $this->mTitle->getRestrictions( $action ) );
2462 if ( $current !=
'' ) {
2463 $isProtected =
true;
2466 if ( $limit[$action] != $current ) {
2468 } elseif ( $limit[$action] !=
'' ) {
2472 if ( $this->mTitle->getRestrictionExpiry( $action ) != $expiry[$action] ) {
2478 if ( !$changed && $protect && $this->mTitle->areRestrictionsCascading() != $cascade ) {
2488 $revCommentMsg =
'unprotectedarticle';
2489 $logAction =
'unprotect';
2490 } elseif ( $isProtected ) {
2491 $revCommentMsg =
'modifiedarticleprotection';
2492 $logAction =
'modify';
2494 $revCommentMsg =
'protectedarticle';
2495 $logAction =
'protect';
2499 $reason = $wgContLang->truncate( $reason, 255 );
2501 $logRelationsValues = [];
2502 $logRelationsField = null;
2503 $logParamsDetails = [];
2506 $nullRevision = null;
2509 if ( !
Hooks::run(
'ArticleProtect', [ &$this, &$user, $limit, $reason ] ) ) {
2514 $editrestriction = isset( $limit[
'edit'] )
2515 ? [ $limit[
'edit'] ]
2516 : $this->mTitle->getRestrictions(
'edit' );
2517 foreach ( array_keys( $editrestriction,
'sysop' )
as $key ) {
2518 $editrestriction[$key] =
'editprotected';
2520 foreach ( array_keys( $editrestriction,
'autoconfirmed' )
as $key ) {
2521 $editrestriction[$key] =
'editsemiprotected';
2524 $cascadingRestrictionLevels = $wgCascadingRestrictionLevels;
2525 foreach ( array_keys( $cascadingRestrictionLevels,
'sysop' )
as $key ) {
2526 $cascadingRestrictionLevels[$key] =
'editprotected';
2528 foreach ( array_keys( $cascadingRestrictionLevels,
'autoconfirmed' )
as $key ) {
2529 $cascadingRestrictionLevels[$key] =
'editsemiprotected';
2533 if ( !array_intersect( $editrestriction, $cascadingRestrictionLevels ) ) {
2548 if ( $nullRevision === null ) {
2549 return Status::newFatal(
'no-null-revision', $this->mTitle->getPrefixedText() );
2552 $logRelationsField =
'pr_id';
2555 foreach ( $limit
as $action => $restrictions ) {
2557 'page_restrictions',
2560 'pr_type' => $action
2564 if ( $restrictions !=
'' ) {
2565 $cascadeValue = ( $cascade && $action ==
'edit' ) ? 1 : 0;
2567 'page_restrictions',
2569 'pr_id' => $dbw->nextSequenceValue(
'page_restrictions_pr_id_seq' ),
2571 'pr_type' => $action,
2572 'pr_level' => $restrictions,
2573 'pr_cascade' => $cascadeValue,
2574 'pr_expiry' => $dbw->encodeExpiry( $expiry[$action] )
2578 $logRelationsValues[] = $dbw->insertId();
2579 $logParamsDetails[] = [
2581 'level' => $restrictions,
2582 'expiry' => $expiry[$action],
2583 'cascade' => (bool)$cascadeValue,
2591 [
'page_restrictions' =>
'' ],
2592 [
'page_id' => $id ],
2597 [ $this, $nullRevision, $latest, $user ] );
2598 Hooks::run(
'ArticleProtectComplete', [ &$this, &$user, $limit, $reason ] );
2603 if ( $limit[
'create'] !=
'' ) {
2604 $dbw->replace(
'protected_titles',
2605 [ [
'pt_namespace',
'pt_title' ] ],
2607 'pt_namespace' => $this->mTitle->getNamespace(),
2608 'pt_title' => $this->mTitle->getDBkey(),
2609 'pt_create_perm' => $limit[
'create'],
2610 'pt_timestamp' => $dbw->timestamp(),
2611 'pt_expiry' => $dbw->encodeExpiry( $expiry[
'create'] ),
2612 'pt_user' => $user->
getId(),
2613 'pt_reason' => $reason,
2616 $logParamsDetails[] = [
2618 'level' => $limit[
'create'],
2619 'expiry' => $expiry[
'create'],
2622 $dbw->delete(
'protected_titles',
2624 'pt_namespace' => $this->mTitle->getNamespace(),
2625 'pt_title' => $this->mTitle->getDBkey()
2631 $this->mTitle->flushRestrictions();
2634 if ( $logAction ==
'unprotect' ) {
2639 '4::description' => $protectDescriptionLog,
2640 '5:bool:cascade' => $cascade,
2641 'details' => $logParamsDetails,
2647 $logEntry->setTarget( $this->mTitle );
2648 $logEntry->setComment( $reason );
2649 $logEntry->setPerformer( $user );
2650 $logEntry->setParameters(
$params );
2651 if ( !is_null( $nullRevision ) ) {
2652 $logEntry->setAssociatedRevId( $nullRevision->getId() );
2654 $logEntry->setTags( $tags );
2655 if ( $logRelationsField !== null && count( $logRelationsValues ) ) {
2656 $logEntry->setRelations( [ $logRelationsField => $logRelationsValues ] );
2658 $logId = $logEntry->insert();
2659 $logEntry->publish( $logId );
2676 array $expiry, $cascade, $reason,
$user = null
2682 $editComment = $wgContLang->ucfirst(
2685 $this->mTitle->getPrefixedText()
2686 )->inContentLanguage()->text()
2689 $editComment .=
wfMessage(
'colon-separator' )->inContentLanguage()->text() . $reason;
2692 if ( $protectDescription ) {
2693 $editComment .=
wfMessage(
'word-separator' )->inContentLanguage()->text();
2694 $editComment .=
wfMessage(
'parentheses' )->params( $protectDescription )
2695 ->inContentLanguage()->text();
2698 $editComment .=
wfMessage(
'word-separator' )->inContentLanguage()->text();
2699 $editComment .=
wfMessage(
'brackets' )->params(
2700 wfMessage(
'protect-summary-cascade' )->inContentLanguage()->
text()
2701 )->inContentLanguage()->text();
2706 $nullRev->insertOn( $dbw );
2709 $oldLatest = $nullRev->getParentId();
2723 if ( $expiry !=
'infinity' ) {
2726 $wgContLang->timeanddate( $expiry,
false,
false ),
2727 $wgContLang->date( $expiry,
false,
false ),
2728 $wgContLang->time( $expiry,
false,
false )
2729 )->inContentLanguage()->text();
2731 return wfMessage(
'protect-expiry-indefinite' )
2732 ->inContentLanguage()->text();
2744 $protectDescription =
'';
2746 foreach ( array_filter( $limit )
as $action => $restrictions ) {
2747 # $action is one of $wgRestrictionTypes = [ 'create', 'edit', 'move', 'upload' ].
2748 # All possible message keys are listed here for easier grepping:
2749 # * restriction-create
2750 # * restriction-edit
2751 # * restriction-move
2752 # * restriction-upload
2753 $actionText =
wfMessage(
'restriction-' . $action )->inContentLanguage()->text();
2754 # $restrictions is one of $wgRestrictionLevels = [ '', 'autoconfirmed', 'sysop' ],
2755 # with '' filtered out. All possible message keys are listed below:
2756 # * protect-level-autoconfirmed
2757 # * protect-level-sysop
2758 $restrictionsText =
wfMessage(
'protect-level-' . $restrictions )
2759 ->inContentLanguage()->text();
2763 if ( $protectDescription !==
'' ) {
2764 $protectDescription .=
wfMessage(
'word-separator' )->inContentLanguage()->text();
2766 $protectDescription .=
wfMessage(
'protect-summary-desc' )
2767 ->params( $actionText, $restrictionsText, $expiryText )
2768 ->inContentLanguage()->text();
2771 return $protectDescription;
2788 $protectDescriptionLog =
'';
2790 foreach ( array_filter( $limit )
as $action => $restrictions ) {
2792 $protectDescriptionLog .= $wgContLang->getDirMark() .
2793 "[$action=$restrictions] ($expiryText)";
2796 return trim( $protectDescriptionLog );
2809 if ( !is_array(
$limit ) ) {
2810 throw new MWException( __METHOD__ .
' given non-array restriction set' );
2816 foreach ( array_filter(
$limit )
as $action => $restrictions ) {
2817 $bits[] =
"$action=$restrictions";
2820 return implode(
':', $bits );
2840 $reason, $suppress =
false, $u1 = null, $u2 = null, &$error =
'',
User $user = null
2865 $reason, $suppress =
false, $u1 = null, $u2 = null, &$error =
'',
User $user = null,
2866 $tags = [], $logsubtype =
'delete'
2874 if ( $this->mTitle->getDBkey() ===
'' ) {
2875 $status->error(
'cannotdelete',
2882 [ &$this, &
$user, &$reason, &$error, &
$status, $suppress ]
2886 $status->fatal(
'delete-hook-aborted' );
2892 $dbw->startAtomic( __METHOD__ );
2895 $id = $this->
getId();
2901 if ( $id == 0 || $this->
getLatest() != $lockedLatest ) {
2902 $dbw->endAtomic( __METHOD__ );
2904 $status->error(
'cannotdelete',
2910 $namespace = $this->
getTitle()->getNamespace();
2911 $dbKey = $this->
getTitle()->getDBkey();
2923 wfLogWarning( __METHOD__ .
': failed to load content during deletion! '
2924 . $ex->getMessage() );
2937 $deletionFields = [ $dbw->addQuotes( $bitfield ) .
' AS deleted' ];
2939 $deletionFields = [
'rev_deleted AS deleted' ];
2951 $res = $dbw->select(
2953 array_merge( $fields, $deletionFields ),
2954 [
'rev_page' => $id ],
2960 foreach (
$res as $row ) {
2962 'ar_namespace' => $namespace,
2963 'ar_title' => $dbKey,
2964 'ar_comment' => $row->rev_comment,
2965 'ar_user' => $row->rev_user,
2966 'ar_user_text' => $row->rev_user_text,
2967 'ar_timestamp' => $row->rev_timestamp,
2968 'ar_minor_edit' => $row->rev_minor_edit,
2969 'ar_rev_id' => $row->rev_id,
2970 'ar_parent_id' => $row->rev_parent_id,
2971 'ar_text_id' => $row->rev_text_id,
2974 'ar_len' => $row->rev_len,
2975 'ar_page_id' => $id,
2976 'ar_deleted' => $row->deleted,
2977 'ar_sha1' => $row->rev_sha1,
2979 if ( $wgContentHandlerUseDB ) {
2980 $rowInsert[
'ar_content_model'] = $row->rev_content_model;
2981 $rowInsert[
'ar_content_format'] = $row->rev_content_format;
2983 $rowsInsert[] = $rowInsert;
2986 $dbw->insert(
'archive', $rowsInsert, __METHOD__ );
2988 $archivedRevisionCount = $dbw->affectedRows();
2993 $wikiPageBeforeDelete = clone $this;
2996 $dbw->delete(
'page', [
'page_id' => $id ], __METHOD__ );
2997 $dbw->delete(
'revision', [
'rev_page' => $id ], __METHOD__ );
3000 $logtype = $suppress ?
'suppress' :
'delete';
3003 $logEntry->setPerformer(
$user );
3004 $logEntry->setTarget( $logTitle );
3005 $logEntry->setComment( $reason );
3006 $logEntry->setTags( $tags );
3007 $logid = $logEntry->insert();
3009 $dbw->onTransactionPreCommitOrIdle(
3010 function ()
use ( $dbw, $logEntry, $logid ) {
3012 $logEntry->publish( $logid );
3017 $dbw->endAtomic( __METHOD__ );
3022 &$wikiPageBeforeDelete,
3028 $archivedRevisionCount
3034 $key =
wfMemcKey(
'page-recent-delete', md5( $logTitle->getPrefixedText() ) );
3035 $cache->set( $key, 1, $cache::TTL_DAY );
3051 'page_id' => $this->
getId(),
3054 'page_namespace' => $this->
getTitle()->getNamespace(),
3055 'page_title' => $this->
getTitle()->getDBkey()
3085 foreach ( $updates
as $update ) {
3093 if ( $this->mTitle->getNamespace() ==
NS_FILE ) {
3100 $this->mTitle, $revision, null,
wfWikiID()
3142 $resultDetails = null;
3145 $editErrors = $this->mTitle->getUserPermissionsErrors(
'edit', $user );
3146 $rollbackErrors = $this->mTitle->getUserPermissionsErrors(
'rollback', $user );
3147 $errors = array_merge( $editErrors,
wfArrayDiff2( $rollbackErrors, $editErrors ) );
3150 $errors[] = [
'sessionfailure' ];
3154 $errors[] = [
'actionthrottledtext' ];
3158 if ( !empty( $errors ) ) {
3186 &$resultDetails,
User $guser, $tags = null
3193 return [ [
'readonlytext' ] ];
3198 if ( is_null( $current ) ) {
3200 return [ [
'notanarticle' ] ];
3203 $from = str_replace(
'_',
' ', $fromP );
3206 if (
$from != $current->getUserText() ) {
3207 $resultDetails = [
'current' => $current ];
3208 return [ [
'alreadyrolled',
3209 htmlspecialchars( $this->mTitle->getPrefixedText() ),
3210 htmlspecialchars( $fromP ),
3211 htmlspecialchars( $current->getUserText() )
3218 $user_text = $dbw->addQuotes( $current->getUserText(
Revision::RAW ) );
3219 $s = $dbw->selectRow(
'revision',
3220 [
'rev_id',
'rev_timestamp',
'rev_deleted' ],
3221 [
'rev_page' => $current->getPage(),
3222 "rev_user != {$user} OR rev_user_text != {$user_text}"
3224 [
'USE INDEX' =>
'page_timestamp',
3225 'ORDER BY' =>
'rev_timestamp DESC' ]
3227 if (
$s ===
false ) {
3229 return [ [
'cantrollback' ] ];
3234 return [ [
'notvisiblerev' ] ];
3240 if (
$from ==
'' ) {
3249 $target->getUserText(),
$from,
$s->rev_id,
3251 $current->getId(), $wgContLang->timeanddate( $current->getTimestamp() )
3268 if ( $guser->
isAllowed(
'minoredit' ) ) {
3272 if ( $bot && ( $guser->
isAllowedAny(
'markbotedits',
'bot' ) ) ) {
3276 $targetContent = $target->getContent();
3277 $changingContentModel = $targetContent->getModel() !== $current->getContentModel();
3293 if ( $bot && $guser->
isAllowed(
'markbotedits' ) ) {
3298 if ( $wgUseRCPatrol ) {
3300 $set[
'rc_patrolled'] = 1;
3303 if ( count( $set ) ) {
3304 $dbw->update(
'recentchanges', $set,
3306 'rc_cur_id' => $current->getPage(),
3307 'rc_user_text' => $current->getUserText(),
3308 'rc_timestamp > ' . $dbw->addQuotes(
$s->rev_timestamp ),
3315 return $status->getErrorsArray();
3319 $statusRev = isset(
$status->value[
'revision'] )
3322 if ( !( $statusRev instanceof
Revision ) ) {
3323 $resultDetails = [
'current' => $current ];
3324 return [ [
'alreadyrolled',
3325 htmlspecialchars( $this->mTitle->getPrefixedText() ),
3326 htmlspecialchars( $fromP ),
3327 htmlspecialchars( $current->getUserText() )
3331 if ( $changingContentModel ) {
3335 $log->setPerformer( $guser );
3336 $log->setTarget( $this->mTitle );
3338 $log->setParameters( [
3339 '4::oldmodel' => $current->getContentModel(),
3340 '5::newmodel' => $targetContent->getModel(),
3343 $logId = $log->insert( $dbw );
3344 $log->publish( $logId );
3347 $revId = $statusRev->getId();
3349 Hooks::run(
'ArticleRollbackComplete', [ $this, $guser, $target, $current ] );
3353 'current' => $current,
3354 'target' => $target,
3376 $other->purgeSquid();
3382 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $title );
3404 $other->purgeSquid();
3409 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $title );
3419 if ( $wgContLang->hasVariants() ) {
3420 $wgContLang->updateConversionTable( $title );
3433 $user->setNewtalk(
false );
3454 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $title );
3461 $revid = $revision ? $revision->getId() : null;
3476 $id = $this->
getId();
3482 $res =
$dbr->select(
'categorylinks',
3483 [
'cl_to AS page_title, ' .
NS_CATEGORY .
' AS page_namespace' ],
3486 [
'cl_from' => $id ],
3500 $id = $this->
getId();
3507 $res =
$dbr->select( [
'categorylinks',
'page_props',
'page' ],
3509 [
'cl_from' => $id,
'pp_page=page_id',
'pp_propname' =>
'hiddencat',
3510 'page_namespace' =>
NS_CATEGORY,
'page_title=cl_to' ],
3513 if (
$res !==
false ) {
3514 foreach (
$res as $row ) {
3538 $oldContent = is_null( $oldtext ) ? null :
$handler->unserializeContent( $oldtext );
3539 $newContent = is_null( $newtext ) ? null :
$handler->unserializeContent( $newtext );
3541 return $handler->getAutosummary( $oldContent, $newContent,
$flags );
3564 $id = $id ?: $this->
getId();
3566 $method = __METHOD__;
3568 $dbw->onTransactionPreCommitOrIdle(
3569 function ()
use ( $dbw, $added, $deleted, $id, $method ) {
3570 $ns = $this->
getTitle()->getNamespace();
3572 $addFields = [
'cat_pages = cat_pages + 1' ];
3573 $removeFields = [
'cat_pages = cat_pages - 1' ];
3575 $addFields[] =
'cat_subcats = cat_subcats + 1';
3576 $removeFields[] =
'cat_subcats = cat_subcats - 1';
3578 $addFields[] =
'cat_files = cat_files + 1';
3579 $removeFields[] =
'cat_files = cat_files - 1';
3582 if ( count( $added ) ) {
3583 $existingAdded = $dbw->selectFieldValues(
3586 [
'cat_title' => $added ],
3593 if ( count( $existingAdded ) ) {
3597 [
'cat_title' => $existingAdded ],
3602 $missingAdded = array_diff( $added, $existingAdded );
3603 if ( count( $missingAdded ) ) {
3605 foreach ( $missingAdded
as $cat ) {
3607 'cat_title' => $cat,
3610 'cat_files' => ( $ns ==
NS_FILE ) ? 1 : 0,
3623 if ( count( $deleted ) ) {
3627 [
'cat_title' => $deleted ],
3632 foreach ( $added
as $catName ) {
3634 Hooks::run(
'CategoryAfterPageAdded', [ $cat, $this ] );
3637 foreach ( $deleted
as $catName ) {
3639 Hooks::run(
'CategoryAfterPageRemoved', [ $cat, $this, $id ] );
3645 if ( count( $deleted ) ) {
3646 $rows = $dbw->select(
3648 [
'cat_id',
'cat_title',
'cat_pages',
'cat_subcats',
'cat_files' ],
3649 [
'cat_title' => $deleted,
'cat_pages <= 0' ],
3652 foreach ( $rows
as $row ) {
3654 $cat->refreshCounts();
3673 if ( !
Hooks::run(
'OpportunisticLinksUpdate',
3674 [ $this, $this->mTitle, $parserOutput ]
3682 'isOpportunistic' =>
true,
3686 if ( $this->mTitle->areRestrictionsCascading() ) {
3691 } elseif ( !$config->get(
'MiserMode' ) && $parserOutput->
hasDynamicContent() ) {
3702 $key =
$cache->makeKey(
'dynamic-linksupdate',
'last', $this->
getId() );
3704 if (
$cache->add( $key, time(), $ttl ) ) {
3739 $updates =
$content->getDeletionUpdates( $this );
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
getLinksTimestamp()
Get the page_links_updated field.
isCountable($editInfo=false)
Determine whether a page would be suitable for being counted as an article in the site_stats table ba...
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
static newFromRow($row)
Make a Title object from a DB row.
static purgeExpiredRestrictions()
Purge expired restrictions from the page_restrictions table.
setLastEdit(Revision $revision)
Set the latest revision.
makeParserOptions($context)
Get parser options suitable for rendering the primary article wikitext.
static onArticleCreate(Title $title)
The onArticle*() functions are supposed to be a kind of hooks which should be called whenever any of ...
getUndoContent(Revision $undo, Revision $undoafter=null)
Get the content that needs to be saved in order to undo all revisions between $undo and $undoafter...
touchLinks()
Update page_touched timestamps and send CDN purge messages for pages linking to this title...
getFragment()
Get the Title fragment (i.e.
static getMainWANInstance()
Get the main WAN cache object.
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
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
Database error base class.
static newFromName($name)
Factory function.
the array() calling protocol came about after MediaWiki 1.4rc1.
replaceSectionContent($sectionId, Content $sectionContent, $sectionTitle= '', $edittime=null)
const CONTENT_MODEL_WIKITEXT
getLatest()
Get the page_latest field.
stdClass $mPreparedEdit
Map of cache fields (text, parser output, ect) for a proposed/new edit.
getContentHandler()
Convenience method that returns the ContentHandler singleton for handling the content model that this...
getUser($audience=Revision::FOR_PUBLIC, User $user=null)
doPurge($flags=self::PURGE_ALL)
Perform the actions of a page purging.
getText()
Get the text form (spaces not underscores) of the main part.
clearNotification(&$title, $oldid=0)
Clear the user's notification timestamp for the given title.
processing should stop and the error should be shown to the user * false
static checkCache(Title $title, Content $content, User $user)
Check that a prepared edit is in cache and still up-to-date.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
int $mDataLoadedFrom
One of the READ_* constants.
updateCategoryCounts(array $added, array $deleted, $id=0)
Update all the appropriate counts in the category table, given that we've added the categories $added...
Class the manages updates of *_link tables as well as similar extension-managed tables.
isAllowedAny()
Check if user is allowed to access a feature / make an action.
static getForModelID($modelId)
Returns the ContentHandler singleton for the given model ID.
protectDescription(array $limit, array $expiry)
Builds the description to serve as comment for the edit.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
static newFatal($message)
Factory function for fatal errors.
Set options of the Parser.
insertRedirect()
Insert an entry for this page into the redirect table if the content is a redirect.
pingLimiter($action= 'edit', $incrBy=1)
Primitive rate limits: enforce maximum actions per time period to put a brake on flooding.
updateRevisionOn($dbw, $revision, $lastRevision=null, $lastRevIsRedirect=null)
Update the page record to point to a newly saved revision.
Handles purging appropriate CDN URLs given a title (or titles)
const READ_LOCKING
Constants for object loading bitfield flags (higher => higher QoS)
triggerOpportunisticLinksUpdate(ParserOutput $parserOutput)
Opportunistically enqueue link update jobs given fresh parser output if useful.
static newFromUserAndLang(User $user, Language $lang)
Get a ParserOptions object from a given user and language.
getMinorEdit()
Returns true if last revision was marked as "minor edit".
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 $revId
getOtherPage()
Get the other title for this page, if this is a subject page get the talk page, if it is a subject pa...
static getLocalClusterInstance()
Get the main cluster-local cache object.
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
it s the revision text itself In either if gzip is the revision text is gzipped $flags
getContributors()
Get a list of users who have edited this article, not including the user who made the most recent rev...
checkFlags($flags)
Check flags and add EDIT_NEW or EDIT_UPDATE to them as needed.
static getMainStashInstance()
Get the cache object for the main stash.
insertProtectNullRevision($revCommentMsg, array $limit, array $expiry, $cascade, $reason, $user=null)
Insert a new null revision for this page.
static newFromPageId($pageId, $revId=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given page ID...
when a variable name is used in a it is silently declared as a new local masking the global
getTouched()
Get the page_touched field.
doDeleteArticleReal($reason, $suppress=false, $u1=null, $u2=null, &$error= '', User $user=null, $tags=[], $logsubtype= 'delete')
Back-end article deletion Deletes the article with database consistency, writes logs, purges caches.
matchEditToken($val, $salt= '', $request=null, $maxage=null)
Check given value against the token value stored in the session.
getDeletionUpdates(Content $content=null)
Returns a list of updates to be performed when this page is deleted.
string $mTimestamp
Timestamp of the current revision or empty string if not loaded.
clearCacheFields()
Clear the object cache fields.
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php For a description of the see design txt $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
loadLastEdit()
Loads everything except the text This isn't necessary for all uses, so it's only done if needed...
const PURGE_CLUSTER_PCACHE
getName()
Get the user name, or the IP of an anonymous user.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist & $tables
pageDataFromTitle($dbr, $title, $options=[])
Fetch a page record matching the Title object's namespace and title using a sanitized title string...
isRedirect()
Tests if the article content represents a redirect.
static queueRecursiveJobsForTable(Title $title, $table)
Queue a RefreshLinks job for any table.
wfArrayDiff2($a, $b)
Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
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 '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. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) '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 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) '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:Associative array mapping language codes to prefixed links of the form"language:title".&$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!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
getTitleKey()
Get the user's name escaped by underscores.
static notifyEdit($timestamp, &$title, $minor, &$user, $comment, $oldId, $lastTimestamp, $bot, $ip= '', $oldSize=0, $newSize=0, $newId=0, $patrol=0, $tags=[])
Makes an entry in the database corresponding to an edit.
doEdit($text, $summary, $flags=0, $baseRevId=false, $user=null)
Change an existing article or create a new article.
getContentModel()
Returns the page's content model id (see the CONTENT_MODEL_XXX constants).
getLastPurgeTimestamp()
Get the last time a user explicitly purged the page via action=purge.
checkTouched()
Loads page_touched and returns a value indicating if it should be used.
Database independant search index updater.
getSize()
Returns the content's nominal size in "bogo-bytes".
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfMsgReplaceArgs($message, $args)
Replace message parameter keys on the given formatted output.
loadFromRow($data, $from)
Load the object from a database row.
static getLocalizedName($name, Language $lang=null)
Returns the localized name for a given content model.
getRevision()
Get the latest revision.
getContent($audience=Revision::FOR_PUBLIC, User $user=null)
Get the content of the current revision.
Interface for type hinting (accepts WikiPage, Article, ImagePage, CategoryPage)
static invalidateCache(Title $title, $revid=null)
Clear the info cache for a given Title.
getCacheExpiry()
Returns the number of seconds after which this object should expire.
wfGetLB($wiki=false)
Get a load balancer object.
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.
deleteTitleProtection()
Remove any title protection due to page existing.
static getMain()
Static methods.
static singleton()
Get an instance of this class.
static clearFileCache(Title $title)
Clear the file caches for a page for all actions.
commitRollback($fromP, $summary, $bot, &$resultDetails, User $guser, $tags=null)
Backend implementation of doRollback(), please refer there for parameter and return value documentati...
isAllowed($action= '')
Internal mechanics of testing a permission.
Class to invalidate the HTML cache of all the pages linking to a given title.
getDBkey()
Get the main part with underscores.
wfWarn($msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock()-offset Set to overwrite offset parameter in $wgRequest set to ''to unsetoffset-wrap String Wrap the message in html(usually something like"<
getComment($audience=Revision::FOR_PUBLIC, User $user=null)
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
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
followRedirect()
Get the Title object or URL this page redirects to.
static loadFromTimestamp($db, $title, $timestamp)
Load the revision for the given title with the given timestamp.
static singleton()
Get a RepoGroup instance.
static getContentText(Content $content=null)
Convenience function for getting flat text from a Content object.
getContentHandler()
Returns the content handler appropriate for this revision's content model.
doDeleteArticle($reason, $suppress=false, $u1=null, $u2=null, &$error= '', User $user=null)
Same as doDeleteArticleReal(), but returns a simple boolean.
static newNullRevision($dbw, $pageId, $summary, $minor, $user=null)
Create a new null-revision for insertion into a page's history.
static newFromRow($row, $from= 'fromdb')
Constructor from a database row.
doRollback($fromP, $summary, $token, $bot, &$resultDetails, User $user, $tags=null)
Roll back the most recent consecutive set of edits to a page from the same user; fails if there are n...
Class for handling updates to the site_stats table.
incEditCount()
Deferred version of incEditCountImmediate()
__clone()
Makes sure that the mTitle object is cloned to the newly cloned WikiPage.
doCreate(Content $content, $flags, User $user, $summary, array $meta)
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
doModify(Content $content, $flags, User $user, $summary, array $meta)
Base interface for content objects.
static newFromTitle($title)
Factory function.
getOldestRevision()
Get the Revision object of the oldest revision.
Deferrable Update for closure/callback updates via IDatabase::doAtomicSection()
getHiddenCategories()
Returns a list of hidden categories this page is a member of.
doViewUpdates(User $user, $oldid=0)
Do standard deferred updates after page view (existing or missing page)
getTitle()
Get the title object of the article.
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
static isIP($name)
Does the string match an anonymous IP address?
wfIncrStats($key, $count=1)
Increment a statistics counter.
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
namespace and then decline to actually register it file or subcat img or subcat $title
static newKnownCurrent(IDatabase $db, $pageId, $revId)
Load a revision based on a known page ID and current revision ID from the DB.
hasViewableContent()
Check if this page is something we're going to be showing some sort of sensible content for...
static newGood($value=null)
Factory function for good results.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
getNamespace()
Get the namespace index, i.e.
static getDBOptions($bitfield)
Get an appropriate DB index, options, and fallback DB index for a query.
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
equals(Title $title)
Compare with another title.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
static newFromResult($res)
static makeContent($text, Title $title=null, $modelId=null, $format=null)
Convenience function for creating a Content object from a given textual representation.
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
getInterwiki()
Get the interwiki prefix.
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
Special handling for file pages.
getRedirectURL($rt)
Get the Title object or URL to use for a redirect.
getContentHandler()
Returns the ContentHandler instance to be used to deal with the content of this WikiPage.
equals(Content $that=null)
Returns true if this Content objects is conceptually equivalent to the given Content object...
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
getAutoDeleteReason(&$hasHistory)
Auto-generates a deletion reason.
static onArticleEdit(Title $title, Revision $revision=null)
Purge caches on page update etc.
static singleton($wiki=false)
static singleton()
Get an instance of this object.
prepareSave(WikiPage $page, $flags, $parentRevId, User $user)
Prepare Content for saving.
getUserText($audience=Revision::FOR_PUBLIC, User $user=null)
Class representing a MediaWiki article and history.
static newFromId($id, $flags=0)
Load a page revision from a given revision ID number.
replaceSectionAtRev($sectionId, Content $sectionContent, $sectionTitle= '', $baseRevId=null)
prepareContentForEdit(Content $content, $revision=null, User $user=null, $serialFormat=null, $useCache=true)
Prepare content which is about to be saved.
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 newDynamic(Title $title, array $params)
static addUpdate(DeferrableUpdate $update, $stage=self::POSTSEND)
Add an update to the deferred list to be run later by execute()
wfRandom()
Get a random decimal value between 0 and 1, in a way not likely to give duplicate values for any real...
Job to add recent change entries mentioning category membership changes.
Class for creating log entries manually, to inject them into the database.
wfReadOnlyReason()
Check if the site is in read-only mode and return the message if so.
hasDynamicContent()
Check whether the cache TTL was lowered due to dynamic content.
doEditUpdates(Revision $revision, User $user, array $options=[])
Do standard deferred updates after page edit.
getId()
Get the user's ID.
insertOn($dbw)
Insert a new revision into the database, returning the new revision ID number on success and dies hor...
Overloads the relevant methods of the real ResultsWrapper so it doesn't go anywhere near an actual da...
isLocal()
Whether this content displayed on this page comes from the local database.
insertOn($dbw, $pageId=null)
Insert a new empty page record for this article.
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.
static convertSelectType($type)
Convert 'fromdb', 'fromdbmaster' and 'forupdate' to READ_* constants.
supportsSections()
Returns true if this page's content model supports sections.
static newPrioritized(Title $title, array $params)
preSaveTransform(Title $title, User $user, ParserOptions $parserOptions)
Returns a Content object with pre-save transformations applied (or this object if no transformations ...
getContent($audience=self::FOR_PUBLIC, User $user=null)
Fetch revision content if it's available to the specified audience.
updateRedirectOn($dbw, $redirectTitle, $lastRevIsRedirect=null)
Add row to the redirect table if this is a redirect, remove otherwise.
shouldCheckParserCache(ParserOptions $parserOptions, $oldId)
Should the parser cache be used?
static invalidateModuleCache(Title $title, Revision $old=null, Revision $new=null, $wikiId)
Clear the preloadTitleInfo() cache for all wiki modules on this wiki on page change if it was a JS or...
getRedirectTarget()
If this page is a redirect, get its target.
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
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Interface for database access objects.
updateIfNewerOn($dbw, $revision)
If the given revision is newer than the currently set page_latest, update the page record...
static newFromID($id, $from= 'fromdb')
Constructor from a page id.
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
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method.MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances.The"Spi"in MediaWiki\Logger\Spi stands for"service provider interface".An SPI is an API intended to be implemented or extended by a third party.This software design pattern is intended to enable framework extension and replaceable components.It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki.The service provider interface allows the backend logging library to be implemented in multiple ways.The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime.This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance.Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
loadPageData($from= 'fromdb')
Load the object from a given source by title.
insertRedirectEntry(Title $rt, $oldLatest=null)
Insert or update the redirect table entry for this page to indicate it redirects to $rt...
getParserOutput(ParserOptions $parserOptions, $oldid=null, $forceParse=false)
Get a ParserOutput for the given ParserOptions and revision ID.
wfMemcKey()
Make a cache key for the local wiki.
static addCallableUpdate($callable, $stage=self::POSTSEND, IDatabase $dbw=null)
Add a callable update.
setTimestamp($ts)
Set the page timestamp (use only to avoid DB queries)
lockAndGetLatest()
Lock the page row for this title+id and return page_latest (or 0)
wfLogWarning($msg, $callerOffset=1, $level=E_USER_WARNING)
Send a warning as a PHP error and the debug log.
doEditContent(Content $content, $summary, $flags=0, $baseRevId=false, User $user=null, $serialFormat=null, $tags=[])
Change an existing article or create a new article.
static notifyNew($timestamp, &$title, $minor, &$user, $comment, $bot, $ip= '', $size=0, $newId=0, $patrol=0, $tags=[])
Makes an entry in the database corresponding to page creation Note: the title object must be loaded w...
pageData($dbr, $conditions, $options=[])
Fetch a page record with the given conditions.
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
getModel()
Returns the ID of the content model used by this Content object.
static logException($e)
Log an exception to the exception log (if enabled).
static newFromRow($row, $title=null)
Factory function, for constructing a Category object from a result set.
prepareTextForEdit($text, $revid=null, User $user=null)
Prepare text which is about to be saved.
wfTimestampOrNull($outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
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.
clearPreparedEdit()
Clear the mPreparedEdit cache field, as may be needed by mutable content types.
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 incomplete not yet checked for validity & $retval
const PURGE_GLOBAL_PCACHE
__construct(Title $title)
Constructor and clear the article.
doDeleteUpdates($id, Content $content=null, Revision $revision=null)
Do some database updates after deletion.
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 one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
getText($audience=Revision::FOR_PUBLIC, User $user=null)
Get the text of the current revision.
pageDataFromId($dbr, $id, $options=[])
Fetch a page record matching the requested ID.
Special handling for category pages.
static singleton()
Get the signleton instance of this class.
purgeSquid()
Purge all applicable CDN URLs.
doUpdateRestrictions(array $limit, array $expiry, &$cascade, $reason, User $user, $tags=null)
Update the article's restriction field, and leave a log entry.
static flattenRestrictions($limit)
Take an array of page restrictions and flatten it to a string suitable for insertion into the page_re...
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
static runLegacyHooks($event, $args=[], $deprecatedVersion=null)
Call a legacy hook that uses text instead of Content objects.
getCreator($audience=Revision::FOR_PUBLIC, User $user=null)
Get the User object of the user who created the page.
protectDescriptionLog(array $limit, array $expiry)
Builds the description to serve as comment for the log entry.