diff options
Diffstat (limited to 'extensions/InputBox/extension.json')
-rw-r--r-- | extensions/InputBox/extension.json | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/extensions/InputBox/extension.json b/extensions/InputBox/extension.json new file mode 100644 index 00000000..6d786754 --- /dev/null +++ b/extensions/InputBox/extension.json @@ -0,0 +1,50 @@ +{ + "name": "InputBox", + "version": "0.3.0", + "author": [ + "Erik Moeller", + "Leonardo Pimenta", + "Rob Church", + "Trevor Parscal", + "DaSch" + ], + "url": "https://www.mediawiki.org/wiki/Extension:InputBox", + "description": "Allow inclusion of predefined HTML forms.", + "descriptionmsg": "inputbox-desc", + "type": "parserhook", + "MessagesDirs": { + "InputBox": [ + "i18n" + ] + }, + "AutoloadClasses": { + "InputBoxHooks": "InputBox.hooks.php", + "InputBox": "InputBox.classes.php" + }, + "ResourceModules": { + "ext.inputBox.styles": { + "styles": "ext.inputBox.styles.css" + }, + "ext.inputBox": { + "scripts": "ext.inputBox.js", + "dependencies": [ + "jquery.throttle-debounce" + ] + } + }, + "ResourceFileModulePaths": { + "localBasePath": "resources", + "remoteExtPath": "InputBox/resources" + }, + "Hooks": { + "ParserFirstCallInit": [ + "InputBoxHooks::register" + ], + "MediaWikiPerformAction": [ + "InputBoxHooks::onMediaWikiPerformAction" + ], + "SpecialPageBeforeExecute": [ + "InputBoxHooks::onSpecialPageBeforeExecute" + ] + } +} |