-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
50 lines (50 loc) · 1.18 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "Blog Posts",
"version": "0.0.0",
"author": [
"Tal Koren (Interjet, Kol Zchut)"
],
"descriptionmsg": "An extension that fetches and displays posts from a remote WordPress API",
"url": "https://github.com/kolzchut/mediawiki-extensions-BlogPosts",
"license-name": "MIT",
"type": "other",
"AutoloadClasses": {
"BlogPosts": "BlogPosts.php",
"GetPostsAPI": "api/GetPostsAPI.php",
"BlogPostsHooks": "BlogPostsHooks.php"
},
"APIModules": {
"get-posts": "GetPostsAPI"
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "WikiRights/BlogPosts"
},
"ResourceModules": {
"ext.BlogPosts": {
"scripts": "modules/blog-posts.script.js",
"styles": "modules/blog-posts.style.less",
"templates": {
"blog-post.mustache": "templates/blog-post.mustache"
},
"dependencies": "mediawiki.api"
}
},
"Hooks": {
"ResourceLoaderGetConfigVars": [ "BlogPostsHooks::onResourceLoaderGetConfigVars" ],
"ParserFirstCallInit": "BlogPostsHooks::onParserFirstCallInit"
},
"MessagesDirs": {
"BlogPosts": [
"i18n"
]
},
"config": {
"BlogPostsConfig": {
"blogURL": null,
"postsPerPage": 4,
"initialPage": 1
}
},
"manifest_version": 1
}