MediaWiki master
|
The Message class deals with fetching and processing of interface message into a variety of formats. More...
Inherits Stringable, Wikimedia\Message\MessageSpecifier, and Serializable.
Inherited by MediaWiki\Api\ApiHelpParamValueMessage, MediaWiki\Api\ApiMessage, and MediaWiki\Language\RawMessage.
Public Member Functions | |
__construct ( $key, $params=[], ?Language $language=null) | |
__serialize () | |
__toString () | |
Magic method implementation of the above, so we can do, eg: $foo = new Message( $key ); $string = "<abbr>$foo</abbr>";. | |
__unserialize ( $data) | |
bitrateParams (... $params) | |
Add parameters that are bitrates and will be passed through Language::formatBitrate before substitution. | |
dateParams (... $params) | |
Add parameters that are dates and will be passed through Language::date before substitution. | |
dateTimeParams (... $params) | |
Add parameters that are date-times and will be passed through Language::timeanddate before substitution. | |
durationParams (... $params) | |
Add parameters that are durations of time and will be passed through Language::formatDuration before substitution. | |
escaped () | |
Returns the message text. | |
exists () | |
Check whether a message key has been defined currently. | |
expiryParams (... $params) | |
Add parameters that are expiration times and will be passed through Language::formatExpiry before substitution. | |
getKey () | |
Returns the message key. | |
getKeysToTry () | |
getLanguage () | |
Returns the Language of the Message. | |
getParams () | |
Returns the message parameters. | |
getTitle () | |
Get a title object for a mediawiki message, where it can be found in the mediawiki namespace. | |
inContentLanguage () | |
Request the message in the wiki's content language, unless it is disabled for this message. | |
inLanguage ( $lang) | |
Request the message in any language that is supported. | |
inUserLanguage () | |
Request the message in the user's current language, overriding any explicit language that was previously set. | |
isBlank () | |
Check whether a message does not exist, or is an empty string. | |
isDisabled () | |
Check whether a message does not exist, is an empty string, or is "-". | |
isMultiKey () | |
numParams (... $params) | |
Add parameters that are numeric and will be passed through Language::formatNum before substitution. | |
page (?PageReference $page) | |
Set the page object to use as context when transforming the message. | |
params (... $params) | |
Adds parameters to the parameter list of this message. | |
parse () | |
Fully parse the text from wikitext to HTML. | |
parseAsBlock () | |
Returns the parsed message text which is always surrounded by a block element. | |
plain () | |
Returns the message text as-is, only parameters are substituted. | |
plaintextParams (... $params) | |
Add parameters that are plaintext and will be passed through without the content being evaluated. | |
rawParams (... $params) | |
Add parameters that are substituted after parsing or escaping. | |
serialize () | |
setContext (IContextSource $context) | |
Set the language and the title from a context object. | |
setInterfaceMessageFlag ( $interface) | |
Allows manipulating the interface message flag directly. | |
sizeParams (... $params) | |
Add parameters that are file sizes and will be passed through Language::formatSize before substitution. | |
text () | |
Returns the message text. | |
timeParams (... $params) | |
Add parameters that are times and will be passed through Language::time before substitution. | |
timeperiodParams (... $params) | |
Add parameters that are time periods and will be passed through Language::formatTimePeriod before substitution. | |
title ( $title) | |
Set the Title object to use as context when transforming the message. | |
toString (string $format) | |
Returns the message formatted a certain way. | |
unserialize ( $serialized) | |
useDatabase ( $useDatabase) | |
userGroupParams (... $params) | |
Add parameters that represent user groups. | |
Static Public Member Functions | |
static | bitrateParam ( $bitrate) |
static | dateParam (string $date) |
static | dateTimeParam (string $dateTime) |
static | durationParam ( $duration) |
static | expiryParam ( $expiry) |
static | listParam (array $list, $type=ListType::AND) |
static | newFallbackSequence (... $keys) |
Factory function accepting multiple message keys and returning a message instance for the first message which is non-empty. | |
static | newFromKey ( $key,... $params) |
Factory function that is just wrapper for the real constructor. | |
static | newFromSpecifier ( $value) |
Transform a MessageSpecifier or a primitive value used interchangeably with specifiers (a message key string, or a key + params array) into a proper Message. | |
static | numParam ( $num) |
static | plaintextParam ( $plaintext) |
static | rawParam ( $raw) |
static | sizeParam ( $size) |
static | timeParam (string $time) |
static | timeperiodParam ( $period) |
static | userGroupParam (string $userGroup) |
Public Attributes | |
const | FORMAT_BLOCK_PARSE = 'block-parse' |
Use normal wikitext -> HTML parsing (the result will be wrapped in a block-level HTML tag) | |
const | FORMAT_ESCAPED = 'escaped' |
Transform {{..}} constructs, HTML-escape the result. | |
const | FORMAT_PARSE = 'parse' |
Use normal wikitext -> HTML parsing but strip the block-level wrapper. | |
const | FORMAT_PLAIN = 'plain' |
Use message text as-is. | |
const | FORMAT_TEXT = 'text' |
Transform {{..}} constructs but don't transform to HTML. | |
Protected Member Functions | |
extractParam ( $param, $format) | |
Extracts the parameter type and preprocessed the value if needed. | |
fetchMessage () | |
Wrapper for whatever method we use to get message contents. | |
formatListParam (array $params, $listType, $format) | |
Formats a list of parameters as a concatenated string. | |
formatPlaintext ( $plaintext, $format) | |
Formats a message parameter wrapped with 'plaintext'. | |
parseText (string $string) | |
Wrapper for what ever method we use to parse wikitext. | |
replaceParameters ( $message, $type, $format) | |
Substitutes any parameters into the message text. | |
transformText ( $string) | |
Wrapper for what ever method we use to {{-transform wikitext (substituting the template with its parsed result). | |
Protected Attributes | |
Content null | $content = null |
Content object representing the message. | |
PageReference | $contextPage = null |
page object to use as context. | |
bool | $isInterface = true |
In which language to get this message. | |
string | $key |
The message key. | |
string[] | $keysToTry |
List of keys to try when fetching the message. | |
Language Language null | $language = null |
In which language to get this message. | |
string null false | $message |
string | $overriddenKey = null |
The message key that the message was fetched from, if different from all of the requested $keysToTry (the requested key may be overridden by hooks). | |
MessageParam Message string int float[] | $parameters = [] |
List of parameters which will be substituted into the message. | |
bool | $useDatabase = true |
If messages in the local MediaWiki namespace should be loaded; false to use only the compiled LocalisationCache. | |
callable null | $userLangCallback |
A callable which returns the current user language, or null to get it from global state. | |
Static Protected Attributes | |
static array | $listTypeMap |
Mapping from Message::listParam() types to Language methods. | |
The Message class deals with fetching and processing of interface message into a variety of formats.
First implemented with MediaWiki 1.17, the Message class is intended to replace the old wfMsg* functions that over time grew unusable.
The preferred way to create Message objects is via the msg() method of of an available RequestContext and ResourceLoader Context object; this will ensure that the message uses the correct language. When that is not possible, the wfMessage() global function can be used, which will cause Message to get the language from the global RequestContext object. In rare circumstances when sessions are not available or not initialized, that can lead to errors.
The most basic usage cases would be:
Since msg() returns a Message instance, you can chain its call with a method. Some of them return a Message instance too so you can chain them. You will find below several examples of msg() usage.
Fetching a message text for interface message:
A Message instance can be passed parameters after it has been constructed, use the params() method to do so:
{{GRAMMAR}} and friends work correctly:
Messages can be requested in a different language or in whatever current content language is being used. The methods are:
Sometimes the message text ends up in the database, so content language is needed:
Checking whether a message exists:
If you want to use a different language:
Definition at line 155 of file Message.php.
MediaWiki\Message\Message::__construct | ( | $key, | |
$params = [], | |||
?Language | $language = null ) |
string | MessageSpecifier | string[] | $key | Message key, MessageSpecifier object to copy, or array of fallback message keys where we use the first message that exists and is non-empty. |
array | $params | Message parameters |
Language | null | $language | [optional] Language to use (defaults to current user language). |
Definition at line 252 of file Message.php.
References MediaWiki\Message\Message\$key, MediaWiki\Message\Message\$language, $params, and MediaWiki\Message\Message\params().
MediaWiki\Message\Message::__serialize | ( | ) |
Definition at line 299 of file Message.php.
MediaWiki\Message\Message::__toString | ( | ) |
Magic method implementation of the above, so we can do, eg: $foo = new Message( $key ); $string = "<abbr>$foo</abbr>";.
Definition at line 1079 of file Message.php.
MediaWiki\Message\Message::__unserialize | ( | $data | ) |
array | $data |
Definition at line 331 of file Message.php.
|
static |
MediaWiki\Message\Message::bitrateParams | ( | $params | ) |
Add parameters that are bitrates and will be passed through Language::formatBitrate before substitution.
int|int[] | ...$params Bit rate parameters, or a single argument that is an array of bit rate parameters. |
Definition at line 808 of file Message.php.
References $params.
|
static |
MediaWiki\Message\Message::dateParams | ( | $params | ) |
Add parameters that are dates and will be passed through Language::date before substitution.
string|string[] | ...$params Date parameters, or a single argument that is an array of date parameters. |
Definition at line 704 of file Message.php.
References $params.
|
static |
string | $dateTime |
Definition at line 1233 of file Message.php.
MediaWiki\Message\Message::dateTimeParams | ( | $params | ) |
Add parameters that are date-times and will be passed through Language::timeanddate before substitution.
string|string[] | ...$params Date-time parameters, or a single argument that is an array of date-time parameters. |
Definition at line 683 of file Message.php.
References $params.
|
static |
int | $duration |
Definition at line 1211 of file Message.php.
Referenced by MediaWiki\Specials\SpecialBlock\getFormFields().
MediaWiki\Message\Message::durationParams | ( | $params | ) |
Add parameters that are durations of time and will be passed through Language::formatDuration before substitution.
int|int[] | ...$params Duration parameters, or a single argument that is an array of duration parameters. |
Definition at line 641 of file Message.php.
References $params.
MediaWiki\Message\Message::escaped | ( | ) |
Returns the message text.
{{-transformation (substituting the template with its parsed result) is done and the result is HTML escaped excluding any raw parameters.
Definition at line 1141 of file Message.php.
Referenced by MediaWiki\Search\SearchWidgets\BasicSearchResultSetWidget\header().
MediaWiki\Message\Message::exists | ( | ) |
Check whether a message key has been defined currently.
Definition at line 1152 of file Message.php.
|
static |
MediaWiki\Message\Message::expiryParams | ( | $params | ) |
Add parameters that are expiration times and will be passed through Language::formatExpiry before substitution.
string|string[] | ...$params Expiry parameters, or a single argument that is an array of expiry parameters. |
Definition at line 662 of file Message.php.
References $params.
|
protected |
Extracts the parameter type and preprocessed the value if needed.
ScalarParam | ListParam | MessageSpecifier | string | $param | Parameter as defined in this class. |
string | $format | One of the FORMAT_* constants. |
Definition at line 1373 of file Message.php.
|
protected |
Wrapper for whatever method we use to get message contents.
Reimplemented in MediaWiki\Api\ApiHelpParamValueMessage, and MediaWiki\Language\RawMessage.
Definition at line 1492 of file Message.php.
|
protected |
Formats a list of parameters as a concatenated string.
array | $params | |
string | $listType | |
string | $format | One of the FORMAT_* constants. |
Definition at line 1552 of file Message.php.
References $params, Wikimedia\Message\MessageParam\getType(), and wfDebugLog().
|
protected |
Formats a message parameter wrapped with 'plaintext'.
Ensures that the entire string is displayed unchanged when displayed in the output format.
string | $plaintext | String to ensure plaintext output of |
string | $format | One of the FORMAT_* constants. |
Definition at line 1530 of file Message.php.
MediaWiki\Message\Message::getKey | ( | ) |
Returns the message key.
If a list of multiple possible keys was supplied to the constructor, this method may return any of these keys. After the message has been fetched, this method will return the key that was actually used to fetch the message.
Implements Wikimedia\Message\MessageSpecifier.
Reimplemented in MediaWiki\Language\RawMessage.
Definition at line 402 of file Message.php.
Referenced by MediaWiki\EditPage\IntroMessageList\add().
MediaWiki\Message\Message::getKeysToTry | ( | ) |
Definition at line 387 of file Message.php.
MediaWiki\Message\Message::getLanguage | ( | ) |
Returns the Language of the Message.
Definition at line 424 of file Message.php.
Referenced by MediaWiki\Api\ApiHelpParamValueMessage\fetchMessage().
MediaWiki\Message\Message::getParams | ( | ) |
Returns the message parameters.
Implements Wikimedia\Message\MessageSpecifier.
Reimplemented in MediaWiki\Language\RawMessage.
Definition at line 413 of file Message.php.
MediaWiki\Message\Message::getTitle | ( | ) |
Get a title object for a mediawiki message, where it can be found in the mediawiki namespace.
The title will be for the current language, if the message key is in $wgForceUIMsgAsContentMsg it will be append with the language code (except content language), because Message::inContentLanguage will also return in user language.
Definition at line 537 of file Message.php.
References NS_MEDIAWIKI.
MediaWiki\Message\Message::inContentLanguage | ( | ) |
Request the message in the wiki's content language, unless it is disabled for this message.
Definition at line 927 of file Message.php.
MediaWiki\Message\Message::inLanguage | ( | $lang | ) |
Request the message in any language that is supported.
As a side effect interface message status is unconditionally turned off.
Bcp47Code | StubUserLang | string | $lang | Language code or language object. |
Definition at line 870 of file Message.php.
Referenced by MediaWiki\CommentStore\CommentStoreComment\newUnsavedComment().
MediaWiki\Message\Message::inUserLanguage | ( | ) |
Request the message in the user's current language, overriding any explicit language that was previously set.
Set the interface flag to true.
Definition at line 908 of file Message.php.
MediaWiki\Message\Message::isBlank | ( | ) |
Check whether a message does not exist, or is an empty string.
Definition at line 1164 of file Message.php.
MediaWiki\Message\Message::isDisabled | ( | ) |
Check whether a message does not exist, is an empty string, or is "-".
Definition at line 1176 of file Message.php.
MediaWiki\Message\Message::isMultiKey | ( | ) |
Definition at line 377 of file Message.php.
|
static |
array | $list | |
string | $type | One of the ListType constants |
Definition at line 1321 of file Message.php.
Referenced by MediaWiki\Api\ApiQueryLanguageinfo\execute(), MediaWiki\Specials\SpecialVersion\getCopyrightAndAuthorList(), MediaWiki\Api\ApiMain\modifyHelp(), MediaWiki\Api\ApiMain\reportUnusedParams(), MediaWiki\Api\ApiBase\requireAtLeastOneParameter(), MediaWiki\Api\ApiBase\requireMaxOneParameter(), MediaWiki\Api\ApiBase\requireNoConflictingParameters(), and MediaWiki\Api\ApiBase\requireOnlyOneParameter().
|
static |
Factory function accepting multiple message keys and returning a message instance for the first message which is non-empty.
If all messages are empty then an instance of the last message key is returned.
string|string[] | ...$keys Message keys, or first argument as an array of all the message keys. |
Definition at line 514 of file Message.php.
|
static |
Factory function that is just wrapper for the real constructor.
It is intended to be used instead of the real constructor, because it allows chaining method calls, while new objects don't.
string | string[] | MessageSpecifier | $key | @phpcs:ignore Generic.Files.LineLength |
MessageParam|MessageSpecifier|string|int|float|list<MessageParam|MessageSpecifier|string|int|float> | ...$params See Message::params() |
Definition at line 449 of file Message.php.
References $params.
Referenced by MediaWiki\Auth\ButtonAuthenticationRequest\__set_state().
|
static |
Transform a MessageSpecifier or a primitive value used interchangeably with specifiers (a message key string, or a key + params array) into a proper Message.
Also accepts a MessageSpecifier inside an array: that's not considered a valid format but is an easy error to make due to how StatusValue stores messages internally. Providing further array elements in that case causes an exception to be thrown.
When the MessageSpecifier object is an instance of Message, a clone of the object is returned. This is unlike the new Message( … )
constructor, which returns a new object constructed from scratch with the same key. This difference is mostly relevant when the passed object is an instance of a subclass like RawMessage or ApiMessage.
string | array | MessageSpecifier | $value |
Definition at line 471 of file Message.php.
References $params.
Referenced by MediaWiki\Api\ApiBase\addBlockInfoToStatus(), MediaWiki\Message\TextFormatter\createMessage(), MediaWiki\Api\ApiMain\errorMessagesFromException(), MediaWiki\HTMLForm\HTMLForm\getMessage(), MediaWiki\HTMLForm\HTMLFormField\getMessage(), and MediaWiki\Specials\SpecialUpload\processVerificationError().
|
static |
string | int | float | $num |
Definition at line 1200 of file Message.php.
Referenced by MediaWiki\Api\ApiResult\addValue(), MediaWiki\Parser\PPFrame_Hash\newChild(), MediaWiki\Preferences\DefaultPreferencesFactory\profilePreferences(), MediaWiki\Preferences\DefaultPreferencesFactory\rcPreferences(), MediaWiki\Specials\SpecialSearch\showCreateLink(), MediaWiki\Title\MediaWikiTitleCodec\splitTitleString(), MediaWiki\Api\ApiOptionsBase\validate(), and MediaWiki\Preferences\DefaultPreferencesFactory\watchlistPreferences().
MediaWiki\Message\Message::numParams | ( | $params | ) |
Add parameters that are numeric and will be passed through Language::formatNum before substitution.
string|int|float|list<string|int|float> | ...$params Numeric parameters, or a single argument that is an array of numeric parameters. |
Definition at line 620 of file Message.php.
References $params.
MediaWiki\Message\Message::page | ( | ?PageReference | $page | ) |
Set the page object to use as context when transforming the message.
?PageReference | $page |
Definition at line 990 of file Message.php.
MediaWiki\Message\Message::params | ( | $params | ) |
Adds parameters to the parameter list of this message.
@phpcs:ignore Generic.Files.LineLength
MessageParam|MessageSpecifier|string|int|float|list<MessageParam|MessageSpecifier|string|int|float> | ...$params Parameters as strings or MessageParam values (from Message::numParam() and the like), may also be passed as a single array instead of variadic parameters. |
Definition at line 568 of file Message.php.
References $params, and Wikimedia\Message\MessageParam\getType().
Referenced by MediaWiki\Message\Message\__construct().
MediaWiki\Message\Message::parse | ( | ) |
Fully parse the text from wikitext to HTML.
Definition at line 1091 of file Message.php.
Referenced by MediaWiki\EditPage\IntroMessageList\add(), and MediaWiki\HTMLForm\HTMLFormField\formatErrors().
MediaWiki\Message\Message::parseAsBlock | ( | ) |
Returns the parsed message text which is always surrounded by a block element.
Definition at line 1128 of file Message.php.
|
protected |
Wrapper for what ever method we use to parse wikitext.
string | $string | Wikitext message contents. |
Definition at line 1454 of file Message.php.
MediaWiki\Message\Message::plain | ( | ) |
Returns the message text as-is, only parameters are substituted.
Definition at line 1116 of file Message.php.
|
static |
string | $plaintext |
Definition at line 1310 of file Message.php.
Referenced by MediaWiki\CommentStore\CommentStoreComment\__construct(), MediaWiki\Parser\CoreParserFunctions\displaytitle(), MediaWiki\Api\ApiEditPage\execute(), and MediaWiki\Parser\PPFrame_Hash\newChild().
MediaWiki\Message\Message::plaintextParams | ( | $params | ) |
Add parameters that are plaintext and will be passed through without the content being evaluated.
Plaintext parameters are not valid as arguments to parser functions. This differs from self::rawParams in that the Message class handles escaping to match the output format.
string|string[] | ...$params plaintext parameters, or a single argument that is an array of plaintext parameters. |
Definition at line 831 of file Message.php.
References $params.
|
static |
string | int | float | MessageSpecifier | $raw |
Definition at line 1189 of file Message.php.
Referenced by MediaWiki\Installer\WebInstallerComplete\execute().
MediaWiki\Message\Message::rawParams | ( | $params | ) |
Add parameters that are substituted after parsing or escaping.
In other words the parsing process cannot access the contents of this type of parameter, and you need to make sure it is sanitized beforehand. The parser will see "$n", instead.
string|int|float|MessageSpecifier|array<string|int|float|MessageSpecifier> | ...$params Raw parameters as strings, or a single argument that is an array of raw parameters. |
Definition at line 599 of file Message.php.
References $params.
|
protected |
Substitutes any parameters into the message text.
string | $message | The message text. |
string | $type | Either "before" or "after". |
string | $format | One of the FORMAT_* constants. |
Definition at line 1336 of file Message.php.
MediaWiki\Message\Message::serialize | ( | ) |
Definition at line 290 of file Message.php.
MediaWiki\Message\Message::setContext | ( | IContextSource | $context | ) |
Set the language and the title from a context object.
IContextSource | $context |
Definition at line 850 of file Message.php.
References MediaWiki\Context\IContextSource\getLanguage(), and MediaWiki\Context\IContextSource\getTitle().
MediaWiki\Message\Message::setInterfaceMessageFlag | ( | $interface | ) |
Allows manipulating the interface message flag directly.
Can be used to restore the flag after setting a language.
bool | $interface |
Definition at line 948 of file Message.php.
|
static |
int | $size |
Definition at line 1288 of file Message.php.
Referenced by MediaWiki\Api\ApiMain\setupExternalResponse().
MediaWiki\Message\Message::sizeParams | ( | $params | ) |
Add parameters that are file sizes and will be passed through Language::formatSize before substitution.
int|int[] | ...$params Size parameters, or a single argument that is an array of size parameters. |
Definition at line 787 of file Message.php.
References $params.
MediaWiki\Message\Message::text | ( | ) |
Returns the message text.
{{-transformation occurs (substituting the template with its parsed result).
Definition at line 1104 of file Message.php.
|
static |
MediaWiki\Message\Message::timeParams | ( | $params | ) |
Add parameters that are times and will be passed through Language::time before substitution.
string|string[] | ...$params Time parameters, or a single argument that is an array of time parameters. |
Definition at line 745 of file Message.php.
References $params.
|
static |
int | float | $period |
Definition at line 1277 of file Message.php.
MediaWiki\Message\Message::timeperiodParams | ( | $params | ) |
Add parameters that are time periods and will be passed through Language::formatTimePeriod before substitution.
int|float|(int|float)[] | ...$params Time period parameters, or a single argument that is an array of time period parameters. |
Definition at line 766 of file Message.php.
References $params.
MediaWiki\Message\Message::title | ( | $title | ) |
Set the Title object to use as context when transforming the message.
Title | $title |
Definition at line 977 of file Message.php.
MediaWiki\Message\Message::toString | ( | string | $format | ) |
Returns the message formatted a certain way.
string | $format | One of the FORMAT_* constants. |
Definition at line 1002 of file Message.php.
|
protected |
Wrapper for what ever method we use to {{-transform wikitext (substituting the template with its parsed result).
string | $string | Wikitext message contents. |
Definition at line 1476 of file Message.php.
MediaWiki\Message\Message::unserialize | ( | $serialized | ) |
string | $serialized |
Definition at line 322 of file Message.php.
MediaWiki\Message\Message::useDatabase | ( | $useDatabase | ) |
bool | $useDatabase | If messages in the local MediaWiki namespace should be loaded; false to use only the compiled LocalisationCache |
Definition at line 961 of file Message.php.
|
static |
string | $userGroup |
Definition at line 1266 of file Message.php.
MediaWiki\Message\Message::userGroupParams | ( | $params | ) |
Add parameters that represent user groups.
string|string[] | ...$params User Group parameters, or a single argument that is an array of user group parameters. |
Definition at line 724 of file Message.php.
References $params.
|
protected |
Content object representing the message.
Definition at line 237 of file Message.php.
|
protected |
page object to use as context.
Definition at line 232 of file Message.php.
|
protected |
In which language to get this message.
True, which is the default, means the current user language, false content language.
Definition at line 184 of file Message.php.
|
protected |
The message key.
If $keysToTry has more than one element, this may change to one of the keys to try when fetching the message text.
Definition at line 203 of file Message.php.
Referenced by MediaWiki\Message\Message\__construct(), MediaWiki\Api\ApiMessage\__construct(), MediaWiki\Api\ApiRawMessage\__construct(), MediaWiki\Language\RawMessage\fetchMessage(), and MediaWiki\Language\RawMessage\getTextOfRawMessage().
|
protected |
List of keys to try when fetching the message.
Definition at line 209 of file Message.php.
In which language to get this message.
Overrides the $interface setting.
Explicit language object, or null for user language
Definition at line 191 of file Message.php.
Referenced by MediaWiki\Message\Message\__construct().
|
staticprotected |
Mapping from Message::listParam() types to Language methods.
Definition at line 171 of file Message.php.
|
protected |
Definition at line 242 of file Message.php.
Referenced by MediaWiki\Api\ApiHelpParamValueMessage\fetchMessage(), and MediaWiki\Language\RawMessage\fetchMessage().
|
protected |
The message key that the message was fetched from, if different from all of the requested $keysToTry (the requested key may be overridden by hooks).
Definition at line 215 of file Message.php.
Referenced by MediaWiki\Api\ApiHelpParamValueMessage\fetchMessage().
|
protected |
List of parameters which will be substituted into the message.
Definition at line 221 of file Message.php.
Referenced by MediaWiki\Language\RawMessage\getParamsOfRawMessage().
|
protected |
If messages in the local MediaWiki namespace should be loaded; false to use only the compiled LocalisationCache.
Definition at line 227 of file Message.php.
|
protected |
A callable which returns the current user language, or null to get it from global state.
Definition at line 197 of file Message.php.
const MediaWiki\Message\Message::FORMAT_BLOCK_PARSE = 'block-parse' |
Use normal wikitext -> HTML parsing (the result will be wrapped in a block-level HTML tag)
Definition at line 159 of file Message.php.
const MediaWiki\Message\Message::FORMAT_ESCAPED = 'escaped' |
Transform {{..}} constructs, HTML-escape the result.
Definition at line 165 of file Message.php.
const MediaWiki\Message\Message::FORMAT_PARSE = 'parse' |
Use normal wikitext -> HTML parsing but strip the block-level wrapper.
Definition at line 161 of file Message.php.
const MediaWiki\Message\Message::FORMAT_PLAIN = 'plain' |
Use message text as-is.
Definition at line 157 of file Message.php.
const MediaWiki\Message\Message::FORMAT_TEXT = 'text' |
Transform {{..}} constructs but don't transform to HTML.
Definition at line 163 of file Message.php.