MediaWiki master
Wikimedia\Message\DataMessageValue Class Reference

Value object representing a message for i18n with alternative machine-readable data. More...

Inherits Wikimedia\Message\MessageValue.

Collaboration diagram for Wikimedia\Message\DataMessageValue:

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).
 
 objectParams (... $values)
 Chainable mutator which adds object parameters.
 
 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).
 
 userGroupParams (... $values)
 Chainable mutator which adds parameters which are a user group (ParamType::GROUP).
 

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.
 

Detailed Description

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.

Stability: newable

Definition at line 23 of file DataMessageValue.php.

Constructor & Destructor Documentation

◆ __construct()

Wikimedia\Message\DataMessageValue::__construct ( $key,
$params = [],
$code = null,
array $data = null )
Stability: stable
to call
Parameters
string$key
(MessageParam|MessageValue|string|int|float)[]$params
string | null$codeString representing the concept behind this message.
array | null$dataStructured data representing the concept behind this message.

Definition at line 40 of file DataMessageValue.php.

References $params.

Member Function Documentation

◆ dump()

Wikimedia\Message\DataMessageValue::dump ( )

Dump the object for testing/debugging.

Returns
string

Reimplemented from Wikimedia\Message\MessageValue.

Definition at line 75 of file DataMessageValue.php.

References Wikimedia\Message\MessageValue\getKey(), and Wikimedia\Message\MessageValue\getParams().

◆ getCode()

Wikimedia\Message\DataMessageValue::getCode ( )

◆ getData()

Wikimedia\Message\DataMessageValue::getData ( )

◆ new()

static Wikimedia\Message\DataMessageValue::new ( $key,
$params = [],
$code = null,
array $data = null )
static

Static constructor for easier chaining of ->params() methods.

Parameters
string$key
(MessageParam|MessageValue|string|int|float)[]$params
string | null$code
array | null$data
Returns
DataMessageValue

Definition at line 55 of file DataMessageValue.php.

References $params.


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