33 parent::__construct(
'Lockdb',
'siteadmin' );
45 parent::checkExecutePermissions( $user );
46 # If the lock file isn't writable, we can do sweet bugger all
47 if ( !is_writable( dirname( $this->
getConfig()->
get(
'ReadOnlyFile' ) ) ) ) {
50 if ( file_exists( $this->
getConfig()->
get(
'ReadOnlyFile' ) ) ) {
60 'vertical-label' =>
true,
61 'label-message' =>
'enterlockreason',
65 'label-message' =>
'lockconfirm',
71 $form->setWrapperLegend(
false )
72 ->setHeaderText( $this->
msg(
'lockdbtext' )->parseAsBlock() )
73 ->setSubmitTextMsg(
'lockbtn' );
79 if ( !$data[
'Confirm'] ) {
80 return Status::newFatal(
'locknoconfirm' );
83 Wikimedia\suppressWarnings();
84 $fp = fopen( $this->
getConfig()->
get(
'ReadOnlyFile' ),
'w' );
85 Wikimedia\restoreWarnings();
87 if (
false === $fp ) {
88 # This used to show a file not found error, but the likeliest reason for fopen()
89 # to fail at this point is insufficient permission to write to the file...good old
90 # is_writable() is plain wrong in some cases, it seems...
91 return Status::newFatal(
'lockfilenotwritable' );
93 fwrite( $fp, $data[
'Reason'] );
95 fwrite( $fp,
"\n<p>" . $this->
msg(
'lockedbyandtime',
97 $wgContLang->date( $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 form to make the database readonly (eg for maintenance purposes).
onSubmit(array $data)
Process the form on POST 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.
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)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out