function form_options_flatten

Allows PHP array processing of multiple select options with the same value.

Used for form select elements which need to validate HTML option groups and multiple options which may return the same value. Associative PHP arrays cannot handle these structures, since they share a common key.

Parameters

$array: The form options array to process.

Return value

An array with all hierarchical elements flattened to a single array.

Related topics

2 calls to form_options_flatten()
InOperator::validate in drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/InOperator.php
Validates the handler against the complete View.
_form_validate in drupal/core/includes/form.inc
Performs validation on form elements.

File

drupal/core/includes/form.inc, line 2569
Functions for form and batch generation and processing.

Code

function form_options_flatten($array) {

  // Always reset static var when first entering the recursion.
  drupal_static_reset('_form_options_flatten');
  return _form_options_flatten($array);
}