MediaWiki  1.34.0
ReadOnlyError.php
Go to the documentation of this file.
1 <?php
29  public function __construct() {
30  parent::__construct(
31  'readonly',
32  'readonlytext',
33  wfReadOnlyReason() ?: []
34  );
35  }
36 }
ReadOnlyError
Show an error when the wiki is locked/read-only and the user tries to do something that requires writ...
Definition: ReadOnlyError.php:28
ReadOnlyError\__construct
__construct()
Definition: ReadOnlyError.php:29
wfReadOnlyReason
wfReadOnlyReason()
Check if the site is in read-only mode and return the message if so.
Definition: GlobalFunctions.php:1184
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition: ErrorPageError.php:27