Localisation updates from https://translatewiki.net.
[mediawiki.git] / maintenance / renameRestrictions.php
blob65570eba73a9506b3c2f2dbf119509480b060769
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 use MediaWiki\Maintenance\Maintenance;
26 // @codeCoverageIgnoreStart
27 require_once __DIR__ . '/Maintenance.php';
28 // @codeCoverageIgnoreEnd
30 /**
31 * Maintenance script that updates page_restrictions and
32 * protected_titles tables to use a new name for a given
33 * restriction level.
35 * @ingroup Maintenance
37 class RenameRestrictions extends Maintenance {
38 public function __construct() {
39 parent::__construct();
40 $this->addDescription( 'Rename a restriction level' );
41 $this->addArg( 'oldlevel', 'Old name of restriction level', true );
42 $this->addArg( 'newlevel', 'New name of restriction level', true );
45 public function execute() {
46 $oldLevel = $this->getArg( 0 );
47 $newLevel = $this->getArg( 1 );
49 $dbw = $this->getPrimaryDB();
50 $dbw->newUpdateQueryBuilder()
51 ->update( 'page_restrictions' )
52 ->set( [ 'pr_level' => $newLevel ] )
53 ->where( [ 'pr_level' => $oldLevel ] )
54 ->caller( __METHOD__ )
55 ->execute();
56 $dbw->newUpdateQueryBuilder()
57 ->update( 'protected_titles' )
58 ->set( [ 'pt_create_perm' => $newLevel ] )
59 ->where( [ 'pt_create_perm' => $oldLevel ] )
60 ->caller( __METHOD__ )
61 ->execute();
66 // @codeCoverageIgnoreStart
67 $maintClass = RenameRestrictions::class;
68 require_once RUN_MAINTENANCE_IF_MAIN;
69 // @codeCoverageIgnoreEnd