function hook_entityconnect_child_form_submit_alter in Entity connect 8.2
Allow modules to alter the child form submit handler.
Parameters
array $data: The data to alter. $data = array( 'form' => &$form, 'form_state' => &$form_state, 'entity_type' => $entity_type, 'data' => &$cache_data, );.
1 invocation of hook_entityconnect_child_form_submit_alter()
- EntityconnectFormUtils::childFormSubmit in src/
EntityconnectFormUtils.php - Form API callback: Submit callback for child form.
File
- ./
entityconnect.api.php, line 90 - This file describes hooks provided by entityconnect.
Code
function hook_entityconnect_child_form_submit_alter(array &$data) {
}