MediaWiki REL1_31
ApiMessage Class Reference

Extension of Message implementing IApiMessage. More...

Inheritance diagram for ApiMessage:
Collaboration diagram for ApiMessage:

Public Member Functions

 __construct ( $msg, $code=null, array $data=null)
 
- Public Member Functions inherited from Message
 __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.
 
- Public Member Functions inherited from IApiMessage
 getApiCode ()
 Returns a machine-readable code for use by the API.
 
 getApiData ()
 Returns additional machine-readable data about the error condition.
 
 setApiCode ( $code, array $data=null)
 Sets the machine-readable code for use by the API.
 
 setApiData (array $data)
 Sets additional machine-readable data about the error condition.
 

Static Public Member Functions

static create ( $msg, $code=null, array $data=null)
 Create an IApiMessage for the message.
 
- Static Public Member Functions inherited from Message
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)
 

Additional Inherited Members

- Public Attributes inherited from Message
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 inherited from Message
 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='before', $format)
 Substitutes any parameters into the message text.
 
 transformText ( $string)
 Wrapper for what ever method we use to {{-transform wikitext.
 
- Protected Attributes inherited from Message
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 inherited from Message
static array $listTypeMap
 Mapping from Message::listParam() types to Language methods.
 

Detailed Description

Extension of Message implementing IApiMessage.

Since
1.25

Definition at line 205 of file ApiMessage.php.

Constructor & Destructor Documentation

◆ __construct()

ApiMessage::__construct (   $msg,
  $code = null,
array  $data = null 
)
Parameters
Message | string | array$msg
  • Message: is cloned
  • array: first element is $key, rest are $params to Message::__construct
  • string: passed to Message::__construct
string | null$code
array | null$data

Definition at line 253 of file ApiMessage.php.

References $code, Message\$key, $value, as, and IApiMessage\setApiCode().

Member Function Documentation

◆ create()


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