mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ParserFunctions
synced 2024-11-15 03:35:52 +00:00
8b50403fe8
They're a rudiment from the time when the extension had to be compatible with both SFH_OBJECT_ARGS supporting and not versions of MediaWiki. This is in the past, so unify them now by merging and or deleting the old versions. The resulting functions don't end with "Obj" anymore. One "common" function was left alone to be refactored at a later time, however I've renamed it and made private. Change-Id: Ice97e587bf7cc0469476c2e53268d2774ddfdd04
72 lines
2.5 KiB
PHP
72 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extensions\ParserFunctions;
|
|
|
|
use Parser;
|
|
|
|
class Hooks {
|
|
|
|
/**
|
|
* Enables string functions during parser tests.
|
|
*
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/ParserTestGlobals
|
|
*
|
|
* @param array &$globals
|
|
*/
|
|
public static function onParserTestGlobals( array &$globals ) {
|
|
$globals['wgPFEnableStringFunctions'] = true;
|
|
}
|
|
|
|
/**
|
|
* Registers our parser functions with a fresh parser.
|
|
*
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/ParserFirstCallInit
|
|
*
|
|
* @param Parser $parser
|
|
*/
|
|
public static function onParserFirstCallInit( Parser $parser ) {
|
|
global $wgPFEnableStringFunctions;
|
|
|
|
// These functions accept DOM-style arguments
|
|
$class = ParserFunctions::class;
|
|
$parser->setFunctionHook( 'if', "$class::if", Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'ifeq', "$class::ifeq", Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'switch', "$class::switch", Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'ifexist', "$class::ifexist", Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'ifexpr', "$class::ifexpr", Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'iferror', "$class::iferror", Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'time', "$class::time", Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'timel', "$class::localTime", Parser::SFH_OBJECT_ARGS );
|
|
|
|
$parser->setFunctionHook( 'expr', "$class::expr" );
|
|
$parser->setFunctionHook( 'rel2abs', "$class::rel2abs" );
|
|
$parser->setFunctionHook( 'titleparts', "$class::titleparts" );
|
|
|
|
// String Functions: enable if configured
|
|
if ( $wgPFEnableStringFunctions ) {
|
|
$parser->setFunctionHook( 'len', "$class::runLen" );
|
|
$parser->setFunctionHook( 'pos', "$class::runPos" );
|
|
$parser->setFunctionHook( 'rpos', "$class::runRPos" );
|
|
$parser->setFunctionHook( 'sub', "$class::runSub" );
|
|
$parser->setFunctionHook( 'count', "$class::runCount" );
|
|
$parser->setFunctionHook( 'replace', "$class::runReplace" );
|
|
$parser->setFunctionHook( 'explode', "$class::runExplode" );
|
|
$parser->setFunctionHook( 'urldecode', "$class::runUrlDecode" );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Registers ParserFunctions' lua function with Scribunto
|
|
*
|
|
* @see https://www.mediawiki.org/wiki/Extension:Scribunto/ScribuntoExternalLibraries
|
|
*
|
|
* @param string $engine
|
|
* @param string[] &$extraLibraries
|
|
*/
|
|
public static function onScribuntoExternalLibraries( $engine, array &$extraLibraries ) {
|
|
if ( $engine === 'lua' ) {
|
|
$extraLibraries['mw.ext.ParserFunctions'] = LuaLibrary::class;
|
|
}
|
|
}
|
|
}
|