MediaWiki REL1_37
|
The Message class deals with fetching and processing of interface message into a variety of formats. More...
Public Member Functions | |
__construct ( $key, $params=[], Language $language=null) | |
__serialize () | |
__toString () | |
Magic method implementation of the above (for PHP >= 5.2.0), 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. | |
content () | |
Returns the message as a Content object. | |
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. | |
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 (... $args) | |
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) | |
Enable or disable database use. | |
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='text') |
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) |
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 what ever 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) | |
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. | |
Protected Attributes | |
Content | $content = null |
Content object representing the message. | |
PageReference | $contextPage = null |
page object to use as context. | |
bool | $interface = 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 bool | $language = false |
In which language to get this message. | |
string | $message |
array | $parameters = [] |
List of parameters which will be substituted into the message. | |
bool | $useDatabase = true |
Whether database can be used. | |
Static Protected Attributes | |
static array | $listTypeMap |
Mapping from Message::listParam() types to Language methods. | |
Private Member Functions | |
format (string $format) | |
Returns the message formatted a certain way. | |
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 ResourceLoaderContext 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 138 of file Message.php.
Message::__construct | ( | $key, | |
$params = [] , |
|||
Language | $language = null |
||
) |
string | string[] | MessageSpecifier | $key | Message key, or array of message keys to try and use the first non-empty message for, or a MessageSpecifier to copy from. |
array | $params | Message parameters. |
Language | null | $language | [optional] Language to use (defaults to current user language). |
InvalidArgumentException |
Definition at line 222 of file Message.php.
Message::__serialize | ( | ) |
Definition at line 265 of file Message.php.
Message::__toString | ( | ) |
Magic method implementation of the above (for PHP >= 5.2.0), so we can do, eg: $foo = new Message( $key ); $string = "<abbr>$foo</abbr>";.
Definition at line 972 of file Message.php.
Message::__unserialize | ( | $data | ) |
array | $data |
Definition at line 297 of file Message.php.
|
static |
int | $bitrate |
Definition at line 1189 of file Message.php.
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 722 of file Message.php.
Message::content | ( | ) |
Returns the message as a Content object.
Definition at line 892 of file Message.php.
References $content.
|
static |
string | $date |
Definition at line 1145 of file Message.php.
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 638 of file Message.php.
|
static |
string | $dateTime |
Definition at line 1134 of file Message.php.
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 617 of file Message.php.
|
static |
int | $duration |
Definition at line 1112 of file Message.php.
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 575 of file Message.php.
Message::escaped | ( | ) |
Returns the message text.
{{-transformation is done and the result is escaped excluding any raw parameters.
Definition at line 1042 of file Message.php.
Referenced by MediaWiki\Search\SearchWidgets\BasicSearchResultSetWidget\header().
Message::exists | ( | ) |
Check whether a message key has been defined currently.
Definition at line 1053 of file Message.php.
|
static |
string | $expiry |
Definition at line 1123 of file Message.php.
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 596 of file Message.php.
|
protected |
Extracts the parameter type and preprocessed the value if needed.
mixed | $param | Parameter as defined in this class. |
string | $format | One of the FORMAT_* constants. |
Definition at line 1268 of file Message.php.
References serialize().
|
protected |
Wrapper for what ever method we use to get message contents.
MWException | If message key array is empty. |
Reimplemented in ApiHelpParamValueMessage, and RawMessage.
Definition at line 1390 of file Message.php.
References $cache.
|
private |
Returns the message formatted a certain way.
string | $format | One of the FORMAT_* constants. |
Definition at line 918 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 1443 of file Message.php.
References $type, serialize(), 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 1421 of file Message.php.
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 MessageSpecifier.
Definition at line 357 of file Message.php.
Referenced by MediaWiki\Message\Converter\convertMessage(), CommentStore\encodeMessage(), and ApiAuthManagerHelper\formatMessage().
Message::getKeysToTry | ( | ) |
Definition at line 342 of file Message.php.
Referenced by CommentStore\encodeMessage().
Message::getLanguage | ( | ) |
Returns the Language of the Message.
Definition at line 379 of file Message.php.
Referenced by TransformTooBigImageAreaError\__construct().
Message::getParams | ( | ) |
Returns the message parameters.
Implements MessageSpecifier.
Definition at line 368 of file Message.php.
Referenced by MediaWiki\Message\Converter\convertMessage(), CommentStore\encodeMessage(), and ApiAuthManagerHelper\formatMessage().
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 471 of file Message.php.
References $lang, $title, $wgForceUIMsgAsContentMsg, and NS_MEDIAWIKI.
Message::inContentLanguage | ( | ) |
Request the message in the wiki's content language, unless it is disabled for this message.
Definition at line 819 of file Message.php.
References $wgForceUIMsgAsContentMsg.
Message::inLanguage | ( | $lang | ) |
Request the message in any language that is supported.
As a side effect interface message status is unconditionally turned off.
Language | StubUserLang | string | $lang | Language code or Language object. |
MWException |
Definition at line 783 of file Message.php.
References $lang, $type, and Language\getCode().
Referenced by Status\msgInLang(), and CommentStoreComment\newUnsavedComment().
Message::isBlank | ( | ) |
Check whether a message does not exist, or is an empty string.
Definition at line 1065 of file Message.php.
Message::isDisabled | ( | ) |
Check whether a message does not exist, is an empty string, or is "-".
Definition at line 1077 of file Message.php.
Message::isMultiKey | ( | ) |
Definition at line 332 of file Message.php.
|
static |
array | $list | |
string | $type | 'comma', 'semicolon', 'pipe', 'text' |
Definition at line 1211 of file Message.php.
References $type.
Referenced by ApiUpload\checkVerification(), MediaWiki\Message\Converter\convertMessageParam(), ApiQueryLanguageinfo\execute(), ApiPageSet\getAllowedParams(), ApiHelp\getHelpInternal(), ApiMain\modifyHelp(), ApiMain\reportUnusedParams(), ApiBase\requireAtLeastOneParameter(), ApiBase\requireMaxOneParameter(), and 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 first message key is returned.
string|string[] | ...$keys Message keys, or first argument as an array of all the message keys. | |
-taint | $keys | tainted |
Definition at line 448 of file Message.php.
References $keys.
Referenced by wfMessageFallback().
|
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 | |
mixed | ...$params Parameters as strings. |
Definition at line 396 of file Message.php.
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. Further array elements are ignored in that case.
string | array | MessageSpecifier | $value | |
-taint | $value | tainted |
InvalidArgumentException |
Definition at line 414 of file Message.php.
Referenced by PermissionsError\__construct(), ApiMain\errorMessagesFromException(), PasswordReset\execute(), ApiLogin\formatMessage(), MWExceptionRenderer\getCustomMessage(), HTMLForm\getMessage(), HTMLFormField\getMessage(), ApiErrorFormatter\getMessageFromException(), LocalizedException\getMessageObject(), and UploadStashException\getMessageObject().
|
static |
mixed | $num |
Definition at line 1101 of file Message.php.
Referenced by ApiResult\addValue(), MediaWiki\Page\DeletePage\authorizeDeletion(), ApiOptions\execute(), LogFormatter\formatParameterValue(), ApiUpload\getChunkResult(), MergeHistory\isValidMerge(), MediaWiki\Preferences\DefaultPreferencesFactory\rcPreferences(), SpecialSearch\showCreateLink(), SpecialWhatLinksHere\showIndirectLinks(), MediaWikiTitleCodec\splitTitleString(), and MediaWiki\Preferences\DefaultPreferencesFactory\watchlistPreferences().
Message::numParams | ( | $params | ) |
Add parameters that are numeric and will be passed through Language::formatNum before substitution.
mixed | ...$params Numeric parameters, or a single argument that is an array of numeric parameters. |
Definition at line 554 of file Message.php.
Message::page | ( | ?PageReference | $page | ) |
Set the page object to use as context when transforming the message.
?PageReference | $page |
Definition at line 882 of file Message.php.
Message::params | ( | $args | ) |
Adds parameters to the parameter list of this message.
mixed | ...$args Parameters as strings or arrays from Message::numParam() and the like, or a single array of parameters. |
Definition at line 498 of file Message.php.
References $args.
Referenced by TransformTooBigImageAreaError\__construct().
Message::parse | ( | ) |
Fully parse the text from wikitext to HTML.
Definition at line 997 of file Message.php.
Referenced by ApiHelp\wrap().
Message::parseAsBlock | ( | ) |
Returns the parsed message text which is always surrounded by a block element.
Definition at line 1030 of file Message.php.
|
protected |
Wrapper for what ever method we use to parse wikitext.
string | $string | Wikitext message contents. |
Definition at line 1343 of file Message.php.
References ParserOutput\getText().
Message::plain | ( | ) |
Returns the message text as-is, only parameters are substituted.
Definition at line 1019 of file Message.php.
|
static |
string | $plaintext |
Definition at line 1200 of file Message.php.
Referenced by CommentStoreComment\__construct(), ContentModelChange\createNewContent(), ApiEditPage\execute(), EditPage\initialiseForm(), and ChangeTags\tagShortDescriptionMessage().
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 745 of file Message.php.
|
static |
mixed | $raw | |
-taint | $raw | html,raw_param |
Definition at line 1090 of file Message.php.
Referenced by WebInstallerComplete\execute(), LogFormatter\formatParameterValue(), UserGroupMembership\getLink(), BlockLogFormatter\getMessageParameters(), LogFormatter\getMessageParameters(), MergeLogFormatter\getMessageParameters(), MoveLogFormatter\getMessageParameters(), NewUsersLogFormatter\getMessageParameters(), PatrolLogFormatter\getMessageParameters(), ProtectLogFormatter\getMessageParameters(), RightsLogFormatter\getMessageParameters(), TagLogFormatter\getMessageParameters(), SpecialWhatLinksHere\getPrevNext(), RollbackAction\handleRollbackRequest(), MarkpatrolledAction\preText(), SpecialUndelete\showRevision(), and SpecialUndelete\undelete().
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.
mixed | ...$params Raw parameters as strings, or a single argument that is an array of raw parameters. |
Definition at line 533 of file Message.php.
|
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 1231 of file Message.php.
References $type.
Message::serialize | ( | ) |
Definition at line 256 of file Message.php.
Message::setContext | ( | IContextSource | $context | ) |
Set the language and the title from a context object.
IContextSource | $context |
Definition at line 764 of file Message.php.
References IContextSource\getLanguage(), IContextSource\getTitle(), and true.
Referenced by ApiAuthManagerHelper\formatMessage().
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 839 of file Message.php.
|
static |
int | $size |
Definition at line 1178 of file Message.php.
Referenced by UploadBase\checkFileSize().
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 701 of file Message.php.
Message::text | ( | ) |
Returns the message text.
{{-transformation is done.
Definition at line 1008 of file Message.php.
Referenced by HttpError\doLog().
|
static |
string | $time |
Definition at line 1156 of file Message.php.
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 659 of file Message.php.
|
static |
int | $period |
Definition at line 1167 of file Message.php.
Message::timeperiodParams | ( | $params | ) |
Add parameters that are time periods and will be passed through Language::formatTimePeriod before substitution.
int|int[] | ...$params Time period parameters, or a single argument that is an array of time period parameters. |
Definition at line 680 of file Message.php.
Message::title | ( | $title | ) |
Set the Title object to use as context when transforming the message.
Title | $title |
Definition at line 869 of file Message.php.
References $title.
Message::toString | ( | string | $format | ) |
Returns the message formatted a certain way.
string | $format | One of the FORMAT_* constants. |
Definition at line 907 of file Message.php.
|
protected |
Wrapper for what ever method we use to {{-transform wikitext.
string | $string | Wikitext message contents. |
Definition at line 1373 of file Message.php.
Message::unserialize | ( | $serialized | ) |
string | $serialized |
Definition at line 288 of file Message.php.
Message::useDatabase | ( | $useDatabase | ) |
Enable or disable database use.
bool | $useDatabase |
Definition at line 853 of file Message.php.
|
protected |
Content object representing the message.
Definition at line 205 of file Message.php.
|
protected |
page object to use as context.
Definition at line 200 of file Message.php.
Referenced by ApiHelpParamValueMessage\subMessage().
|
protected |
In which language to get this message.
True, which is the default, means the current user language, false content language.
Definition at line 167 of file Message.php.
Referenced by ApiHelpParamValueMessage\subMessage().
|
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 180 of file Message.php.
Referenced by __construct(), ApiMessage\__construct(), ApiRawMessage\__construct(), and ApiHelpParamValueMessage\subMessage().
|
protected |
List of keys to try when fetching the message.
Definition at line 185 of file Message.php.
|
protected |
In which language to get this message.
Overrides the $interface setting.
Explicit language object, or false for user language
Definition at line 174 of file Message.php.
Referenced by __construct(), and ApiHelpParamValueMessage\subMessage().
|
staticprotected |
Mapping from Message::listParam() types to Language methods.
Definition at line 154 of file Message.php.
|
protected |
Definition at line 210 of file Message.php.
Referenced by ApiHelpParamValueMessage\fetchMessage().
|
protected |
List of parameters which will be substituted into the message.
Definition at line 190 of file Message.php.
|
protected |
Whether database can be used.
Definition at line 195 of file Message.php.
Referenced by ApiHelpParamValueMessage\subMessage().
const 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 142 of file Message.php.
const Message::FORMAT_ESCAPED = 'escaped' |
Transform {{..}} constructs, HTML-escape the result.
Definition at line 148 of file Message.php.
const Message::FORMAT_PARSE = 'parse' |
Use normal wikitext -> HTML parsing but strip the block-level wrapper.
Definition at line 144 of file Message.php.
const Message::FORMAT_PLAIN = 'plain' |
Use message text as-is.
Definition at line 140 of file Message.php.
const Message::FORMAT_TEXT = 'text' |
Transform {{..}} constructs but don't transform to HTML.
Definition at line 146 of file Message.php.