1.20.x form.inc form_process_container($element, &$form_state)

Processes a container element.

Parameters

$element: An associative array containing the properties and children of the container.

$form_state: The $form_state array for the form this element belongs to.

Return value

The processed element.:

Related topics

File

includes/form.inc, line 3605
Functions for form and batch generation and processing.

Code

function form_process_container($element, &$form_state) {
  // Generate the ID of the element if it's not explicitly given.
  if (!array_key_exists('#id', $element)) {
    $element['#id'] = backdrop_html_id(implode('-', $element['#parents']) . '-wrapper');
  }
  return $element;
}