function field_group_form_process in Field Group 8.3
Process callback for field groups.
Parameters
array $element: Form that is being processed.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
array $form: The complete form structure.
Return value
array
1 call to field_group_form_process()
- field_group_form_pre_render in ./
field_group.module - Pre render callback for rendering groups.
File
- ./
field_group.module, line 423 - Allows administrators to attach field groups.
Code
function field_group_form_process(array &$element, FormStateInterface $form_state = NULL, array &$form = []) {
return FormatterHelper::formProcess($element, $form_state, $form);
}