mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ParserFunctions
synced 2024-11-15 03:35:52 +00:00
f7bd89e435
Add mw.ext.ParserFunctions.expr, allowing #expr to be used without needing to use frame:callParserFunction. Change-Id: I64c78fafad7da503b141efb36da64c3e3d8501a5
23 lines
478 B
Lua
23 lines
478 B
Lua
local ParserFunctions = {}
|
|
local php
|
|
|
|
function ParserFunctions.expr( expression )
|
|
return php.expr( expression )
|
|
end
|
|
|
|
function ParserFunctions.setupInterface( options )
|
|
-- Boilerplate
|
|
ParserFunctions.setupInterface = nil
|
|
php = mw_interface
|
|
mw_interface = nil
|
|
|
|
-- Register this library in the "mw" global
|
|
mw = mw or {}
|
|
mw.ext = mw.ext or {}
|
|
mw.ext.ParserFunctions = ParserFunctions
|
|
|
|
package.loaded['mw.ext.ParserFunctions'] = ParserFunctions
|
|
end
|
|
|
|
return ParserFunctions
|