MediaWiki 1.39.10
|
Various tag hooks, registered in every Parser. More...
Static Public Member Functions | |
static | gallery (?string $content, array $attributes, Parser $parser) |
Core parser tag hook function for 'gallery'. | |
static | html (?string $content, array $attributes, Parser $parser) |
Core parser tag hook function for 'html', used only when $wgRawHtml is enabled. | |
static | indicator (?string $content, array $attributes, Parser $parser, PPFrame $frame) |
XML-style tag for page status indicators: icons (or short text snippets) usually displayed in the top-right corner of the page, outside of the main content. | |
static | langconvert (?string $content, array $attributes, Parser $parser, PPFrame $frame) |
Returns content converted into the requested language variant, using LanguageConverter. | |
static | nowiki (?string $content, array $attributes, Parser $parser) |
Core parser tag hook function for 'nowiki'. | |
static | pre (?string $content, array $attribs, Parser $parser) |
Core parser tag hook function for 'pre'. | |
static | register (Parser $parser, ServiceOptions $options) |
Public Attributes | |
const | REGISTER_OPTIONS |
Various tag hooks, registered in every Parser.
Definition at line 32 of file CoreTagHooks.php.
|
static |
Core parser tag hook function for 'gallery'.
Renders a thumbnail list of the given images, with optional captions. Full syntax documented on the wiki:
https://www.mediawiki.org/wiki/Help:Images#Gallery_syntax
?string | $content | |
array | $attributes | |
Parser | $parser |
Definition at line 176 of file CoreTagHooks.php.
|
static |
Core parser tag hook function for 'html', used only when $wgRawHtml is enabled.
This is potentially unsafe and should be used only in very careful circumstances, as the contents are emitted as raw HTML.
Uses undocumented extended tag hook return values, introduced in r61913.
?string | $content | |
array | $attributes | |
Parser | $parser |
MWException |
Definition at line 107 of file CoreTagHooks.php.
References $content, Parser\getOptions(), and wfMessage().
|
static |
XML-style tag for page status indicators: icons (or short text snippets) usually displayed in the top-right corner of the page, outside of the main content.
Definition at line 192 of file CoreTagHooks.php.
References wfMessage().
|
static |
Returns content converted into the requested language variant, using LanguageConverter.
Definition at line 218 of file CoreTagHooks.php.
References $content, $lang, and Parser\recursiveTagParse().
|
static |
Core parser tag hook function for 'nowiki'.
Text within this section gets interpreted as a string of text with HTML-compatible character references, and wiki markup within it will not be expanded.
Uses undocumented extended tag hook return values, introduced in r61913.
Uses custom html escaping which phan-taint-check won't recognize hence we suppress the error.
?string | $content | |
array | $attributes | |
Parser | $parser |
Definition at line 146 of file CoreTagHooks.php.
|
static |
Core parser tag hook function for 'pre'.
Text is treated roughly as 'nowiki' wrapped in an HTML 'pre' tag; valid HTML attributes are passed on.
?string | $content | |
array | $attribs | |
Parser | $parser |
Definition at line 74 of file CoreTagHooks.php.
|
static |
Parser | $parser | |
ServiceOptions | $options |
MWException |
Definition at line 50 of file CoreTagHooks.php.
References Parser\setHook().
Referenced by Parser\__construct().
const CoreTagHooks::REGISTER_OPTIONS |
Definition at line 37 of file CoreTagHooks.php.
Referenced by Parser\__construct().