mDescription = "Protect or unprotect an article from the command line."; $this->addOption( 'unprotect', 'Removes protection' ); $this->addOption( 'semiprotect', 'Adds semi-protection' ); $this->addOption( 'u', 'Username to protect with', false, true ); $this->addOption( 'r', 'Reason for un/protection', false, true ); $this->addArg( 'title', 'Title to protect', true ); } public function execute() { global $wgUser; $userName = $this->getOption( 'u', 'Maintenance script' ); $reason = $this->getOption( 'r', '' ); $protection = "sysop"; if ( $this->hasOption( 'semiprotect' ) ) { $protection = "autoconfirmed"; } elseif ( $this->hasOption( 'unprotect' ) ) { $protection = ""; } $wgUser = User::newFromName( $userName ); $restrictions = array( 'edit' => $protection, 'move' => $protection ); $t = Title::newFromText( $this->getArg() ); if ( !$t ) { $this->error( "Invalid title", true ); } $article = new Article( $t ); # un/protect the article $this->output( "Updating protection status... " ); $success = $article->updateRestrictions( $restrictions, $reason ); if ( $success ) { $this->output( "done\n" ); } else { $this->output( "failed\n" ); } } } $maintClass = "Protect"; require_once( RUN_MAINTENANCE_IF_MAIN );