MediaWiki
1.23.2
|
Various tag hooks, registered in Parser::firstCallInit() More...
Static Public Member Functions | |
static | gallery ( $content, $attributes, $parser) |
Core parser tag hook function for 'gallery'. More... | |
static | html ( $content, $attributes, $parser) |
Core parser tag hook function for 'html', used only when $wgRawHtml is enabled. More... | |
static | nowiki ( $content, $attributes, $parser) |
Core parser tag hook function for 'nowiki'. More... | |
static | pre ( $text, $attribs, $parser) |
Core parser tag hook function for 'pre'. More... | |
static | register ( $parser) |
Various tag hooks, registered in Parser::firstCallInit()
Definition at line 28 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 119 of file CoreTagHooks.php.
References $parser.
|
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.
$content | string |
$attributes | array |
$parser | Parser |
MWException |
Definition at line 78 of file CoreTagHooks.php.
|
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.
$content | string |
$attributes | array |
$parser | Parser |
Definition at line 99 of file CoreTagHooks.php.
References array(), and Xml\escapeTagsOnly().
|
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 | $text | |
array | $attribs | |
Parser | $parser |
Definition at line 53 of file CoreTagHooks.php.
References $attribs, StringUtils\delimiterReplace(), Xml\escapeTagsOnly(), Xml\openElement(), and Sanitizer\validateTagAttributes().
|
static |