Go to the documentation of this file.
47 return 'deleterevision';
56 return $rev ?
$rev->getTitle() : $target;
64 $ids = array_map(
'intval', $this->ids );
70 'rev_page' => $this->
title->getArticleID(),
74 'ORDER BY' =>
'rev_id DESC',
75 'USE INDEX' => [
'revision' =>
'PRIMARY' ]
83 $queryInfo[
'join_conds'],
84 $queryInfo[
'options'],
93 $queryInfo[
'options'],
94 $queryInfo[
'join_conds']
96 if ( $live->numRows() >=
count(
$ids ) ) {
102 $archiveQueryInfo = [
103 'tables' => $arQuery[
'tables'],
104 'fields' => $arQuery[
'fields'],
108 'options' => [
'ORDER BY' =>
'ar_rev_id DESC' ],
109 'join_conds' => $arQuery[
'joins'],
113 $archiveQueryInfo[
'tables'],
114 $archiveQueryInfo[
'fields'],
115 $archiveQueryInfo[
'conds'],
116 $archiveQueryInfo[
'join_conds'],
117 $archiveQueryInfo[
'options'],
122 $archived = $db->select(
123 $archiveQueryInfo[
'tables'],
124 $archiveQueryInfo[
'fields'],
125 $archiveQueryInfo[
'conds'],
127 $archiveQueryInfo[
'options'],
128 $archiveQueryInfo[
'join_conds']
131 if ( $archived->numRows() == 0 ) {
133 } elseif ( $live->numRows() == 0 ) {
138 foreach ( $live
as $row ) {
139 $rows[$row->rev_id] = $row;
141 foreach ( $archived
as $row ) {
142 $rows[$row->ar_rev_id] = $row;
150 if ( isset( $row->rev_id ) ) {
152 } elseif ( isset( $row->ar_rev_id ) ) {
156 throw new MWException(
'Invalid row type in RevDelRevisionList' );
161 if ( is_null( $this->currentRevId ) ) {
163 $this->currentRevId = $dbw->selectField(
164 'page',
'page_latest', $this->
title->pageCond(), __METHOD__ );
174 $this->
title->invalidateCache();
179 $this->
title->purgeSquid();
181 Hooks::run(
'ArticleRevisionVisibilitySet', [ $this->
title, $this->ids, $visibilityChangeMap ] );
doPreCommitUpdates()
A hook for setVisibility(): do batch updates pre-commit.
static newFromId( $id, $flags=0)
Load a page revision from a given revision ID number.
doPostCommitUpdates(array $visibilityChangeMap)
A hook for setVisibility(): do any necessary updates post-commit.
static getArchiveQueryInfo()
Return the tables, fields, and join conditions to be selected to create a new archived revision objec...
getType()
Get the internal type name of this list.
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 getQueryInfo( $options=[])
Return the tables, fields, and join conditions to be selected to create a new revision object.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
static getRelationType()
Get the DB field name associated with the ID list.
List for revision table items.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Abstract base class for a list of deletable items.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
static getRevdelConstant()
Get the revision deletion constant for this list type Override this function.
static newGood( $value=null)
Factory function for good results.
getSuppressBit()
Get the integer value of the flag used for suppression.
static getRestriction()
Get the user right required for this list type Override this function.
Item class for a archive table row by ar_rev_id – actually used via RevDelRevisionList.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Item class for a live revision table row.
newItem( $row)
Create an item object from a DB result row.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
static suggestTarget( $target, array $ids)
Suggest a target for the revision deletion Optionally override this function.