Manual:Hooks/AuthPluginSetup
From MediaWiki.org
| 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: |
function fnMyHook( $auth ) { ... }
|
*Attach hook: |
$wgHooks['AuthPluginSetup'][] = 'fnMyHook'; |
| Called from: | Setup.php |
*For more information about attaching hooks, see Manual:Hooks.
*For examples of extensions using this hook, see Category:AuthPluginSetup extensions.
[edit] Details
$auth: the $wgAuth object, probably a stub