25use Wikimedia\AtEase\AtEase;
35 parent::__construct(
'Unlockdb',
'siteadmin' );
47 parent::checkExecutePermissions( $user );
48 # If the lock file isn't writable, we can do sweet bugger all
49 if ( !file_exists( $this->
getConfig()->
get( MainConfigNames::ReadOnlyFile ) ) ) {
58 'label-message' =>
'unlockconfirm',
65 ->setHeaderHtml( $this->
msg(
'unlockdbtext' )->parseAsBlock() )
66 ->setSubmitTextMsg(
'unlockbtn' );
70 if ( !$data[
'Confirm'] ) {
71 return Status::newFatal(
'locknoconfirm' );
74 $readOnlyFile = $this->
getConfig()->get( MainConfigNames::ReadOnlyFile );
75 AtEase::suppressWarnings();
76 $res = unlink( $readOnlyFile );
77 AtEase::restoreWarnings();
80 return Status::newGood();
82 return Status::newFatal(
'filedeleteerror', $readOnlyFile );
88 $out->addSubtitle( $this->
msg(
'unlockdbsuccesssub' ) );
89 $out->addWikiMsg(
'unlockdbsuccesstext' );
An error page which can definitely be safely rendered using the OutputPage.
Special page which uses an HTMLForm to handle processing.
A class containing constants representing the names of configuration variables.
getOutput()
Get the OutputPage being used for this instance.
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
Implements Special:Unlockdb.
alterForm(HTMLForm $form)
Play with the HTMLForm if you need to more substantially.
onSuccess()
Do something exciting on successful processing of the form, most likely to show a confirmation messag...
doesWrites()
Indicates whether this special page may perform database writes.
checkExecutePermissions(User $user)
Called from execute() to check if the given user can perform this action.
requiresWrite()
Whether this action requires the wiki not to be locked, default to requiresPost()
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
onSubmit(array $data)
Process the form on submission.
getFormFields()
Get an HTMLForm descriptor array.
getDisplayFormat()
Get display format for the form.