-
Notifications
You must be signed in to change notification settings - Fork 12
/
extension.json
36 lines (36 loc) · 1010 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
30
31
32
33
34
35
36
{
"name": "AutoCreatePage",
"version": "0.7-dev",
"author": ["[http://korrekt.org Markus Krötzsch]", "Daniel Herzig"],
"url": "https://www.mediawiki.org/wiki/Extension:AutoCreatePage",
"description": "Provides a parser function to create additional wiki pages with default content when saving a page.",
"license-name": "GPL-2.0+",
"requires": {
"MediaWiki": ">= 1.39"
},
"AutoloadNamespaces": {
"ACP\\": "src/"
},
"Hooks": {
"ParserFirstCallInit": "main",
"RevisionDataUpdates": "main",
"SpecialPageBeforeExecute": "main",
"SpecialPageAfterExecute": "main"
},
"HookHandlers": {
"main": {
"class": "ACP\\AutoCreatePage"
}
},
"config": {
"AutoCreatePageMaxRecursion": 1,
"AutoCreatePageIgnoreEmptyTitle": false,
"AutoCreatePageNamespaces": null,
"AutoCreatePageOnSpecialPages": [],
"_prefix": "eg"
},
"ExtensionMessagesFiles": {
"AutoCreatePageMagic": "AutoCreatePage.i18n.magic.php"
},
"manifest_version": 1
}