summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticFormsSelect/extension.json
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
committerYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
commitfc7369835258467bf97eb64f184b93691f9a9fd5 (patch)
treedaabd60089d2dd76d9f5fb416b005fbe159c799d /www/wiki/extensions/SemanticFormsSelect/extension.json
first commit
Diffstat (limited to 'www/wiki/extensions/SemanticFormsSelect/extension.json')
-rw-r--r--www/wiki/extensions/SemanticFormsSelect/extension.json63
1 files changed, 63 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticFormsSelect/extension.json b/www/wiki/extensions/SemanticFormsSelect/extension.json
new file mode 100644
index 00000000..bacfb313
--- /dev/null
+++ b/www/wiki/extensions/SemanticFormsSelect/extension.json
@@ -0,0 +1,63 @@
+{
+ "name": "Semantic Forms Select",
+ "version": "3.0.0",
+ "author": [
+ "Jason Zhang",
+ "James Hong Kong",
+ "Toni Hermoso Pulido",
+ "Thomas Mulhall",
+ "Alexander Gesinn",
+ "[https://github.com/SemanticMediaWiki/SemanticFormsSelect/graphs/contributors ...]"
+ ],
+ "url": "https://www.mediawiki.org/wiki/Extension:SemanticFormsSelect",
+ "descriptionmsg": "sfs-desc",
+ "license-name": "GPL-2.0-or-later",
+ "type": "semantic",
+ "requires": {
+ "MediaWiki": ">= 1.27"
+ },
+ "AutoloadClasses": {
+ "SFS\\Hooks": "SemanticFormsSelect.hooks.php",
+ "SFS\\SemanticFormsSelectInput": "src/SemanticFormsSelectInput.php",
+ "SFS\\Output": "src/Output.php",
+ "SFS\\SelectField": "src/SelectField.php",
+ "SFS\\ApiSemanticFormsSelectRequestProcessor": "src/ApiSemanticFormsSelectRequestProcessor.php",
+ "SFS\\ApiSemanticFormsSelect": "src/ApiSemanticFormsSelect.php"
+ },
+ "config": {
+ "ScriptSelectCount": 0,
+ "SF_Select_debug": false
+ },
+ "callback": "SFS\\Hooks::onRegistration",
+ "MessagesDirs": {
+ "SemanticFormsSelect": [
+ "i18n"
+ ]
+ },
+ "ResourceModules": {
+ "ext.sf_select.scriptselect": {
+ "scripts": [
+ "res/scriptSelect.js"
+ ],
+ "styles": [
+ "res/select2.css"
+ ],
+ "dependencies": [
+ "ext.pageforms.main",
+ "ext.pageforms.select2"
+ ],
+ "position": "bottom"
+ }
+ },
+ "ResourceFileModulePaths": {
+ "localBasePath": "",
+ "remoteExtPath": "SemanticFormsSelect"
+ },
+ "Hooks": {
+ "ParserFirstCallInit": [
+ "SFS\\Hooks::onSemanticFormsSelectSetup"
+ ]
+ },
+ "load_composer_autoloader":true,
+ "manifest_version": 1
+}