MediaWiki
REL1_40
ThrottledError.php
Go to the documentation of this file.
1
<?php
28
class
ThrottledError
extends
ErrorPageError
{
29
33
public
function
__construct
() {
34
parent::__construct(
35
'actionthrottled'
,
36
'actionthrottledtext'
37
);
38
}
39
40
public
function
report
( $action = ErrorPageError::SEND_OUTPUT ) {
41
global
$wgOut
;
42
$wgOut
->setStatusCode( 429 );
43
parent::report( $action );
44
}
45
}
$wgOut
if(!defined( 'MW_NO_SESSION') &&! $wgCommandLineMode $wgOut
Definition
Setup.php:527
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition
ErrorPageError.php:30
ThrottledError
Show an error when the user hits a rate limit.
Definition
ThrottledError.php:28
ThrottledError\__construct
__construct()
Definition
ThrottledError.php:33
ThrottledError\report
report( $action=ErrorPageError::SEND_OUTPUT)
Definition
ThrottledError.php:40
includes
exception
ThrottledError.php
Generated on Thu Jun 27 2024 14:02:43 for MediaWiki by
1.10.0