MediaWiki
1.34.4
BadTitleError.php
Go to the documentation of this file.
1
<?php
30
class
BadTitleError
extends
BadRequestError
{
36
public
function
__construct
(
$msg
=
'badtitletext'
,
$params
= [] ) {
37
if
(
$msg
instanceof
MalformedTitleException
) {
38
$errorMessage =
$msg
->getErrorMessage();
39
if
( !$errorMessage ) {
40
parent::__construct(
'badtitle'
,
'badtitletext'
, [] );
41
}
else
{
42
$errorMessageParams =
$msg
->getErrorMessageParameters();
43
parent::__construct(
'badtitle'
, $errorMessage, $errorMessageParams );
44
}
45
}
else
{
46
parent::__construct(
'badtitle'
,
$msg
,
$params
);
47
}
48
}
49
}
BadTitleError\__construct
__construct( $msg='badtitletext', $params=[])
Definition:
BadTitleError.php:36
ErrorPageError\$params
$params
Definition:
ErrorPageError.php:30
MalformedTitleException
MalformedTitleException is thrown when a TitleParser is unable to parse a title string.
Definition:
MalformedTitleException.php:25
BadRequestError
An error page that emits an HTTP 400 Bad Request status code.
Definition:
BadRequestError.php:27
BadTitleError
Show an error page on a badtitle.
Definition:
BadTitleError.php:30
ErrorPageError\$msg
$msg
Definition:
ErrorPageError.php:30
includes
exception
BadTitleError.php
Generated on Thu Sep 24 2020 22:29:32 for MediaWiki by
1.8.18