forked from sigbertklinke/Iframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
30 lines (26 loc) · 955 Bytes
/
extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name" : "Iframe",
"author" : "Sigbert Klinke",
"url" : "https://www.mediawiki.org/wiki/Extension:Iframe",
"description" : "This extension creates an iframe to embed an external webpage",
"version" : "0.07",
"license-name" : "GPL-2.0+",
"type" : "other",
"manifest_version": 1,
"AutoloadClasses" : { "Iframe": "Iframe_body.php",
"SpecialIframe": "SpecialIframe_body.php" },
"SpecialPages" : { "Iframe": "SpecialIframe" },
"MessagesDirs" : { "Iframe": "i18n" },
"Hooks" : { "ParserFirstCallInit": "Iframe::setHooks" },
"callback": "Iframe::onRegistration",
"ResourceModules" : {
"ext.Iframe" : {
"scripts":
[ "ext.Iframe.js" ]
}
},
"ResourceFileModulePaths": {
"localBasePath" : "modules",
"remoteExtPath" : "Iframe/modules"
}
}