Manual:Hooks/AuthPluginSetup

From MediaWiki.org
Jump to: navigation, search
AuthPluginSetup
Available from version 1.9.1
Update or replace authentication plugin object ($wgAuth). Gives a chance for an extension to set it programattically to a variable class.

Define function:
public static function onAuthPluginSetup( $auth ) { ... }

Attach hook:
$wgHooks['AuthPluginSetup'][] = 'MyExtensionHooks::onAuthPluginSetup';
Called from: Setup.php

For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:AuthPluginSetup extensions.


Details [edit]

$auth: the $wgAuth object, probably a stub