MediaWiki  1.33.0
RevDelLogList.php
Go to the documentation of this file.
1 <?php
23 
27 class RevDelLogList extends RevDelList {
28  public function getType() {
29  return 'logging';
30  }
31 
32  public static function getRelationType() {
33  return 'log_id';
34  }
35 
36  public static function getRestriction() {
37  return 'deletelogentry';
38  }
39 
40  public static function getRevdelConstant() {
42  }
43 
44  public static function suggestTarget( $target, array $ids ) {
45  $result = wfGetDB( DB_REPLICA )->select( 'logging',
46  'log_type',
47  [ 'log_id' => $ids ],
48  __METHOD__,
49  [ 'DISTINCT' ]
50  );
51  if ( $result->numRows() == 1 ) {
52  // If there's only one type, the target can be set to include it.
53  return SpecialPage::getTitleFor( 'Log', $result->current()->log_type );
54  }
55 
56  return SpecialPage::getTitleFor( 'Log' );
57  }
58 
63  public function doQuery( $db ) {
64  $ids = array_map( 'intval', $this->ids );
65 
66  $commentQuery = CommentStore::getStore()->getJoin( 'log_comment' );
67  $actorQuery = ActorMigration::newMigration()->getJoin( 'log_user' );
68 
69  return $db->select(
70  [ 'logging' ] + $commentQuery['tables'] + $actorQuery['tables'],
71  [
72  'log_id',
73  'log_type',
74  'log_action',
75  'log_timestamp',
76  'log_namespace',
77  'log_title',
78  'log_page',
79  'log_params',
80  'log_deleted'
81  ] + $commentQuery['fields'] + $actorQuery['fields'],
82  [ 'log_id' => $ids ],
83  __METHOD__,
84  [ 'ORDER BY' => 'log_id DESC' ],
85  $commentQuery['joins'] + $actorQuery['joins']
86  );
87  }
88 
89  public function newItem( $row ) {
90  return new RevDelLogItem( $this, $row );
91  }
92 
93  public function getSuppressBit() {
95  }
96 
97  public function getLogAction() {
98  return 'event';
99  }
100 
101  public function getLogParams( $params ) {
102  return [
103  '4::ids' => $params['ids'],
104  '5::ofield' => $params['oldBits'],
105  '6::nfield' => $params['newBits'],
106  ];
107  }
108 }
RevDelLogList\getLogParams
getLogParams( $params)
Get log parameter array.
Definition: RevDelLogList.php:101
Revision\DELETED_RESTRICTED
const DELETED_RESTRICTED
Definition: Revision.php:49
RevDelLogList
List for logging table items.
Definition: RevDelLogList.php:27
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1983
RevDelLogList\newItem
newItem( $row)
Create an item object from a DB result row.
Definition: RevDelLogList.php:89
$params
$params
Definition: styleTest.css.php:44
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
ActorMigration\newMigration
static newMigration()
Static constructor.
Definition: ActorMigration.php:111
php
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
Definition: injection.txt:35
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:38
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2636
RevDelLogList\getType
getType()
Get the internal type name of this list.
Definition: RevDelLogList.php:28
use
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
Definition: MIT-LICENSE.txt:10
RevDelList
Abstract base class for a list of deletable items.
Definition: RevDelList.php:30
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
RevDelLogList\getRevdelConstant
static getRevdelConstant()
Get the revision deletion constant for this list type Override this function.
Definition: RevDelLogList.php:40
array
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))
LogPage\DELETED_ACTION
const DELETED_ACTION
Definition: LogPage.php:34
RevDelLogList\getLogAction
getLogAction()
Get the log action for this list type.
Definition: RevDelLogList.php:97
RevDelLogList\getSuppressBit
getSuppressBit()
Get the integer value of the flag used for suppression.
Definition: RevDelLogList.php:93
RevDelLogList\getRestriction
static getRestriction()
Get the user right required for this list type Override this function.
Definition: RevDelLogList.php:36
RevisionListBase\$ids
array $ids
Definition: RevisionListBase.php:34
RevDelLogList\suggestTarget
static suggestTarget( $target, array $ids)
Suggest a target for the revision deletion Optionally override this function.
Definition: RevDelLogList.php:44
RevDelLogList\doQuery
doQuery( $db)
Definition: RevDelLogList.php:63
CommentStore\getStore
static getStore()
Definition: CommentStore.php:130
RevDelLogList\getRelationType
static getRelationType()
Get the DB field name associated with the ID list.
Definition: RevDelLogList.php:32
RevDelLogItem
Item class for a logging table row.
Definition: RevDelLogItem.php:25