MediaWiki master
purgeOldText.php
Go to the documentation of this file.
1<?php
25// @codeCoverageIgnoreStart
26require_once __DIR__ . '/Maintenance.php';
27// @codeCoverageIgnoreEnd
28
35 public function __construct() {
36 parent::__construct();
37 $this->addDescription( 'Purge old text records from the database' );
38 $this->addOption( 'purge', 'Performs the deletion' );
39 }
40
41 public function execute() {
42 $this->purgeRedundantText( $this->hasOption( 'purge' ) );
43 }
44}
45
46// @codeCoverageIgnoreStart
47$maintClass = PurgeOldText::class;
48require_once RUN_MAINTENANCE_IF_MAIN;
49// @codeCoverageIgnoreEnd
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
hasOption( $name)
Checks to see if a particular option was set.
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.
Maintenance script that purges old text records from the database.
__construct()
Default constructor.
execute()
Do the actual work.
$maintClass