MediaWiki  1.23.2
cleanupPreferences.php
Go to the documentation of this file.
1 <?php
26 require_once __DIR__ . '/Maintenance.php';
27 
34  public function execute() {
35  global $wgHiddenPrefs;
36 
37  $dbw = wfGetDB( DB_MASTER );
38  $dbw->begin( __METHOD__ );
39  foreach ( $wgHiddenPrefs as $item ) {
40  $dbw->delete(
41  'user_properties',
42  array( 'up_property' => $item ),
43  __METHOD__
44  );
45  };
46  $dbw->commit( __METHOD__ );
47  $this->output( "Finished!\n" );
48  }
49 }
50 
51 $maintClass = 'CleanupPreferences'; // Tells it to run the class
52 require_once RUN_MAINTENANCE_IF_MAIN;
DB_MASTER
const DB_MASTER
Definition: Defines.php:56
php
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
Definition: skin.txt:62
wfGetDB
& wfGetDB( $db, $groups=array(), $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3650
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: maintenance.txt:39
CleanupPreferences
Maintenance script that removes hidden preferences from the database.
Definition: cleanupPreferences.php:33
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
CleanupPreferences\execute
execute()
Do the actual work.
Definition: cleanupPreferences.php:34
$maintClass
$maintClass
Definition: cleanupPreferences.php:51
as
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
Definition: distributors.txt:9
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:314