Manual:Hooks/AuthChangeFormFields/de
AuthChangeFormFields | |
---|---|
Erhältlich ab Version 1.27.0 Allows modification of AuthManager-based forms | |
Funktion definieren: | public static function onAuthChangeFormFields( $requests, $fieldInfo, &$formDescriptor, $action ) { ... }
|
Haken anbringen: | In extension.json:
{
"Hooks": {
"AuthChangeFormFields": "MediaWiki\\Extension\\MyExtension\\Hooks::onAuthChangeFormFields"
}
}
|
Angerufen von: | Datei(en): specialpage/AuthManagerSpecialPage.php |
Interface: | AuthChangeFormFieldsHook.php |
For more information about attaching hooks, see Handbuch:Hooks .
For examples of extensions using this hook, see Category:AuthChangeFormFields extensions/de.
Details
$requests
- array of AuthenticationRequests the fields are created from$fieldInfo
- field information array (union of allAuthenticationRequest::getFieldInfo()
responses).&$formDescriptor
- HTMLForm descriptor. The special keyweight
can be set to change the order of the fields.$action
- Einer derAuthManager::ACTION_*
-Konstanten.
$formDescriptor
will contain the definition of the HTMLForm (the descriptor array that will be passed to the HTMLForm constructor); the hook allows modifying it.
The form field names (array keys) will match the field names in the requests.
$fieldInfo
ist das Ergebnis von AuthenticationRequest::mergeFieldInfo( $requests )
.
Caveats:
- Changing the requests is not allowed.
- Adding fields which take data is not allowed (adding info fields is fine). Use an authentication provider's
getAuthenticationRequests()
method to add new fields. - Any validation, permission check or other business logic in the hook can be trivially circumvented by using the API. Business logic should be in the providers.
- Any vital information must be made available via the API as well. If it's for users (e.g. the text of a CAPTCHA) use a
null
field inAuthenticationRequest::getFieldInfo()
(which can be hidden/changed for the web UI from this hook if needed). If it's for machines (e.g. the public API key for the CAPTCHA) useAuthenticationRequest::getMetadata()
.
The hook is primarily meant to enhance fields defined by a provider in the same extension (e.g. change a textfield into a typeahead or other interactive widget), change the position of the widget and provide help links or other extra information. Changing form fields belonging to core or other extensions is allowed but should preferably be avoided as it makes the code more fragile.