-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
40 lines (35 loc) · 962 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
37
38
39
40
{
"name": "RecentChangesLogFilter",
"author": "Patrick Westerhoff",
"version": "1.3",
"url": "http://mediawiki.org/wiki/Extension:RecentChangesLogFilter",
"license-name": "MPL-2.0",
"description": "Filters log entries from Special:RecentChanges",
"descriptionmsg": "recentchangeslogfilter-desc",
"type": "other",
"requires": {
"MediaWiki": ">= 1.25.0"
},
"AutoloadClasses": {
"RecentChangesLogFilterHooks": "RecentChangesLogFilter.hooks.php"
},
"MessagesDirs": {
"RecentChangesLogFilter": [
"i18n"
]
},
"Hooks": {
"ChangesListSpecialPageFilters": "RecentChangesLogFilterHooks::onChangesListSpecialPageFilters",
"ChangesListSpecialPageQuery": "RecentChangesLogFilterHooks::onChangesListSpecialPageQuery",
"GetPreferences": "RecentChangesLogFilterHooks::onGetPreferences"
},
"DefaultUserOptions": {
"rchidelogs": 1
},
"config": {
"RecentChangesLogFilterTypes": [
"newusers"
]
},
"manifest_version": 1
}