mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Cite
synced 2024-11-24 23:05:31 +00:00
c9310ff7b4
Change-Id: I97e9d973accd1d3467ed1f04af37e021e55783b3
50 lines
1.3 KiB
PHP
50 lines
1.3 KiB
PHP
<?php
|
|
|
|
class CiteParserTagHooks {
|
|
|
|
/**
|
|
* Enables the two <ref> and <references> tags.
|
|
*
|
|
* @param Parser $parser
|
|
*/
|
|
public static function initialize( Parser $parser ) {
|
|
$parser->setHook( 'ref', __CLASS__ . '::ref' );
|
|
$parser->setHook( 'references', __CLASS__ . '::references' );
|
|
}
|
|
|
|
/**
|
|
* Parser hook for the <ref> tag.
|
|
*
|
|
* @param string|null $content Raw wikitext content of the <ref> tag.
|
|
* @param string[] $attributes
|
|
* @param Parser $parser
|
|
* @param PPFrame $frame
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function ref( $content, array $attributes, Parser $parser, PPFrame $frame ) {
|
|
/** @var Cite $cite */
|
|
$cite = $parser->extCite;
|
|
// @phan-suppress-next-line SecurityCheck-XSS False positive
|
|
return $cite->ref( $content, $attributes, $parser, $frame );
|
|
}
|
|
|
|
/**
|
|
* Parser hook for the <references> tag.
|
|
*
|
|
* @param string|null $content Raw wikitext content of the <references> tag.
|
|
* @param string[] $attributes
|
|
* @param Parser $parser
|
|
* @param PPFrame $frame
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function references( $content, array $attributes, Parser $parser, PPFrame $frame ) {
|
|
/** @var Cite $cite */
|
|
$cite = $parser->extCite;
|
|
// @phan-suppress-next-line SecurityCheck-XSS False positive
|
|
return $cite->references( $content, $attributes, $parser, $frame );
|
|
}
|
|
|
|
}
|