-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
144 lines (144 loc) · 4.27 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
135
136
137
138
139
140
141
142
143
144
{
"name": "PhabricatorLogin",
"version": "0.0.1",
"author": "yangboz",
"url": "https://www.mediawiki.org/wiki/Extension:GoogleLogin",
"descriptionmsg": "googlelogin-desc-authmanager",
"license-name": "MIT",
"type": "auth",
"GroupPermissions": {
"sysop": {
"managegooglelogin": true
}
},
"requires": {
"MediaWiki": ">= 1.27.0"
},
"AvailableRights": [
"managegooglelogin"
],
"ConfigRegistry": {
"googlelogin": "GlobalVarConfig::newInstance"
},
"SpecialPages": {
"GoogleLogin": "GoogleLogin\\Specials\\SpecialGoogleLogin",
"GoogleLoginReturn": "GoogleLogin\\Specials\\SpecialGoogleLoginReturn",
"ManageGoogleLogin": "GoogleLogin\\Specials\\SpecialManageGoogleLogin"
},
"APIModules": {
"googleplusprofileinfo": "ApiGoogleLoginInfo"
},
"MessagesDirs": {
"GoogleLogin": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"GoogleLoginAlias": "GoogleLogin.alias.php"
},
"AutoloadClasses": {
"GoogleLogin\\GoogleLogin": "includes/GoogleLogin.body.php",
"GoogleLogin\\HTMLGoogleLoginButtonField": "includes/htmlform/HTMLGoogleLoginButtonField.php",
"GoogleLogin\\Specials\\SpecialGoogleLogin": "includes/specials/SpecialGoogleLogin.php",
"GoogleLogin\\Specials\\SpecialGoogleLoginReturn": "includes/specials/SpecialGoogleLoginReturn.php",
"GoogleLogin\\Specials\\SpecialManageGoogleLogin": "includes/specials/SpecialManageGoogleLogin.php",
"GoogleLogin\\GoogleLoginHooks": "includes/GoogleLogin.hooks.php",
"GoogleLogin\\GoogleUser": "includes/GoogleUser.php",
"GoogleLogin\\Auth\\GooglePrimaryAuthenticationProvider": "includes/auth/GooglePrimaryAuthenticationProvider.php",
"GoogleLogin\\Auth\\GoogleServerAuthenticationRequest": "includes/auth/GoogleServerAuthenticationRequest.php",
"GoogleLogin\\Auth\\GoogleAuthenticationRequest": "includes/auth/GoogleAuthenticationRequest.php",
"GoogleLogin\\Auth\\GoogleRemoveAuthenticationRequest": "includes/auth/GoogleRemoveAuthenticationRequest.php",
"GoogleLogin\\Auth\\GoogleUserInfoAuthenticationRequest": "includes/auth/GoogleUserInfoAuthenticationRequest.php",
"ApiGoogleLoginInfo": "includes/api/ApiGoogleLoginInfo.php"
},
"AuthManagerAutoConfig": {
"primaryauth": {
"GoogleLogin\\Auth\\GooglePrimaryAuthenticationProvider": {
"class": "GoogleLogin\\Auth\\GooglePrimaryAuthenticationProvider",
"sort": 101
}
}
},
"ResourceModules": {
"ext.GoogleLogin.style": {
"styles": "style/ext.GoogleLogin.css",
"position": "top",
"targets": [
"desktop",
"mobile"
]
},
"ext.GoogleLogin.userlogincreate.style": {
"styles": "style/ext.GoogleLogin.userlogincreate.less",
"position": "top",
"targets": [
"desktop",
"mobile"
]
},
"ext.GoogleLogin.userlogincreate.ooui.style": {
"styles": "style/ext.GoogleLogin.userlogincreate.ooui.less",
"position": "top",
"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"
},
"Hooks": {
"AuthChangeFormFields": [
"GoogleLogin\\GoogleLoginHooks::onAuthChangeFormFields"
],
"UserLogoutComplete": [
"GoogleLogin\\GoogleLoginHooks::onUserLogoutComplete"
],
"LoadExtensionSchemaUpdates": [
"GoogleLogin\\GoogleLoginHooks::onLoadExtensionSchemaUpdates"
],
"MergeAccountFromTo": [
"GoogleLogin\\GoogleLoginHooks::onMergeAccountFromTo"
],
"UserMergeAccountDeleteTables": [
"GoogleLogin\\GoogleLoginHooks::onUserMergeAccountDeleteTables"
]
},
"config": {
"GLSecret": "",
"GLAppId": "",
"GLAllowedDomains": "",
"GLAllowedDomainsStrict": false,
"GLAPIKey": ""
},
"load_composer_autoloader": true,
"manifest_version": 1
}