MediaWiki REL1_37
|
Value object representing a message for i18n with alternative machine-readable data. More...
Public Member Functions | |
__construct ( $key, $params=[], $code=null, array $data=null) | |
dump () | |
Dump the object for testing/debugging. | |
getCode () | |
Get the message code. | |
getData () | |
Get the message's structured data. | |
Public Member Functions inherited from Wikimedia\Message\MessageValue | |
__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). | |
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). | |
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. | |
timeParams (... $values) | |
Chainable mutator which adds parameters which are a time timestamp (ParamType::TIME). | |
Static Public Member Functions | |
static | new ( $key, $params=[], $code=null, array $data=null) |
Static constructor for easier chaining of ->params() methods. | |
Static Public Member Functions inherited from Wikimedia\Message\MessageValue | |
static | new ( $key, $params=[]) |
Static constructor for easier chaining of ->params() methods. | |
Private Attributes | |
string | $code |
array null | $data |
Value object representing a message for i18n with alternative machine-readable data.
This augments a MessageValue with an additional machine-readable code and structured data. The intended use is to facilitate error reporting in APIs.
For example, a MessageValue reporting an "integer out of range" error might use one of three message keys, depending on whether there is a minimum, a maximum, or both. But an API would likely want to use one code for all three cases, and would likely want the endpoints represented along the lines of ‘[ 'min’ => 1, 'max' => 10 ]rather than
[ 0 => new ScalarParam( ParamType::TEXT, 1 ), 1 => new ScalarParam( ParamType::TEXT, 10 ) ]`.
DataMessageValues are pure value objects and are safely newable.
@newable
Definition at line 23 of file DataMessageValue.php.
Wikimedia\Message\DataMessageValue::__construct | ( | $key, | |
$params = [] , |
|||
$code = null , |
|||
array | $data = null |
||
) |
string | $key | |
(MessageParam|MessageValue|string|int|float)[] | $params | |
string | null | $code | String representing the concept behind this message. |
array | null | $data | Structured data representing the concept behind this message. |
Definition at line 40 of file DataMessageValue.php.
References Wikimedia\Message\DataMessageValue\$code, Wikimedia\Message\DataMessageValue\$data, Wikimedia\Message\MessageValue\$key, and Wikimedia\Message\MessageValue\$params.
Wikimedia\Message\DataMessageValue::dump | ( | ) |
Dump the object for testing/debugging.
Reimplemented from Wikimedia\Message\MessageValue.
Definition at line 75 of file DataMessageValue.php.
References Wikimedia\Message\MessageValue\getKey(), and Wikimedia\Message\MessageValue\getParams().
Wikimedia\Message\DataMessageValue::getCode | ( | ) |
Get the message code.
Definition at line 63 of file DataMessageValue.php.
References Wikimedia\Message\DataMessageValue\$code.
Referenced by Wikimedia\ParamValidator\ValidationException\__construct(), and MediaWiki\Api\Validator\ApiParamValidatorCallbacks\recordCondition().
Wikimedia\Message\DataMessageValue::getData | ( | ) |
Get the message's structured data.
Definition at line 71 of file DataMessageValue.php.
References Wikimedia\Message\DataMessageValue\$data.
Referenced by Wikimedia\ParamValidator\ValidationException\__construct(), MediaWiki\Api\Validator\ApiParamValidatorCallbacks\recordCondition(), and Wikimedia\ParamValidator\TypeDef\EnumDef\validate().
|
static |
Static constructor for easier chaining of ->params()
methods.
string | $key | |
(MessageParam|MessageValue|string|int|float)[] | $params | |
string | null | $code | |
array | null | $data |
Definition at line 55 of file DataMessageValue.php.
References Wikimedia\Message\DataMessageValue\$code, Wikimedia\Message\DataMessageValue\$data, Wikimedia\Message\MessageValue\$key, and Wikimedia\Message\MessageValue\$params.
|
private |
Definition at line 25 of file DataMessageValue.php.
Referenced by Wikimedia\Message\DataMessageValue\__construct(), Wikimedia\Message\DataMessageValue\getCode(), and Wikimedia\Message\DataMessageValue\new().
|
private |
Definition at line 28 of file DataMessageValue.php.
Referenced by Wikimedia\Message\DataMessageValue\__construct(), Wikimedia\Message\DataMessageValue\getData(), and Wikimedia\Message\DataMessageValue\new().