MediaWiki REL1_34
|
Value object representing a message for i18n. More...
Public Member Functions | |
__construct ( $key, $params=[]) | |
bitrateParams (... $values) | |
Chainable mutator which adds parameters which are a number of bits per second (ParamType::BITRATE). | |
commaListParams (... $values) | |
Chainable mutator which adds comma lists (ListType::COMMA). | |
dump () | |
Dump the object for testing/debugging. | |
expiryParams (... $values) | |
Chainable mutator which adds parameters which are an expiry timestamp (ParamType::EXPIRY). | |
getKey () | |
Get the message key. | |
getParams () | |
Get the parameter array. | |
listParamsOfType ( $listType,... $values) | |
Chainable mutator which adds list parameters with a common type. | |
longDurationParams (... $values) | |
Chainable mutator which adds parameters which are a duration specified in seconds (ParamType::DURATION_LONG). | |
numParams (... $values) | |
Chainable mutator which adds numeric parameters (ParamType::NUM). | |
params (... $values) | |
Chainable mutator which adds text parameters and MessageParam parameters. | |
pipeListParams (... $values) | |
Chainable mutator which adds pipe lists (ListType::PIPE). | |
plaintextParams (... $values) | |
Chainable mutator which adds plaintext parameters (ParamType::PLAINTEXT). | |
rawParams (... $values) | |
Chainable mutator which adds "raw" parameters (ParamType::RAW). | |
semicolonListParams (... $values) | |
Chainable mutator which adds semicolon lists (ListType::SEMICOLON). | |
shortDurationParams (... $values) | |
Chainable mutator which adds parameters which are a duration specified in seconds (ParamType::DURATION_SHORT). | |
sizeParams (... $values) | |
Chainable mutator which adds parameters which are a number of bytes (ParamType::SIZE). | |
textListParams (... $values) | |
Chainable mutator which adds natural-language lists (ListType::AND). | |
textParams (... $values) | |
Chainable mutator which adds parameters of type text (ParamType::TEXT). | |
textParamsOfType ( $type,... $values) | |
Chainable mutator which adds text parameters with a common type. | |
Private Attributes | |
string | $key |
MessageParam[] | $params |
Value object representing a message for i18n.
A MessageValue holds a key and an array of parameters. It can be converted to a string in a particular language using formatters obtained from an IMessageFormatterFactory.
MessageValues are pure value objects and are safely newable.
Definition at line 14 of file MessageValue.php.
Wikimedia\Message\MessageValue::__construct | ( | $key, | |
$params = [] |
|||
) |
string | $key | |
(MessageParam|MessageValue|string|int|float)[] | $params Values that are not instances of MessageParam are wrapped using ParamType::TEXT. |
Definition at line 26 of file MessageValue.php.
References Wikimedia\Message\MessageValue\$key, and Wikimedia\Message\MessageValue\params().
Wikimedia\Message\MessageValue::bitrateParams | ( | $values | ) |
Chainable mutator which adds parameters which are a number of bits per second (ParamType::BITRATE).
int|float | ...$values |
Definition at line 172 of file MessageValue.php.
References Wikimedia\Message\ParamType\BITRATE, and Wikimedia\Message\MessageValue\textParamsOfType().
Wikimedia\Message\MessageValue::commaListParams | ( | $values | ) |
Chainable mutator which adds comma lists (ListType::COMMA).
The list parameters thus created are formatted as a comma-separated list, or some local equivalent.
(MessageParam|MessageValue|string|int|float)[] | ...$values Each value is an array of items suitable to pass as $params to ListParam::__construct() |
Definition at line 214 of file MessageValue.php.
References Wikimedia\Message\ListType\COMMA, and Wikimedia\Message\MessageValue\listParamsOfType().
Wikimedia\Message\MessageValue::dump | ( | ) |
Dump the object for testing/debugging.
Definition at line 265 of file MessageValue.php.
References Wikimedia\Message\MessageValue\params().
Wikimedia\Message\MessageValue::expiryParams | ( | $values | ) |
Chainable mutator which adds parameters which are an expiry timestamp (ParamType::EXPIRY).
string | ...$values Timestamp as accepted by the Wikimedia\Timestamp library, or "infinity" |
Definition at line 151 of file MessageValue.php.
References Wikimedia\Message\ParamType\EXPIRY, and Wikimedia\Message\MessageValue\textParamsOfType().
Wikimedia\Message\MessageValue::getKey | ( | ) |
Get the message key.
Definition at line 37 of file MessageValue.php.
References Wikimedia\Message\MessageValue\$key.
Referenced by MediaWiki\Message\TextFormatter\format().
Wikimedia\Message\MessageValue::getParams | ( | ) |
Get the parameter array.
Definition at line 46 of file MessageValue.php.
References Wikimedia\Message\MessageValue\$params.
Referenced by MediaWiki\Message\TextFormatter\format().
Wikimedia\Message\MessageValue::listParamsOfType | ( | $listType, | |
$values | |||
) |
Chainable mutator which adds list parameters with a common type.
string | $listType | One of the ListType constants |
(MessageParam|MessageValue|string|int|float)[] | ...$values Each value is an array of items suitable to pass as $params to ListParam::__construct() |
Definition at line 89 of file MessageValue.php.
References Wikimedia\Message\MessageValue\params().
Referenced by Wikimedia\Message\MessageValue\commaListParams(), Wikimedia\Message\MessageValue\pipeListParams(), Wikimedia\Message\MessageValue\semicolonListParams(), and Wikimedia\Message\MessageValue\textListParams().
Wikimedia\Message\MessageValue::longDurationParams | ( | $values | ) |
Chainable mutator which adds parameters which are a duration specified in seconds (ParamType::DURATION_LONG).
This is similar to shorDurationParams() except that the result will be more verbose.
int|float | ...$values |
Definition at line 126 of file MessageValue.php.
References Wikimedia\Message\ParamType\DURATION_LONG, and Wikimedia\Message\MessageValue\textParamsOfType().
Wikimedia\Message\MessageValue::numParams | ( | $values | ) |
Chainable mutator which adds numeric parameters (ParamType::NUM).
int|float | ...$values |
Definition at line 112 of file MessageValue.php.
References Wikimedia\Message\ParamType\NUM, and Wikimedia\Message\MessageValue\textParamsOfType().
Wikimedia\Message\MessageValue::params | ( | $values | ) |
Chainable mutator which adds text parameters and MessageParam parameters.
MessageParam|MessageValue|string|int|float | ...$values |
Definition at line 56 of file MessageValue.php.
References Wikimedia\Message\MessageValue\params(), and Wikimedia\Message\ParamType\TEXT.
Referenced by Wikimedia\Message\MessageValue\__construct(), Wikimedia\Message\MessageValue\dump(), Wikimedia\Message\MessageValue\listParamsOfType(), Wikimedia\Message\MessageValue\params(), and Wikimedia\Message\MessageValue\textParamsOfType().
Wikimedia\Message\MessageValue::pipeListParams | ( | $values | ) |
Chainable mutator which adds pipe lists (ListType::PIPE).
The list parameters thus created are formatted as a pipe ("|") -separated list, or some local equivalent.
(MessageParam|MessageValue|string|int|float)[] | ...$values Each value is an array of items suitable to pass as $params to ListParam::__construct() |
Definition at line 242 of file MessageValue.php.
References Wikimedia\Message\MessageValue\listParamsOfType(), and Wikimedia\Message\ListType\PIPE.
Wikimedia\Message\MessageValue::plaintextParams | ( | $values | ) |
Chainable mutator which adds plaintext parameters (ParamType::PLAINTEXT).
Plaintext parameters are substituted after formatter processing. The value will be escaped by the formatter as appropriate for the target output format so as to be represented as plain text rather than as any sort of markup.
string | ...$values |
Definition at line 200 of file MessageValue.php.
References Wikimedia\Message\ParamType\PLAINTEXT, and Wikimedia\Message\MessageValue\textParamsOfType().
Wikimedia\Message\MessageValue::rawParams | ( | $values | ) |
Chainable mutator which adds "raw" parameters (ParamType::RAW).
Raw parameters are substituted after formatter processing. The caller is responsible for ensuring that the value will be safe for the intended output format, and documenting what that intended output format is.
string | ...$values |
Definition at line 186 of file MessageValue.php.
References Wikimedia\Message\ParamType\RAW, and Wikimedia\Message\MessageValue\textParamsOfType().
Wikimedia\Message\MessageValue::semicolonListParams | ( | $values | ) |
Chainable mutator which adds semicolon lists (ListType::SEMICOLON).
The list parameters thus created are formatted as a semicolon-separated list, or some local equivalent.
(MessageParam|MessageValue|string|int|float)[] | ...$values Each value is an array of items suitable to pass as $params to ListParam::__construct() |
Definition at line 228 of file MessageValue.php.
References Wikimedia\Message\MessageValue\listParamsOfType(), and Wikimedia\Message\ListType\SEMICOLON.
Wikimedia\Message\MessageValue::shortDurationParams | ( | $values | ) |
Chainable mutator which adds parameters which are a duration specified in seconds (ParamType::DURATION_SHORT).
This is similar to longDurationParams() except that the result will be more compact.
int|float | ...$values |
Definition at line 140 of file MessageValue.php.
References Wikimedia\Message\ParamType\DURATION_SHORT, and Wikimedia\Message\MessageValue\textParamsOfType().
Wikimedia\Message\MessageValue::sizeParams | ( | $values | ) |
Chainable mutator which adds parameters which are a number of bytes (ParamType::SIZE).
int | ...$values |
Definition at line 161 of file MessageValue.php.
References Wikimedia\Message\ParamType\SIZE, and Wikimedia\Message\MessageValue\textParamsOfType().
Wikimedia\Message\MessageValue::textListParams | ( | $values | ) |
Chainable mutator which adds natural-language lists (ListType::AND).
The list parameters thus created, when formatted, are joined as in natural language. In English, this means a comma-separated list, with the last two elements joined with "and".
(MessageParam|string)[] | ...$values |
Definition at line 256 of file MessageValue.php.
References Wikimedia\Message\ListType\AND, and Wikimedia\Message\MessageValue\listParamsOfType().
Wikimedia\Message\MessageValue::textParams | ( | $values | ) |
Chainable mutator which adds parameters of type text (ParamType::TEXT).
MessageValue|string|int|float | ...$values |
Definition at line 102 of file MessageValue.php.
References Wikimedia\Message\ParamType\TEXT, and Wikimedia\Message\MessageValue\textParamsOfType().
Wikimedia\Message\MessageValue::textParamsOfType | ( | $type, | |
$values | |||
) |
Chainable mutator which adds text parameters with a common type.
string | $type | One of the ParamType constants |
MessageValue|string|int|float | ...$values Scalar values |
Definition at line 74 of file MessageValue.php.
References $type, and Wikimedia\Message\MessageValue\params().
Referenced by Wikimedia\Message\MessageValue\bitrateParams(), Wikimedia\Message\MessageValue\expiryParams(), Wikimedia\Message\MessageValue\longDurationParams(), Wikimedia\Message\MessageValue\numParams(), Wikimedia\Message\MessageValue\plaintextParams(), Wikimedia\Message\MessageValue\rawParams(), Wikimedia\Message\MessageValue\shortDurationParams(), Wikimedia\Message\MessageValue\sizeParams(), and Wikimedia\Message\MessageValue\textParams().
|
private |
Definition at line 16 of file MessageValue.php.
Referenced by Wikimedia\Message\MessageValue\__construct(), and Wikimedia\Message\MessageValue\getKey().
|
private |
Definition at line 19 of file MessageValue.php.
Referenced by Wikimedia\Message\MessageValue\getParams().