MediaWiki REL1_33
Message Class Reference

The Message class provides methods which fulfil two basic services: More...

Inheritance diagram for Message:
Collaboration diagram for Message:

Public Member Functions

 __construct ( $key, $params=[], Language $language=null)
 
 __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>";.
 
 bitrateParams ()
 Add parameters that are bitrates and will be passed through Language::formatBitrate before substitution.
 
 content ()
 Returns the message as a Content object.
 
 durationParams ()
 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 ()
 Add parameters that are expiration times and will be passed through Language::formatExpiry before substitution.
 
 getFormat ()
 Returns the message format.
 
 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 ()
 Add parameters that are numeric and will be passed through Language::formatNum before substitution.
 
 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 ()
 Add parameters that are plaintext and will be passed through without the content being evaluated.
 
 rawParams ()
 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 ()
 Add parameters that are file sizes and will be passed through Language::formatSize before substitution.
 
 text ()
 Returns the message text.
 
 timeperiodParams ()
 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 ( $format=null)
 Returns the message parsed from wikitext to HTML.
 
 unserialize ( $serialized)
 
 useDatabase ( $useDatabase)
 Enable or disable database use.
 

Static Public Member Functions

static bitrateParam ( $bitrate)
 
static durationParam ( $duration)
 
static expiryParam ( $expiry)
 
static listParam (array $list, $type='text')
 
static newFallbackSequence ()
 Factory function accepting multiple message keys and returning a message instance for the first message which is non-empty.
 
static newFromKey ( $key)
 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 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.
 
string $format = 'parse'
 
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.
 
Title $title = null
 Title object to use as context.
 
bool $useDatabase = true
 Whether database can be used.
 

Static Protected Attributes

static array $listTypeMap
 Mapping from Message::listParam() types to Language methods.
 

Detailed Description

The Message class provides methods which fulfil two basic services:

  • fetching interface messages
  • processing messages 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.

See also
https://www.mediawiki.org/wiki/Manual:Messages_API for equivalences between old and new functions.

You should use the wfMessage() global function which acts as a wrapper for the Message class. The wrapper let you pass parameters as arguments.

The most basic usage cases would be:

// Initialize a Message object using the 'some_key' message key
$message = wfMessage( 'some_key' );
// Using two parameters those values are strings 'value1' and 'value2':
$message = wfMessage( 'some_key',
'value1', 'value2'
);
string $message
Definition Message.php:238
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 use $formDescriptor instead 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;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services

Global function wrapper:

Since wfMessage() 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 wfMessage() usage.

Fetching a message text for interface message:

$button = Xml::button(
wfMessage( 'submit' )->text()
);
text()
Returns the message text.
Definition Message.php:953

A Message instance can be passed parameters after it has been constructed, use the params() method to do so:

wfMessage( 'welcome-to' )
->params( $wgSitename )
->text();
$wgSitename
Name of the site.

{{GRAMMAR}} and friends work correctly:

wfMessage( 'are-friends',
$user, $friend
);
wfMessage( 'bad-message' )
->rawParams( '<script>...</script>' )
->escaped();

Changing language:

Messages can be requested in a different language or in whatever current content language is being used. The methods are:

  • Message->inContentLanguage()
  • Message->inLanguage()

Sometimes the message text ends up in the database, so content language is needed:

wfMessage( 'file-log',
$user, $filename
)->inContentLanguage()->text();

Checking whether a message exists:

wfMessage( 'mysterious-message' )->exists()
// returns a boolean whether the 'mysterious-message' key exist.

If you want to use a different language:

$userLanguage = $user->getOption( 'language' );
wfMessage( 'email-header' )
->inLanguage( $userLanguage )
->plain();
return true to allow those checks to and false if checking is done & $user
Definition hooks.txt:1510
Note
You can parse the text only in the content or interface languages

Comparison with old wfMsg* functions:

Use full parsing:

// old style:
wfMsgExt( 'key', [ 'parseinline' ], 'apple' );
// new style:
wfMessage( 'key', 'apple' )->parse();

Parseinline is used because it is more useful when pre-building HTML. In normal use it is better to use OutputPage::(add|wrap)WikiMsg.

Places where HTML cannot be used. {{-transformation is done.

// old style:
wfMsgExt( 'key', [ 'parsemag' ], 'apple', 'pear' );
// new style:
wfMessage( 'key', 'apple', 'pear' )->text();

Shortcut for escaping the message too, similar to wfMsgHTML(), but parameters are not replaced after escaping by default.

$escaped = wfMessage( 'key' )
->rawParams( 'apple' )
->escaped();

Appendix:

Todo:
  • test, can we have tests?
  • this documentation needs to be extended
See also
https://www.mediawiki.org/wiki/WfMessage()
https://www.mediawiki.org/wiki/New_messages_API
https://www.mediawiki.org/wiki/Localisation
Since
1.17

Definition at line 160 of file Message.php.

Constructor & Destructor Documentation

◆ __construct()

Message::__construct (   $key,
  $params = [],
Language  $language = null 
)
Since
1.17
Parameters
string | string[] | MessageSpecifier$keyMessage key, or array of message keys to try and use the first non-empty message for, or a MessageSpecifier to copy from.
array$paramsMessage parameters.
Language | null$language[optional] Language to use (defaults to current user language).
Exceptions
InvalidArgumentException

Definition at line 249 of file Message.php.

References $params, array(), and key.

Member Function Documentation

◆ __toString()

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>";.

Since
1.18
Returns
string

Definition at line 916 of file Message.php.

References key, and toString().

◆ bitrateParam()

static Message::bitrateParam (   $bitrate)
static
Since
1.22
Parameters
int$bitrate
Returns
int[] Array with a single "bitrate" key.

Definition at line 1104 of file Message.php.

◆ bitrateParams()

Message::bitrateParams ( )

Add parameters that are bitrates and will be passed through Language::formatBitrate before substitution.

Since
1.22
Parameters
int | int[]$param,...Bit rate parameters, or a single argument that is an array of bit rate parameters.
Returns
Message $this

Definition at line 680 of file Message.php.

References $params, and as.

◆ content()

Message::content ( )

Returns the message as a Content object.

Returns
Content

Definition at line 837 of file Message.php.

References $content, and content().

Referenced by content().

◆ durationParam()

static Message::durationParam (   $duration)
static
Since
1.22
Parameters
int$duration
Returns
int[] Array with a single "duration" key.

Definition at line 1060 of file Message.php.

◆ durationParams()

Message::durationParams ( )

Add parameters that are durations of time and will be passed through Language::formatDuration before substitution.

Since
1.22
Parameters
int | int[]$param,...Duration parameters, or a single argument that is an array of duration parameters.
Returns
Message $this

Definition at line 592 of file Message.php.

References $params, and as.

◆ escaped()

Message::escaped ( )

Returns the message text.

{{-transformation is done and the result is escaped excluding any raw parameters.

Since
1.17
Returns
string Escaped message text.

Definition at line 990 of file Message.php.

References format, and toString().

Referenced by MediaWiki\Widget\Search\BasicSearchResultSetWidget\header().

◆ exists()

Message::exists ( )

Check whether a message key has been defined currently.

Since
1.17
Returns
bool

Definition at line 1002 of file Message.php.

References fetchMessage().

◆ expiryParam()

static Message::expiryParam (   $expiry)
static
Since
1.22
Parameters
string$expiry
Returns
string[] Array with a single "expiry" key.

Definition at line 1071 of file Message.php.

◆ expiryParams()

Message::expiryParams ( )

Add parameters that are expiration times and will be passed through Language::formatExpiry before substitution.

Since
1.22
Parameters
string | string[]$param,...Expiry parameters, or a single argument that is an array of expiry parameters.
Returns
Message $this

Definition at line 614 of file Message.php.

References $params, and as.

◆ extractParam()

Message::extractParam (   $param,
  $format 
)
protected

Extracts the parameter type and preprocessed the value if needed.

Since
1.18
Parameters
mixed$paramParameter as defined in this class.
string$formatOne of the FORMAT_* constants.
Returns
array Array with the parameter type (either "before" or "after") and the value.

Definition at line 1183 of file Message.php.

References formatListParam(), formatPlaintext(), getKey(), getLanguage(), and serialize().

Referenced by formatListParam(), and replaceParameters().

◆ fetchMessage()

Message::fetchMessage ( )
protected

Wrapper for what ever method we use to get message contents.

Since
1.17
Returns
string
Exceptions
MWExceptionIf message key array is empty.

Reimplemented in ApiHelpParamValueMessage, and RawMessage.

Definition at line 1303 of file Message.php.

References $cache, as, getLanguage(), key, message, and useDatabase().

Referenced by exists(), isBlank(), isDisabled(), and toString().

◆ formatListParam()

Message::formatListParam ( array  $params,
  $listType,
  $format 
)
protected

Formats a list of parameters as a concatenated string.

Since
1.29
Parameters
array$params
string$listType
string$formatOne of the FORMAT_* constants.
Returns
array Array with the parameter type (either "before" or "after") and the value.

Definition at line 1356 of file Message.php.

References $e, $params, $type, $value, $vars, as, extractParam(), getKey(), getLanguage(), key, list, serialize(), and wfDebugLog().

Referenced by extractParam().

◆ formatPlaintext()

Message::formatPlaintext (   $plaintext,
  $format 
)
protected

Formats a message parameter wrapped with 'plaintext'.

Ensures that the entire string is displayed unchanged when displayed in the output format.

Since
1.25
Parameters
string$plaintextString to ensure plaintext output of
string$formatOne of the FORMAT_* constants.
Returns
string Input plaintext encoded for output to $format

Definition at line 1334 of file Message.php.

Referenced by extractParam().

◆ getFormat()

Message::getFormat ( )

Returns the message format.

Since
1.21
Returns
string
Deprecated:
since 1.29 formatting is not stateful

Definition at line 379 of file Message.php.

References wfDeprecated().

◆ getKey()

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.

Since
1.21
Returns
string

Implements MessageSpecifier.

Definition at line 356 of file Message.php.

Referenced by ApiMessageTest\compareMessages(), CommentStore\encodeMessage(), extractParam(), formatListParam(), and ApiAuthManagerHelper\formatMessage().

◆ getKeysToTry()

Message::getKeysToTry ( )
Since
1.24
Returns
string[] The list of keys to try when fetching the message text, in order of preference.

Definition at line 341 of file Message.php.

Referenced by ApiMessageTest\compareMessages(), and CommentStore\encodeMessage().

◆ getLanguage()

Message::getLanguage ( )

◆ getParams()

Message::getParams ( )

Returns the message parameters.

Since
1.21
Returns
array

Implements MessageSpecifier.

Definition at line 367 of file Message.php.

Referenced by ApiMessageTest\compareMessages(), CommentStore\encodeMessage(), ApiAuthManagerHelper\formatMessage(), and StatusTest\sanitizedMessageParams().

◆ getTitle()

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.

See also
$wgForceUIMsgAsContentMsg
Returns
Title
Since
1.26

Definition at line 484 of file Message.php.

References $lang, $title, $wgForceUIMsgAsContentMsg, array(), getLanguage(), key, and NS_MEDIAWIKI.

◆ inContentLanguage()

Message::inContentLanguage ( )

Request the message in the wiki's content language, unless it is disabled for this message.

Since
1.17
See also
$wgForceUIMsgAsContentMsg
Returns
Message $this

Definition at line 778 of file Message.php.

References $wgForceUIMsgAsContentMsg, array(), inLanguage(), and key.

◆ inLanguage()

Message::inLanguage (   $lang)

Request the message in any language that is supported.

As a side effect interface message status is unconditionally turned off.

Since
1.17
Parameters
Language | string$langLanguage code or Language object.
Returns
Message $this
Exceptions
MWException

Definition at line 743 of file Message.php.

References $lang, $type, false, Language\getCode(), and message.

Referenced by inContentLanguage(), CommentStoreComment\newUnsavedComment(), and setContext().

◆ isBlank()

Message::isBlank ( )

Check whether a message does not exist, or is an empty string.

Since
1.18
Todo:
FIXME: Merge with isDisabled()?
Returns
bool

Definition at line 1014 of file Message.php.

References fetchMessage().

◆ isDisabled()

Message::isDisabled ( )

Check whether a message does not exist, is an empty string, or is "-".

Since
1.18
Returns
bool

Definition at line 1026 of file Message.php.

References fetchMessage().

◆ isMultiKey()

Message::isMultiKey ( )
Since
1.24
Returns
bool True if this is a multi-key message, that is, if the key provided to the constructor was a fallback list of keys to try.

Definition at line 331 of file Message.php.

◆ listParam()

static Message::listParam ( array  $list,
  $type = 'text' 
)
static
Since
1.29
Parameters
array$list
string$type'comma', 'semicolon', 'pipe', 'text'
Returns
array Array with "list" and "type" keys.

Definition at line 1126 of file Message.php.

References $type.

◆ newFallbackSequence()

static Message::newFallbackSequence ( )
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.

Since
1.18
Parameters
string | string[]$keys,...Message keys, or first argument as an array of all the message keys.
Returns
Message

Definition at line 460 of file Message.php.

References $keys.

◆ newFromKey()

static Message::newFromKey (   $key)
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.

Since
1.17
Parameters
string | string[] | MessageSpecifier$key
mixed$param,...Parameters as strings.
Returns
Message

Definition at line 408 of file Message.php.

References $params.

◆ newFromSpecifier()

static Message::newFromSpecifier (   $value)
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.

Parameters
string | array | MessageSpecifier$value
Returns
Message
Exceptions
InvalidArgumentException
Since
1.27

Definition at line 427 of file Message.php.

References $params, and $value.

◆ numParam()

static Message::numParam (   $num)
static
Since
1.18
Parameters
mixed$num
Returns
array Array with a single "num" key.

Definition at line 1049 of file Message.php.

◆ numParams()

Message::numParams ( )

Add parameters that are numeric and will be passed through Language::formatNum before substitution.

Since
1.18
Parameters
mixed$param,...Numeric parameters, or a single argument that is an array of numeric parameters.
Returns
Message $this

Definition at line 570 of file Message.php.

References $params, and as.

◆ params()

Message::params ( )

Adds parameters to the parameter list of this message.

Since
1.17
Parameters
mixed$args,...Parameters as strings or arrays from Message::numParam() and the like, or a single array of parameters.
Returns
Message $this

Definition at line 511 of file Message.php.

References $args, $value, and as.

Referenced by TransformTooBigImageAreaError\__construct().

◆ parse()

Message::parse ( )

Fully parse the text from wikitext to HTML.

Since
1.17
Returns
string Parsed HTML.

Definition at line 941 of file Message.php.

References format, and toString().

Referenced by ApiHelp\wrap().

◆ parseAsBlock()

Message::parseAsBlock ( )

Returns the parsed message text which is always surrounded by a block element.

Since
1.17
Returns
string HTML

Definition at line 977 of file Message.php.

References format, and toString().

◆ parseText()

Message::parseText (   $string)
protected

Wrapper for what ever method we use to parse wikitext.

Since
1.17
Parameters
string$stringWikitext message contents.
Returns
string Wikitext parsed into HTML.

Definition at line 1256 of file Message.php.

References $out, getLanguage(), ParserOutput\getText(), and title.

Referenced by toString().

◆ plain()

Message::plain ( )

Returns the message text as-is, only parameters are substituted.

Since
1.17
Returns
string Unescaped untransformed message text.

Definition at line 965 of file Message.php.

References format, and toString().

◆ plaintextParam()

static Message::plaintextParam (   $plaintext)
static
Since
1.25
Parameters
string$plaintext
Returns
string[] Array with a single "plaintext" key.

Definition at line 1115 of file Message.php.

◆ plaintextParams()

Message::plaintextParams ( )

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.

Since
1.25
Parameters
string | string[]$param,...plaintext parameters, or a single argument that is an array of plaintext parameters.
Returns
Message $this

Definition at line 704 of file Message.php.

References $params, and as.

◆ rawParam()

static Message::rawParam (   $raw)
static
Since
1.17
Parameters
mixed$raw
Returns
array Array with a single "raw" key.

Definition at line 1038 of file Message.php.

◆ rawParams()

Message::rawParams ( )

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.

Since
1.17
Parameters
mixed$params,...Raw parameters as strings, or a single argument that is an array of raw parameters.
Returns
Message $this

Definition at line 548 of file Message.php.

References $params, and as.

◆ replaceParameters()

Message::replaceParameters (   $message,
  $type,
  $format 
)
protected

Substitutes any parameters into the message text.

Since
1.17
Parameters
string$messageThe message text.
string$typeEither "before" or "after".
string$formatOne of the FORMAT_* constants.
Returns
string

Definition at line 1146 of file Message.php.

References $type, $value, as, extractParam(), and list.

Referenced by toString().

◆ serialize()

Message::serialize ( )
See also
Serializable::serialize()
Since
1.26
Returns
string

Definition at line 283 of file Message.php.

References serialize(), and title.

◆ setContext()

Message::setContext ( IContextSource  $context)

Set the language and the title from a context object.

Since
1.19
Parameters
IContextSource$context
Returns
Message $this

Definition at line 724 of file Message.php.

References $context, IContextSource\getTitle(), inLanguage(), title, and true.

Referenced by ApiAuthManagerHelper\formatMessage().

◆ setInterfaceMessageFlag()

Message::setInterfaceMessageFlag (   $interface)

Allows manipulating the interface message flag directly.

Can be used to restore the flag after setting a language.

Since
1.20
Parameters
bool$interface
Returns
Message $this

Definition at line 798 of file Message.php.

◆ sizeParam()

static Message::sizeParam (   $size)
static
Since
1.22
Parameters
int$size
Returns
int[] Array with a single "size" key.

Definition at line 1093 of file Message.php.

◆ sizeParams()

Message::sizeParams ( )

Add parameters that are file sizes and will be passed through Language::formatSize before substitution.

Since
1.22
Parameters
int | int[]$param,...Size parameters, or a single argument that is an array of size parameters.
Returns
Message $this

Definition at line 658 of file Message.php.

References $params, and as.

◆ text()

Message::text ( )

Returns the message text.

{{-transformation is done.

Since
1.17
Returns
string Unescaped message text.

Definition at line 953 of file Message.php.

References format, and toString().

◆ timeperiodParam()

static Message::timeperiodParam (   $period)
static
Since
1.22
Parameters
int$period
Returns
int[] Array with a single "period" key.

Definition at line 1082 of file Message.php.

◆ timeperiodParams()

Message::timeperiodParams ( )

Add parameters that are time periods and will be passed through Language::formatTimePeriod before substitution.

Since
1.22
Parameters
int | int[]$param,...Time period parameters, or a single argument that is an array of time period parameters.
Returns
Message $this

Definition at line 636 of file Message.php.

References $params, and as.

◆ title()

Message::title (   $title)

Set the Title object to use as context when transforming the message.

Since
1.18
Parameters
Title$title
Returns
Message $this

Definition at line 827 of file Message.php.

References title.

Referenced by ApiMessageTest\compareMessages().

◆ toString()

Message::toString (   $format = null)

Returns the message parsed from wikitext to HTML.

Since
1.17
Parameters
string | null$formatOne of the FORMAT_* constants. Null means use whatever was used the last time (this is for B/C and should be avoided).
Returns
string HTML @suppress SecurityCheck-DoubleEscaped phan false positive

Definition at line 856 of file Message.php.

References fetchMessage(), format, key, parseText(), replaceParameters(), and transformText().

Referenced by __toString(), escaped(), parse(), parseAsBlock(), plain(), and text().

◆ transformText()

Message::transformText (   $string)
protected

Wrapper for what ever method we use to {{-transform wikitext.

Since
1.17
Parameters
string$stringWikitext message contents.
Returns
string Wikitext with {{-constructs replaced with their values.

Definition at line 1286 of file Message.php.

References getLanguage(), and title.

Referenced by toString().

◆ unserialize()

Message::unserialize (   $serialized)
See also
Serializable::unserialize()
Since
1.26
Parameters
string$serialized

Definition at line 301 of file Message.php.

References $data, $serialized, format, key, title, unserialize(), and useDatabase().

◆ useDatabase()

Message::useDatabase (   $useDatabase)

Enable or disable database use.

Since
1.17
Parameters
bool$useDatabase
Returns
Message $this

Definition at line 812 of file Message.php.

References message, and useDatabase().

Referenced by ApiMessageTest\compareMessages(), fetchMessage(), unserialize(), and useDatabase().

Member Data Documentation

◆ $content

Content Message::$content = null
protected

Content object representing the message.

Definition at line 233 of file Message.php.

◆ $format

string Message::$format = 'parse'
protected
Deprecated:

Definition at line 218 of file Message.php.

◆ $interface

bool Message::$interface = true
protected

In which language to get this message.

True, which is the default, means the current user language, false content language.

Definition at line 189 of file Message.php.

Referenced by ApiHelpParamValueMessage\fetchMessage().

◆ $key

string Message::$key
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 202 of file Message.php.

Referenced by ApiMessage\__construct(), ApiRawMessage\__construct(), and RawMessage\fetchMessage().

◆ $keysToTry

string [] Message::$keysToTry
protected

List of keys to try when fetching the message.

Definition at line 207 of file Message.php.

◆ $language

Language bool Message::$language = false
protected

In which language to get this message.

Overrides the $interface setting.

Explicit language object, or false for user language

Definition at line 196 of file Message.php.

Referenced by ApiHelpParamValueMessage\fetchMessage().

◆ $listTypeMap

array Message::$listTypeMap
staticprotected
Initial value:
= [
'comma' => 'commaList',
'semicolon' => 'semicolonList',
'pipe' => 'pipeList',
'text' => 'listToText',
]

Mapping from Message::listParam() types to Language methods.

Definition at line 176 of file Message.php.

◆ $message

string Message::$message
protected

Definition at line 238 of file Message.php.

Referenced by ApiHelpParamValueMessage\fetchMessage(), and RawMessage\fetchMessage().

◆ $parameters

array Message::$parameters = []
protected

List of parameters which will be substituted into the message.

Definition at line 212 of file Message.php.

◆ $title

Title Message::$title = null
protected

Title object to use as context.

Definition at line 228 of file Message.php.

Referenced by ApiHelpParamValueMessage\fetchMessage().

◆ $useDatabase

bool Message::$useDatabase = true
protected

Whether database can be used.

Definition at line 223 of file Message.php.

Referenced by ApiHelpParamValueMessage\fetchMessage().

◆ FORMAT_BLOCK_PARSE

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 164 of file Message.php.

◆ FORMAT_ESCAPED

const Message::FORMAT_ESCAPED = 'escaped'

Transform {{..}} constructs, HTML-escape the result.

Definition at line 170 of file Message.php.

◆ FORMAT_PARSE

const Message::FORMAT_PARSE = 'parse'

Use normal wikitext -> HTML parsing but strip the block-level wrapper.

Definition at line 166 of file Message.php.

◆ FORMAT_PLAIN

const Message::FORMAT_PLAIN = 'plain'

Use message text as-is.

Definition at line 162 of file Message.php.

◆ FORMAT_TEXT

const Message::FORMAT_TEXT = 'text'

Transform {{..}} constructs but don't transform to HTML.

Definition at line 168 of file Message.php.


The documentation for this class was generated from the following file: