mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ParserFunctions
synced 2024-11-24 00:06:21 +00:00
105 lines
3.7 KiB
PHP
105 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\ParserFunctions;
|
|
|
|
use Config;
|
|
use LinkCache;
|
|
use MediaWiki\HookContainer\HookContainer;
|
|
use MediaWiki\Languages\LanguageConverterFactory;
|
|
use MediaWiki\Languages\LanguageFactory;
|
|
use MediaWiki\Languages\LanguageNameUtils;
|
|
use MediaWiki\SpecialPage\SpecialPageFactory;
|
|
use Parser;
|
|
use RepoGroup;
|
|
|
|
class Hooks implements
|
|
\MediaWiki\Hook\ParserFirstCallInitHook,
|
|
\MediaWiki\Hook\ParserTestGlobalsHook
|
|
{
|
|
|
|
/** @var Config */
|
|
private $config;
|
|
|
|
/** @var ParserFunctions */
|
|
private $parserFunctions;
|
|
|
|
/**
|
|
* @param Config $config
|
|
* @param HookContainer $hookContainer
|
|
* @param LanguageConverterFactory $languageConverterFactory
|
|
* @param LanguageFactory $languageFactory
|
|
* @param LanguageNameUtils $languageNameUtils
|
|
* @param LinkCache $linkCache
|
|
* @param RepoGroup $repoGroup
|
|
* @param SpecialPageFactory $specialPageFactory
|
|
*/
|
|
public function __construct(
|
|
Config $config,
|
|
HookContainer $hookContainer,
|
|
LanguageConverterFactory $languageConverterFactory,
|
|
LanguageFactory $languageFactory,
|
|
LanguageNameUtils $languageNameUtils,
|
|
LinkCache $linkCache,
|
|
RepoGroup $repoGroup,
|
|
SpecialPageFactory $specialPageFactory
|
|
) {
|
|
$this->config = $config;
|
|
$this->parserFunctions = new ParserFunctions(
|
|
$config,
|
|
$hookContainer,
|
|
$languageConverterFactory,
|
|
$languageFactory,
|
|
$languageNameUtils,
|
|
$linkCache,
|
|
$repoGroup,
|
|
$specialPageFactory
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Enables string functions during parser tests.
|
|
*
|
|
* @see https://www.mediawiki.org/wiki/Manual:Hooks/ParserTestGlobals
|
|
*
|
|
* @param array &$globals
|
|
*/
|
|
public function onParserTestGlobals( &$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 function onParserFirstCallInit( $parser ) {
|
|
// These functions accept DOM-style arguments
|
|
$parser->setFunctionHook( 'if', [ $this->parserFunctions, 'if' ], Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'ifeq', [ $this->parserFunctions, 'ifeq' ], Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'switch', [ $this->parserFunctions, 'switch' ], Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'ifexist', [ $this->parserFunctions, 'ifexist' ], Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'ifexpr', [ $this->parserFunctions, 'ifexpr' ], Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'iferror', [ $this->parserFunctions, 'iferror' ], Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'time', [ $this->parserFunctions, 'time' ], Parser::SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'timel', [ $this->parserFunctions, 'localTime' ], Parser::SFH_OBJECT_ARGS );
|
|
|
|
$parser->setFunctionHook( 'expr', [ $this->parserFunctions, 'expr' ] );
|
|
$parser->setFunctionHook( 'rel2abs', [ $this->parserFunctions, 'rel2abs' ] );
|
|
$parser->setFunctionHook( 'titleparts', [ $this->parserFunctions, 'titleparts' ] );
|
|
|
|
// String Functions: enable if configured
|
|
if ( $this->config->get( 'PFEnableStringFunctions' ) ) {
|
|
$parser->setFunctionHook( 'len', [ $this->parserFunctions, 'runLen' ] );
|
|
$parser->setFunctionHook( 'pos', [ $this->parserFunctions, 'runPos' ] );
|
|
$parser->setFunctionHook( 'rpos', [ $this->parserFunctions, 'runRPos' ] );
|
|
$parser->setFunctionHook( 'sub', [ $this->parserFunctions, 'runSub' ] );
|
|
$parser->setFunctionHook( 'count', [ $this->parserFunctions, 'runCount' ] );
|
|
$parser->setFunctionHook( 'replace', [ $this->parserFunctions, 'runReplace' ] );
|
|
$parser->setFunctionHook( 'explode', [ $this->parserFunctions, 'runExplode' ] );
|
|
$parser->setFunctionHook( 'urldecode', [ $this->parserFunctions, 'runUrlDecode' ] );
|
|
}
|
|
}
|
|
}
|