Update git submodules
[mediawiki.git] / maintenance / renameRestrictions.php
blobbbabe7516f43ce79caa073c1bd98a8f97dfa7265
1 <?php
2 /**
3 * Rename restriction level
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Maintenance
24 require_once __DIR__ . '/Maintenance.php';
26 /**
27 * Maintenance script that updates page_restrictions and
28 * protected_titles tables to use a new name for a given
29 * restriction level.
31 * @ingroup Maintenance
33 class RenameRestrictions extends Maintenance {
34 public function __construct() {
35 parent::__construct();
36 $this->addDescription( 'Rename a restriction level' );
37 $this->addArg( 'oldlevel', 'Old name of restriction level', true );
38 $this->addArg( 'newlevel', 'New name of restriction level', true );
41 public function execute() {
42 $oldLevel = $this->getArg( 0 );
43 $newLevel = $this->getArg( 1 );
45 $dbw = wfGetDB( DB_PRIMARY );
46 $dbw->update(
47 'page_restrictions',
48 [ 'pr_level' => $newLevel ],
49 [ 'pr_level' => $oldLevel ],
50 __METHOD__
52 $dbw->update(
53 'protected_titles',
54 [ 'pt_create_perm' => $newLevel ],
55 [ 'pt_create_perm' => $oldLevel ],
56 __METHOD__
62 $maintClass = RenameRestrictions::class;
63 require_once RUN_MAINTENANCE_IF_MAIN;