MediaWiki REL1_31
deleteArchivedRevisions.php
Go to the documentation of this file.
1<?php
26require_once __DIR__ . '/Maintenance.php';
27
35 public function __construct() {
36 parent::__construct();
37 $this->addDescription(
38 "Deletes all archived revisions\nThese revisions will no longer be restorable" );
39 $this->addOption( 'delete', 'Performs the deletion' );
40 }
41
42 public function execute() {
43 $dbw = $this->getDB( DB_MASTER );
44
45 if ( !$this->hasOption( 'delete' ) ) {
46 $count = $dbw->selectField( 'archive', 'COUNT(*)', '', __METHOD__ );
47 $this->output( "Found $count revisions to delete.\n" );
48 $this->output( "Please run the script again with the --delete option "
49 . "to really delete the revisions.\n" );
50 return;
51 }
52
53 $this->output( "Deleting archived revisions... " );
54 $dbw->delete( 'archive', '*', __METHOD__ );
55 $count = $dbw->affectedRows();
56 $this->output( "done. $count revisions deleted.\n" );
57
58 if ( $count ) {
59 $this->purgeRedundantText( true );
60 }
61 }
62}
63
64$maintClass = DeleteArchivedRevisions::class;
65require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance script to delete archived (deleted from public) revisions from the database.
__construct()
Default constructor.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
hasOption( $name)
Checks to see if a particular param exists.
purgeRedundantText( $delete=true)
Support function for cleaning up redundant text records.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
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 in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
require_once RUN_MAINTENANCE_IF_MAIN
const DB_MASTER
Definition defines.php:29