MediaWiki
REL1_31
ThrottledError.php
Go to the documentation of this file.
1
<?php
27
class
ThrottledError
extends
ErrorPageError
{
28
public
function
__construct
() {
29
parent::__construct(
30
'actionthrottled'
,
31
'actionthrottledtext'
32
);
33
}
34
35
public
function
report
() {
36
global
$wgOut
;
37
$wgOut
->setStatusCode( 429 );
38
parent::report();
39
}
40
}
$wgOut
$wgOut
Definition
Setup.php:912
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition
ErrorPageError.php:27
ThrottledError
Show an error when the user hits a rate limit.
Definition
ThrottledError.php:27
ThrottledError\__construct
__construct()
Definition
ThrottledError.php:28
ThrottledError\report
report()
Output a report about the exception and takes care of formatting.
Definition
ThrottledError.php:35
includes
exception
ThrottledError.php
Generated on Mon Nov 25 2024 15:34:44 for MediaWiki by
1.10.0