summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'PluggableAuth/extension.json')
-rw-r--r--PluggableAuth/extension.json57
1 files changed, 57 insertions, 0 deletions
diff --git a/PluggableAuth/extension.json b/PluggableAuth/extension.json
new file mode 100644
index 00000000..39667cdd
--- /dev/null
+++ b/PluggableAuth/extension.json
@@ -0,0 +1,57 @@
+{
+ "name": "PluggableAuth",
+ "version": "5.4",
+ "author": [
+ "[https://www.mediawiki.org/wiki/User:Cindy.cicalese Cindy Cicalese]"
+ ],
+ "url": "https://www.mediawiki.org/wiki/Extension:PluggableAuth",
+ "descriptionmsg": "pluggableauth-desc",
+ "type": "other",
+ "SpecialPages": {
+ "PluggableAuthLogin": "PluggableAuthLogin"
+ },
+ "MessagesDirs": {
+ "PluggableAuth": [
+ "i18n"
+ ]
+ },
+ "ExtensionMessagesFiles": {
+ "PluggableAuthAlias": "includes/PluggableAuth.alias.php"
+ },
+ "AutoloadClasses": {
+ "PluggableAuth": "includes/PluggableAuth.php",
+ "PluggableAuthHooks": "includes/PluggableAuthHooks.php",
+ "PluggableAuthPrimaryAuthenticationProvider": "includes/PluggableAuthPrimaryAuthenticationProvider.php",
+ "PluggableAuthBeginAuthenticationRequest": "includes/PluggableAuthBeginAuthenticationRequest.php",
+ "PluggableAuthContinueAuthenticationRequest": "includes/PluggableAuthContinueAuthenticationRequest.php",
+ "PluggableAuthLogin": "includes/PluggableAuthLogin.php"
+ },
+ "callback": "PluggableAuthHooks::onRegistration",
+ "Hooks": {
+ "TitleReadWhitelist": "PluggableAuthHooks::onTitleReadWhitelist",
+ "UserLogoutComplete": "PluggableAuthHooks::deauthenticate",
+ "AuthChangeFormFields": "PluggableAuthHooks::onAuthChangeFormFields",
+ "PersonalUrls": "PluggableAuthHooks::modifyLoginURLs",
+ "BeforeInitialize": "PluggableAuthHooks::doBeforeInitialize"
+ },
+ "AuthManagerAutoConfig": {
+ "primaryauth": {
+ "PluggableAuthPrimaryAuthenticationProvider": {
+ "class": "PluggableAuthPrimaryAuthenticationProvider",
+ "sort": 0
+ }
+ }
+ },
+ "PluggableAuthLoginSpecialPages": [
+ "PluggableAuthLogin",
+ "Userlogin"
+ ],
+ "config": {
+ "PluggableAuth_EnableAutoLogin": false,
+ "PluggableAuth_EnableLocalLogin": false,
+ "PluggableAuth_EnableLocalProperties": false,
+ "PluggableAuth_ButtonLabel": null,
+ "PluggableAuth_ExtraLoginFields": []
+ },
+ "manifest_version": 1
+}