[ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
1 local ParserFunctions = {} 2 local php 3 4 function ParserFunctions.expr( expression ) 5 return php.expr( expression ) 6 end 7 8 function ParserFunctions.setupInterface( options ) 9 -- Boilerplate 10 ParserFunctions.setupInterface = nil 11 php = mw_interface 12 mw_interface = nil 13 14 -- Register this library in the "mw" global 15 mw = mw or {} 16 mw.ext = mw.ext or {} 17 mw.ext.ParserFunctions = ParserFunctions 18 19 package.loaded['mw.ext.ParserFunctions'] = ParserFunctions 20 end 21 22 return ParserFunctions
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |