| Versions | |
|---|---|
| 7 | _form_options_flatten($array) |
Helper function for form_options_flatten().
Iterates over arrays which may share common values and produces a flat array that has removed duplicate keys. Also handles cases where objects are passed as array values.
drupal/
<?php
function _form_options_flatten($array) {
$return = &drupal_static(__FUNCTION__);
foreach ($array as $key => $value) {
if (is_object($value)) {
_form_options_flatten($value->option);
}
elseif (is_array($value)) {
_form_options_flatten($value);
}
else {
$return[$key] = 1;
}
}
return $return;
}
?>