Go to the documentation of this file.
25 require_once __DIR__ .
'/Maintenance.php';
35 parent::__construct();
36 $this->mDescription =
"Rollback all edits by a given user or IP provided they're the most recent edit";
37 $this->
addOption(
'titles',
'A list of titles, none means all titles where the given user is the most recent',
false,
true );
38 $this->
addOption(
'user',
'A user or IP to rollback all edits for',
true,
true );
39 $this->
addOption(
'summary',
'Edit summary to use',
false,
true );
40 $this->
addOption(
'bot',
'Mark the edits as bot' );
47 $this->
error(
'Invalid username',
true );
58 $this->
error(
'Invalid title, ' . $title );
68 $this->
output(
'No suitable titles to be rolled back' );
76 $this->
output(
'Processing ' . $t->getPrefixedText() .
'... ' );
77 if ( !$page->commitRollback(
$user,
$summary, $bot, $results, $doer ) ) {
80 $this->
output(
"failed\n" );
93 $results =
$dbr->select(
94 array(
'page',
'revision' ),
95 array(
'page_namespace',
'page_title' ),
96 array(
'page_latest = rev_id',
'rev_user_text' =>
$user ),
99 foreach ( $results
as $row ) {
static & makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
& wfGetDB( $db, $groups=array(), $wiki=false)
Get a Database object.
getRollbackTitles( $user)
Get all pages that should be rolled back for a given user.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false)
Add a parameter to the script.
require_once RUN_MAINTENANCE_IF_MAIN
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Maintenance script to rollback all edits by a given user or IP provided they're the most recent edit.
__construct()
Default constructor.
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
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
static isIP( $name)
Does the string match an anonymous IPv4 address?
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
execute()
Do the actual work.
presenting them properly to the user as errors is done by the caller $title
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 account $user
getOption( $name, $default=null)
Get an option, or return the default.
static getCanonicalName( $name, $validate='valid')
Given unvalidated user input, return a canonical username, or false if the username is invalid.
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
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular param exists.