MediaWiki  REL1_31
ErrorPageError.php
Go to the documentation of this file.
1 <?php
28  public $title, $msg, $params;
29 
37  public function __construct( $title, $msg, $params = [] ) {
38  $this->title = $title;
39  $this->msg = $msg;
40  $this->params = $params;
41 
42  // T46111: Messages in the log files should be in English and not
43  // customized by the local wiki. So get the default English version for
44  // passing to the parent constructor. Our overridden report() below
45  // makes sure that the page shown to the user is not forced to English.
46  $enMsg = $this->getMessageObject();
47  $enMsg->inLanguage( 'en' )->useDatabase( false );
48  parent::__construct( $enMsg->text() );
49  }
50 
56  public function getMessageObject() {
57  if ( $this->msg instanceof Message ) {
58  return clone $this->msg;
59  }
60  return wfMessage( $this->msg, $this->params );
61  }
62 
63  public function report() {
64  if ( self::isCommandLine() || defined( 'MW_API' ) ) {
65  parent::report();
66  } else {
67  global $wgOut;
68  $wgOut->showErrorPage( $this->title, $this->msg, $this->params );
69  $wgOut->output();
70  }
71  }
72 }
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
ErrorPageError\$title
$title
Definition: ErrorPageError.php:28
ErrorPageError\getMessageObject
getMessageObject()
Return a Message object for this exception.
Definition: ErrorPageError.php:56
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:37
ErrorPageError\__construct
__construct( $title, $msg, $params=[])
Note: these arguments are keys into wfMessage(), not text!
Definition: ErrorPageError.php:37
MWException
MediaWiki exception.
Definition: MWException.php:26
title
title
Definition: parserTests.txt:219
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:95
ILocalizedException
Interface for MediaWiki-localized exceptions.
Definition: LocalizedException.php:27
ErrorPageError\report
report()
Output a report about the exception and takes care of formatting.
Definition: ErrorPageError.php:63
MWException\msg
msg( $key, $fallback)
Get a message from i18n.
Definition: MWException.php:75
ErrorPageError\$params
$params
Definition: ErrorPageError.php:28
Message
The Message class provides methods which fulfil two basic services:
Definition: Message.php:159
$wgOut
$wgOut
Definition: Setup.php:912
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition: ErrorPageError.php:27
ErrorPageError\$msg
$msg
Definition: ErrorPageError.php:28