mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ParserFunctions
synced 2024-11-15 11:59:54 +00:00
7a3619ea8d
Change-Id: I730624f455dcd8cf0375b9147efe4abee5b203bb
102 lines
4.3 KiB
PHP
102 lines
4.3 KiB
PHP
<?php
|
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
|
die( 'This file is a MediaWiki extension, it is not a valid entry point' );
|
|
}
|
|
|
|
/**
|
|
* CONFIGURATION
|
|
* These variables may be overridden in LocalSettings.php after you include the
|
|
* extension file.
|
|
*/
|
|
|
|
/**
|
|
* Defines the maximum length of a string that string functions are allowed to operate on
|
|
* Prevention against denial of service by string function abuses.
|
|
*/
|
|
$wgPFStringLengthLimit = 1000;
|
|
|
|
/**
|
|
* Enable string functions.
|
|
*
|
|
* Set this to true if you want your users to be able to implement their own
|
|
* parsers in the ugliest, most inefficient programming language known to man:
|
|
* MediaWiki wikitext with ParserFunctions.
|
|
*
|
|
* WARNING: enabling this may have an adverse impact on the sanity of your users.
|
|
* An alternative, saner solution for embedding complex text processing in
|
|
* MediaWiki templates can be found at: http://www.mediawiki.org/wiki/Extension:Lua
|
|
*/
|
|
$wgPFEnableStringFunctions = false;
|
|
|
|
/**
|
|
* The language for 'en' is actually 'en-us', which insists on using non-canonical translations
|
|
* of the SI base units ("meter" rather than "metre" and "liter" rather than "litre"). We
|
|
* can avoid contaminatng dialects by internally mapping languages by default; this is
|
|
* configurable so you can remove it if you like, or add other maps if that's useful.
|
|
* Essentially, if your wiki's $wgContLang appears as a key in this array, the value is
|
|
* what is used as the default language for {{#convert}} output.
|
|
*/
|
|
$wgPFUnitLanguageVariants = array(
|
|
'en' => 'en-gb'
|
|
);
|
|
|
|
/** REGISTRATION */
|
|
$wgExtensionCredits['parserhook'][] = array(
|
|
'path' => __FILE__,
|
|
'name' => 'ParserFunctions',
|
|
'version' => '1.4.1',
|
|
'url' => 'https://www.mediawiki.org/wiki/Extension:ParserFunctions',
|
|
'author' => array( 'Tim Starling', 'Robert Rohde', 'Ross McClure', 'Juraj Simlovic' ),
|
|
'descriptionmsg' => 'pfunc_desc',
|
|
);
|
|
|
|
$wgAutoloadClasses['ExtParserFunctions'] = dirname( __FILE__ ) . '/ParserFunctions_body.php';
|
|
$wgAutoloadClasses['ExprParser'] = dirname( __FILE__ ) . '/Expr.php';
|
|
$wgAutoloadClasses['ConvertParser'] = dirname( __FILE__ ) . '/Convert.php';
|
|
|
|
$wgExtensionMessagesFiles['ParserFunctions'] = dirname( __FILE__ ) . '/ParserFunctions.i18n.php';
|
|
$wgExtensionMessagesFiles['ParserFunctionsMagic'] = dirname( __FILE__ ) . '/ParserFunctions.i18n.magic.php';
|
|
|
|
$wgParserTestFiles[] = dirname( __FILE__ ) . "/funcsParserTests.txt";
|
|
$wgParserTestFiles[] = dirname( __FILE__ ) . "/stringFunctionTests.txt";
|
|
$wgParserTestFiles[] = dirname( __FILE__ ) . "/convertTests.txt";
|
|
|
|
$wgHooks['ParserFirstCallInit'][] = 'wfRegisterParserFunctions';
|
|
|
|
/**
|
|
* @param $parser Parser
|
|
* @return bool
|
|
*/
|
|
function wfRegisterParserFunctions( $parser ) {
|
|
global $wgPFEnableStringFunctions;
|
|
|
|
// These functions accept DOM-style arguments
|
|
$parser->setFunctionHook( 'if', 'ExtParserFunctions::ifObj', SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'ifeq', 'ExtParserFunctions::ifeqObj', SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'switch', 'ExtParserFunctions::switchObj', SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'ifexist', 'ExtParserFunctions::ifexistObj', SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'ifexpr', 'ExtParserFunctions::ifexprObj', SFH_OBJECT_ARGS );
|
|
$parser->setFunctionHook( 'iferror', 'ExtParserFunctions::iferrorObj', SFH_OBJECT_ARGS );
|
|
|
|
$parser->setFunctionHook( 'expr', 'ExtParserFunctions::expr' );
|
|
$parser->setFunctionHook( 'time', 'ExtParserFunctions::time' );
|
|
$parser->setFunctionHook( 'timel', 'ExtParserFunctions::localTime' );
|
|
$parser->setFunctionHook( 'rel2abs', 'ExtParserFunctions::rel2abs' );
|
|
$parser->setFunctionHook( 'titleparts', 'ExtParserFunctions::titleparts' );
|
|
|
|
// String Functions
|
|
if ( $wgPFEnableStringFunctions ) {
|
|
$parser->setFunctionHook( 'len', 'ExtParserFunctions::runLen' );
|
|
$parser->setFunctionHook( 'pos', 'ExtParserFunctions::runPos' );
|
|
$parser->setFunctionHook( 'rpos', 'ExtParserFunctions::runRPos' );
|
|
$parser->setFunctionHook( 'sub', 'ExtParserFunctions::runSub' );
|
|
$parser->setFunctionHook( 'count', 'ExtParserFunctions::runCount' );
|
|
$parser->setFunctionHook( 'replace', 'ExtParserFunctions::runReplace' );
|
|
$parser->setFunctionHook( 'explode', 'ExtParserFunctions::runExplode' );
|
|
$parser->setFunctionHook( 'urldecode', 'ExtParserFunctions::runUrlDecode' );
|
|
}
|
|
|
|
return true;
|
|
}
|