*/ class ParserTestParserHook { public static function setup( Parser $parser ) { $parser->setHook( 'tag', [ __CLASS__, 'dumpHook' ] ); $parser->setHook( 'tåg', [ __CLASS__, 'dumpHook' ] ); $parser->setHook( 'statictag', [ __CLASS__, 'staticTagHook' ] ); $parser->setHook( 'asidetag', [ __CLASS__, 'asideTagHook' ] ); $parser->setHook( 'pwraptest', [ __CLASS__, 'pWrapTestHook' ] ); $parser->setHook( 'spantag', [ __CLASS__, 'spanTagHook' ] ); return true; } public static function dumpHook( $in, $argv ) { // @phan-suppress-next-line SecurityCheck-XSS return "
\n" . var_export( $in, true ) . "\n" . var_export( $argv, true ) . "\n" . ""; } /** * @param string $in * @param array $argv * @param Parser $parser * @return string * @suppress SecurityCheck-XSS * @suppress UnusedSuppression */ public static function staticTagHook( $in, $argv, $parser ) { $KEY = 'mw:tests:static-tag-hook'; $po = $parser->getOutput(); if ( !count( $argv ) ) { $po->appendExtensionData( $KEY, $in ); return ''; } elseif ( count( $argv ) === 1 && isset( $argv['action'] ) && $argv['action'] === 'flush' && $in === null ) { // This pattern is deprecated, since the order of parsing will // in the future not be guaranteed. A better approach is to // collect/emit the buffered content in a post-processing pass // over the document after parsing of the article and all contained // fragments is completed and the fragments are merged. // T357838, T300979 $vals = $po->getExtensionData( $KEY ); if ( $vals === null ) { return ''; } return array_key_last( $vals ); } else { // wtf? return "\nCall this extension as