-
Notifications
You must be signed in to change notification settings - Fork 8
/
extension.json
134 lines (134 loc) · 3.68 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "GoogleLogin",
"version": "0.4.0-git",
"author": "Florian Schmidt",
"url": "https://www.mediawiki.org/wiki/Extension:GoogleLogin",
"descriptionmsg": "googlelogin-desc-authmanager",
"license-name": "MIT",
"type": "other",
"GroupPermissions": {
"sysop": {
"managegooglelogin": true
}
},
"requires": {
"MediaWiki": ">= 1.39.0"
},
"AvailableRights": [
"managegooglelogin",
"managegooglelogindomains"
],
"ConfigRegistry": {
"googlelogin": "GlobalVarConfig::newInstance"
},
"SpecialPages": {
"GoogleLoginReturn": "GoogleLogin\\Specials\\SpecialGoogleLoginReturn",
"ManageGoogleLogin": "GoogleLogin\\Specials\\SpecialManageGoogleLogin",
"GoogleLoginAllowedDomains": "GoogleLogin\\Specials\\SpecialGoogleLoginAllowedDomains"
},
"DefaultUserOptions": {
"echo-subscriptions-web-change-googlelogin": true,
"echo-subscriptions-email-change-googlelogin": true
},
"APIModules": {
"googleplusprofileinfo": "GoogleLogin\\Api\\ApiGoogleLoginInfo"
},
"MessagesDirs": {
"GoogleLogin": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"GoogleLoginAlias": "GoogleLogin.alias.php"
},
"AutoloadNamespaces": {
"GoogleLogin\\": "includes/"
},
"AuthManagerAutoConfig": {
"primaryauth": {
"GoogleLogin\\Auth\\GooglePrimaryAuthenticationProvider": {
"class": "GoogleLogin\\Auth\\GooglePrimaryAuthenticationProvider",
"sort": 0
}
}
},
"ResourceModules": {
"ext.GoogleLogin.style": {
"styles": "style/ext.GoogleLogin.css",
"targets": [
"desktop",
"mobile"
]
},
"ext.GoogleLogin.userlogincreate.style": {
"styles": "style/ext.GoogleLogin.userlogincreate.less",
"targets": [
"desktop",
"mobile"
]
},
"ext.GoogleLogin.userlogincreate.ooui.style": {
"styles": "style/ext.GoogleLogin.userlogincreate.ooui.less",
"targets": [
"desktop",
"mobile"
]
},
"ext.GoogleLogin.specialManage.scripts": {
"dependencies": [
"mediawiki.api",
"oojs-ui"
],
"scripts": [
"javascripts/specialpages/ext.GoogleLogin.specialManage.js"
],
"styles": [
"style/ext.GoogleLogin.specialManage.css"
],
"messages": [
"googlelogin-googleuser",
"googlelogin-manage-isplusser",
"googlelogin-manage-orgname",
"googlelogin-manage-orgtitle",
"googlelogin-manage-orgsince",
"googlelogin-manage-yes",
"googlelogin-manage-no",
"googlelogin-manage-errorloading",
"googlelogin-manage-dismiss",
"googlelogin-manage-openpluslink",
"googlelogin-manage-unknownerror",
"googlelogin-manage-plusinfo-title"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "GoogleLogin"
},
"callback": "GoogleLogin\\GoogleLoginHooks::onSetup",
"Hooks": {
"AuthChangeFormFields": "GoogleLogin\\GoogleLoginHooks::onAuthChangeFormFields",
"UserLogoutComplete": "GoogleLogin\\GoogleLoginHooks::onUserLogoutComplete",
"LoadExtensionSchemaUpdates": "GoogleLogin\\GoogleLoginHooks::onLoadExtensionSchemaUpdates",
"MergeAccountFromTo": "GoogleLogin\\GoogleLoginHooks::onMergeAccountFromTo",
"UserMergeAccountDeleteTables": "GoogleLogin\\GoogleLoginHooks::onUserMergeAccountDeleteTables",
"BeforeCreateEchoEvent": "GoogleLogin\\GoogleLoginHooks::onBeforeCreateEchoEvent",
"EchoGetBundleRules": "GoogleLogin\\GoogleLoginHooks::onEchoGetBundleRules",
"ApiMain::moduleManager": "GoogleLogin\\GoogleLoginHooks::onApiMainModuleManager"
},
"config": {
"GLSecret": "",
"GLAppId": "",
"GLAllowedDomains": "",
"GLAllowedDomainsStrict": false,
"GLAllowedDomainsDB": false,
"GLAPIKey": "",
"GLEnableEchoEvents": true,
"GLAuthoritativeMode": false
},
"ServiceWiringFiles": [
"includes/ServiceWiring.php"
],
"load_composer_autoloader": true,
"manifest_version": 1
}