Line 13: | Line 13: | ||
|- | |- | ||
|function | |function | ||
− | |public static function onFFAfterFormHandling( $formFields, &$responseHandler ) { ... } | + | |<code>public static function onFFAfterFormHandling( $formFields, &$responseHandler ) { ... }</code> |
|- | |- | ||
|hook | |hook | ||
− | |$wgHooks['FFAfterFormHandling'][] = 'MyExtensionHooks::onFFAfterFormHandling'; | + | |<code>$wgHooks['FFAfterFormHandling'][] = 'MyExtensionHooks::onFFAfterFormHandling';</code> |
|- | |- | ||
|called from | |called from | ||
− | |FlexForm/src/Processors/Request/External.php. Method: runHook | + | |<code>FlexForm/src/Processors/Request/External.php. Method: runHook</code> |
|} | |} | ||
Revision as of 14:49, 24 May 2022
FFAfterFormHandling hook
When FlexForm is finished processing a submit form and just before it will set notification and return to the user, this Hook will run.
Allowing people to do additional actions with the information submitted by the Form.
function | public static function onFFAfterFormHandling( $formFields, &$responseHandler ) { ... }
|
hook | $wgHooks['FFAfterFormHandling'][] = 'MyExtensionHooks::onFFAfterFormHandling';
|
called from | FlexForm/src/Processors/Request/External.php. Method: runHook
|
responseHandler function :
on error :
$responseHandler->setReturnType( HandleResponse::TYPE_ERROR );
$responseHandler->setReturnStatus( "Your general error info" );
$responseHandler->setReturnData( "Details information" );
on success you only have to return true. If you want to add a message that FlexForm should who, then you can do the following :
$responseHandler->setReturnType( HandleResponse::TYPE_SUCCESS);
$responseHandler->setReturnData( "Success information" );
Always return true;