|
MediaWiki master
|
Value object representing a message for i18n. More...
Inherits Wikimedia\Message\MessageSpecifier, and JsonCodecable.
Inherited by Wikimedia\Message\DataMessageValue.

Public Member Functions | |
| __construct (string $key, array $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). | |
| dateParams (... $values) | |
| Chainable mutator which adds parameters which are a date timestamp (ParamType::DATE). | |
| dateTimeParams (... $values) | |
| Chainable mutator which adds parameters which are a date-time timestamp (ParamType::DATETIME). | |
| 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. | |
| isSameAs (MessageValue $mv) | |
| listParamsOfType (string|ListType $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 (string|ParamType $type,... $values) | |
| Chainable mutator which adds text parameters with a common type. | |
| timeParams (... $values) | |
| Chainable mutator which adds parameters which are a time timestamp (ParamType::TIME). | |
| toJsonArray () | |
| userGroupParams (... $values) | |
| Chainable mutator which adds parameters which are a user group (ParamType::GROUP). | |
Static Public Member Functions | |
| static | hint () |
| If you are serializing a MessageValue (or a DataMessageValue), use this JsonCodec hint to suppress unnecessary type information. | |
| static | jsonClassHintFor (string $keyName) |
| static | new (string $key, array $params=[]) |
Static constructor for easier chaining of ->params() methods. | |
| static | newFromJsonArray (array $json) |
| static | newFromSpecifier (MessageSpecifier $spec) |
| Convert from any MessageSpecifier to a MessageValue. | |
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 newable and (de)serializable.
Definition at line 21 of file MessageValue.php.
| Wikimedia\Message\MessageValue::__construct | ( | string | $key, |
| array | $params = [] ) |
| string | $key | |
| (MessageParam|MessageSpecifier|string|int|float)[] | $params Values that are not instances of MessageParam are wrapped using ParamType::TEXT. |
Definition at line 36 of file MessageValue.php.
References 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 258 of file MessageValue.php.
| 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|MessageSpecifier|string|int|float)[] | ...$values Each value is an array of items suitable to pass as $params to ListParam::__construct() |
Definition at line 300 of file MessageValue.php.
| Wikimedia\Message\MessageValue::dateParams | ( | $values | ) |
Chainable mutator which adds parameters which are a date timestamp (ParamType::DATE).
| string | ...$values Timestamp as accepted by the Wikimedia\Timestamp library. |
Definition at line 215 of file MessageValue.php.
| Wikimedia\Message\MessageValue::dateTimeParams | ( | $values | ) |
Chainable mutator which adds parameters which are a date-time timestamp (ParamType::DATETIME).
| string | ...$values Timestamp as accepted by the Wikimedia\Timestamp library. |
Definition at line 204 of file MessageValue.php.
| Wikimedia\Message\MessageValue::dump | ( | ) |
Dump the object for testing/debugging.
Reimplemented in Wikimedia\Message\DataMessageValue.
Definition at line 351 of file MessageValue.php.
| 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 193 of file MessageValue.php.
| Wikimedia\Message\MessageValue::getKey | ( | ) |
Get the message key.
Implements Wikimedia\Message\MessageSpecifier.
Definition at line 71 of file MessageValue.php.
Referenced by MediaWiki\Rest\LocalizedHttpException\__construct(), MediaWiki\Rest\ResponseFactory\getFormattedMessage(), and MediaWiki\Api\Validator\ApiParamValidatorCallbacks\recordCondition().
| Wikimedia\Message\MessageValue::getParams | ( | ) |
Get the parameter array.
Implements Wikimedia\Message\MessageSpecifier.
Definition at line 80 of file MessageValue.php.
Referenced by MediaWiki\Api\Validator\ApiParamValidatorCallbacks\recordCondition().
|
static |
If you are serializing a MessageValue (or a DataMessageValue), use this JsonCodec hint to suppress unnecessary type information.
Definition at line 416 of file MessageValue.php.
| Wikimedia\Message\MessageValue::isSameAs | ( | MessageValue | $mv | ) |
Reimplemented in Wikimedia\Message\DataMessageValue.
Definition at line 360 of file MessageValue.php.
|
static |
Reimplemented in Wikimedia\Message\DataMessageValue.
Definition at line 389 of file MessageValue.php.
| Wikimedia\Message\MessageValue::listParamsOfType | ( | string|ListType | $listType, |
| $values ) |
Chainable mutator which adds list parameters with a common type.
| string | ListType | $listType | One of the ListType constants |
| (MessageParam|MessageSpecifier|string|int|float)[] | ...$values Each value is an array of items suitable to pass as $params to ListParam::__construct() |
Definition at line 127 of file MessageValue.php.
References wfDeprecated().
| 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 168 of file MessageValue.php.
|
static |
Static constructor for easier chaining of ->params() methods.
| string | $key | |
| (MessageParam|MessageSpecifier|string|int|float)[] | $params |
Definition at line 48 of file MessageValue.php.
|
static |
Reimplemented in Wikimedia\Message\DataMessageValue.
Definition at line 401 of file MessageValue.php.
|
static |
Convert from any MessageSpecifier to a MessageValue.
When the given object is an instance of MessageValue, the same object is returned.
| MessageSpecifier | $spec |
Definition at line 61 of file MessageValue.php.
Referenced by Wikimedia\Message\ScalarParam\__construct().
| Wikimedia\Message\MessageValue::numParams | ( | $values | ) |
Chainable mutator which adds numeric parameters (ParamType::NUM).
| int|float | ...$values |
Definition at line 154 of file MessageValue.php.
| Wikimedia\Message\MessageValue::params | ( | $values | ) |
Chainable mutator which adds text parameters and MessageParam parameters.
| MessageParam|MessageSpecifier|string|int|float | ...$values |
Definition at line 90 of file MessageValue.php.
Referenced by Wikimedia\Message\MessageValue\__construct().
| 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|MessageSpecifier|string|int|float)[] | ...$values Each value is an array of items suitable to pass as $params to ListParam::__construct() |
Definition at line 328 of file MessageValue.php.
| 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 286 of file MessageValue.php.
| 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 272 of file MessageValue.php.
| 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|MessageSpecifier|string|int|float)[] | ...$values Each value is an array of items suitable to pass as $params to ListParam::__construct() |
Definition at line 314 of file MessageValue.php.
| 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 182 of file MessageValue.php.
| Wikimedia\Message\MessageValue::sizeParams | ( | $values | ) |
Chainable mutator which adds parameters which are a number of bytes (ParamType::SIZE).
| int | ...$values |
Definition at line 247 of file MessageValue.php.
| 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 342 of file MessageValue.php.
| Wikimedia\Message\MessageValue::textParams | ( | $values | ) |
Chainable mutator which adds parameters of type text (ParamType::TEXT).
| MessageSpecifier|string|int|float | ...$values |
Definition at line 144 of file MessageValue.php.
| Wikimedia\Message\MessageValue::textParamsOfType | ( | string|ParamType | $type, |
| $values ) |
Chainable mutator which adds text parameters with a common type.
| string | ParamType | $type | One of the ParamType constants |
| MessageSpecifier|string|int|float | ...$values Scalar values |
Definition at line 108 of file MessageValue.php.
References wfDeprecated().
| Wikimedia\Message\MessageValue::timeParams | ( | $values | ) |
Chainable mutator which adds parameters which are a time timestamp (ParamType::TIME).
| string | ...$values Timestamp as accepted by the Wikimedia\Timestamp library. |
Definition at line 226 of file MessageValue.php.
| Wikimedia\Message\MessageValue::toJsonArray | ( | ) |
Reimplemented in Wikimedia\Message\DataMessageValue.
Definition at line 369 of file MessageValue.php.
| Wikimedia\Message\MessageValue::userGroupParams | ( | $values | ) |
Chainable mutator which adds parameters which are a user group (ParamType::GROUP).
| string | ...$values User Groups |
Definition at line 237 of file MessageValue.php.