mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/InputBox
synced 2024-11-15 11:13:27 +00:00
d5dbe717b6
Bug: T87931 Change-Id: Ib3cd4714c842ebf17da5b1f0932fd886dbc65c66
55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"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"
|
|
],
|
|
"targets": [
|
|
"mobile",
|
|
"desktop"
|
|
]
|
|
}
|
|
},
|
|
"ResourceFileModulePaths": {
|
|
"localBasePath": "resources",
|
|
"remoteExtPath": "InputBox/resources"
|
|
},
|
|
"Hooks": {
|
|
"ParserFirstCallInit": [
|
|
"InputBoxHooks::register"
|
|
],
|
|
"MediaWikiPerformAction": [
|
|
"InputBoxHooks::onMediaWikiPerformAction"
|
|
],
|
|
"SpecialPageBeforeExecute": [
|
|
"InputBoxHooks::onSpecialPageBeforeExecute"
|
|
]
|
|
}
|
|
}
|