25use Wikimedia\AtEase\AtEase;
35 parent::__construct(
'Lockdb',
'siteadmin' );
47 parent::checkExecutePermissions( $user );
48 # If the lock file isn't writable, we can do sweet bugger all
49 if ( !is_writable( dirname( $this->
getConfig()->
get( MainConfigNames::ReadOnlyFile ) ) ) ) {
52 if ( file_exists( $this->
getConfig()->
get( MainConfigNames::ReadOnlyFile ) ) ) {
62 'label-message' =>
'enterlockreason',
66 'label-message' =>
'lockconfirm',
73 ->setHeaderHtml( $this->
msg(
'lockdbtext' )->parseAsBlock() )
74 ->setSubmitTextMsg(
'lockbtn' );
78 if ( !$data[
'Confirm'] ) {
79 return Status::newFatal(
'locknoconfirm' );
82 AtEase::suppressWarnings();
83 $fp = fopen( $this->
getConfig()->
get( MainConfigNames::ReadOnlyFile ),
'w' );
84 AtEase::restoreWarnings();
86 if ( $fp ===
false ) {
87 # This used to show a file not found error, but the likeliest reason for fopen()
88 # to fail at this point is insufficient permission to write to the file...good old
89 # is_writable() is plain wrong in some cases, it seems...
90 return Status::newFatal(
'lockfilenotwritable' );
92 fwrite( $fp, $data[
'Reason'] );
95 fwrite( $fp,
"\n<p>" . $this->
msg(
'lockedbyandtime',
97 $contLang->date( $timestamp,
false,
false ),
98 $contLang->time( $timestamp,
false,
false )
99 )->inContentLanguage()->text() .
"</p>\n" );
102 return Status::newGood();
107 $out->addSubtitle( $this->
msg(
'lockdbsuccesssub' ) );
108 $out->addWikiMsg(
'lockdbsuccesstext' );
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
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.
A form to make the database readonly (eg for maintenance purposes).
onSubmit(array $data)
Process the form on submission.
getFormFields()
Get an HTMLForm descriptor array.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
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()
doesWrites()
Indicates whether this special page may perform database writes.
getDisplayFormat()
Get display format for the form.
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...
getName()
Get the name of this Special Page.
getOutput()
Get the OutputPage being used for this instance.
getUser()
Shortcut to get the User executing this instance.
msg( $key,... $params)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getContentLanguage()
Shortcut to get content language.