Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/Scribunto/includes/ScribuntoException.php
Ðазад
<?php namespace MediaWiki\Extension\Scribunto; use Exception; use MediaWiki\Status\Status; use MediaWiki\Title\Title; /** * An exception class which represents an error in the script. This does not * normally abort the request, instead it is caught and shown to the user. */ class ScribuntoException extends Exception { /** * @var string */ public $messageName; /** * @var array */ public $messageArgs; /** * @var array */ public $params; /** * @param string $messageName * @param array $params */ public function __construct( $messageName, $params = [] ) { $this->messageArgs = $params['args'] ?? []; if ( isset( $params['module'] ) && isset( $params['line'] ) ) { $codeLocation = false; if ( isset( $params['title'] ) ) { $moduleTitle = Title::newFromText( $params['module'] ); if ( $moduleTitle && $moduleTitle->equals( $params['title'] ) ) { $codeLocation = wfMessage( 'scribunto-line', $params['line'] )->inContentLanguage()->text(); } } if ( $codeLocation === false ) { $codeLocation = wfMessage( 'scribunto-module-line', $params['module'], $params['line'] )->inContentLanguage()->text(); } } else { $codeLocation = '[UNKNOWN]'; } array_unshift( $this->messageArgs, $codeLocation ); $msg = wfMessage( $messageName ) ->params( $this->messageArgs ) ->inContentLanguage(); if ( isset( $params['title'] ) ) { $msg = $msg->page( $params['title'] ); } parent::__construct( $msg->text() ); $this->messageName = $messageName; $this->params = $params; } /** * @return string */ public function getMessageName() { return $this->messageName; } public function toStatus() { $status = Status::newFatal( $this->messageName, ...$this->messageArgs ); $status->value = $this; return $status; } /** * Get the backtrace as HTML, or false if there is none available. * @param array $options * @return bool|string */ public function getScriptTraceHtml( $options = [] ) { return false; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка