MediaWiki  1.23.13
ErrorPageError.php
Go to the documentation of this file.
1 <?php
27 class ErrorPageError extends MWException {
28  public $title, $msg, $params;
29 
37  public function __construct( $title, $msg, $params = array() ) {
38  $this->title = $title;
39  $this->msg = $msg;
40  $this->params = $params;
41 
42  // Bug 44111: 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  if ( $msg instanceof Message ) {
47  $enMsg = clone( $msg );
48  } else {
49  $enMsg = wfMessage( $msg, $params );
50  }
51  $enMsg->inLanguage( 'en' )->useDatabase( false );
52  parent::__construct( $enMsg->text() );
53  }
54 
55  public function report() {
56  global $wgOut;
57 
58  $wgOut->showErrorPage( $this->title, $this->msg, $this->params );
59  $wgOut->output();
60  }
61 }
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
ErrorPageError\$title
$title
Definition: ErrorPageError.php:28
title
to move a page</td >< td > &*You are moving the page across *A non empty talk page already exists under the new or *You uncheck the box below In those you will have to move or merge the page manually if desired</td >< td > be sure to &You are responsible for making sure that links continue to point where they are supposed to go Note that the page will &a page at the new title
Definition: All_system_messages.txt:2703
MWException
MediaWiki exception.
Definition: MWException.php:26
$wgOut
$wgOut
Definition: Setup.php:582
wfMessage
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form externallinks including delete and has completed for all link tables 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
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
ErrorPageError\report
report()
Output a report about the exception and takes care of formatting.
Definition: ErrorPageError.php:55
ErrorPageError\__construct
__construct( $title, $msg, $params=array())
Note: these arguments are keys into wfMessage(), not text!
Definition: ErrorPageError.php:37
MWException\msg
msg( $key, $fallback)
Get a message from i18n.
Definition: MWException.php:116
ErrorPageError\$params
$params
Definition: ErrorPageError.php:28
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition: ErrorPageError.php:27
ErrorPageError\$msg
$msg
Definition: ErrorPageError.php:28