MediaWiki
master
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') &&MW_ENTRY_POINT !=='cli' $wgOut
Definition
Setup.php:540
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition
ErrorPageError.php:33
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 Sun Oct 6 2024 09:23:54 for MediaWiki by
1.10.0