mediawiki-extensions-Scribunto/engines/LuaCommon/HtmlLibrary.php
Brad Jorsch df38a296bf Allow for dynamically-loaded PHP libraries
Scribunto currently supports libraries with PHP callbacks that are
loaded on startup, and pure-Lua libraries that may be loaded from the
module with require().

This change allows for libraries with PHP callbacks to also be loaded
with require().

Change-Id: Ibdc1f4ef51b1c8644c3d4c98d57755b5c06447a5
2014-10-03 09:27:23 -04:00

8 lines
175 B
PHP

<?php
class Scribunto_LuaHtmlLibrary extends Scribunto_LuaLibraryBase {
function register() {
return $this->getEngine()->registerInterface( 'mw.html.lua', array() );
}
}