32 parent::__construct(
'Unlockdb',
'siteadmin' );
44 parent::checkExecutePermissions( $user );
45 # If the lock file isn't writable, we can do sweet bugger all
46 if ( !file_exists( $this->
getConfig()->
get(
'ReadOnlyFile' ) ) ) {
55 'label-message' =>
'unlockconfirm',
62 ->setHeaderText( $this->
msg(
'unlockdbtext' )->parseAsBlock() )
63 ->setSubmitTextMsg(
'unlockbtn' );
67 if ( !$data[
'Confirm'] ) {
68 return Status::newFatal(
'locknoconfirm' );
71 $readOnlyFile = $this->
getConfig()->get(
'ReadOnlyFile' );
72 Wikimedia\suppressWarnings();
73 $res = unlink( $readOnlyFile );
74 Wikimedia\restoreWarnings();
77 return Status::newGood();
79 return Status::newFatal(
'filedeleteerror', $readOnlyFile );
85 $out->addSubtitle( $this->
msg(
'unlockdbsuccesssub' ) );
86 $out->addWikiMsg(
'unlockdbsuccesstext' );
An error page which can definitely be safely rendered using the OutputPage.
Special page which uses an HTMLForm to handle processing.
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.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
onSubmit(array $data)
Process the form on POST submission.
getFormFields()
Get an HTMLForm descriptor array.
getDisplayFormat()
Get display format for the form.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...