MediaWiki master
|
Magic words are localizable keywords used in wikitext. They are used for many small fragments of text, including:
{{urlencode:...}}
{{CURRENTDAY}}
__NOTOC__
Magic words have a synonym list, with the canonical English word always present, and a case sensitivity flag. The MagicWord class provides facilities for matching a magic word by converting it to a regex.
A magic word has a unique ID. Often, the ID is the canonical English synonym in lowercase.
To add a magic word in an extension, add a file to the ExtensionMessagesFiles attribute in extension.json, and in that file, set a variable called $magicWords. This array is associative with the language code in the first dimension key and an ID in the second key. The third level array is numerically indexed: the element with key 0 contains the case sensitivity flag, with 0 for case-insensitive and 1 for case-sensitive. The subsequent elements of the array are the synonyms in the relevant language.
To add a magic word in core, add it to $magicWords in MessagesEn.php, following the comment there.
For example, to add a new parser function in an extension: create a file called ExtensionName.i18n.magic.php with the following contents:
Then in extension.json:
It is important that the key "ExtensionNameMagic" is unique. It must not be used by another extension.
And in the class file: