MediaWiki master
purgeOldText.php
Go to the documentation of this file.
1<?php
25require_once __DIR__ . '/Maintenance.php';
26
33 public function __construct() {
34 parent::__construct();
35 $this->addDescription( 'Purge old text records from the database' );
36 $this->addOption( 'purge', 'Performs the deletion' );
37 }
38
39 public function execute() {
40 $this->purgeRedundantText( $this->hasOption( 'purge' ) );
41 }
42}
43
44$maintClass = PurgeOldText::class;
45require_once RUN_MAINTENANCE_IF_MAIN;
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