'details', '#open' => TRUE]; // Add in the textfields. $columns = [ 'country' => t('Country'), 'locality' => t('Locality'), 'thoroughfare' => t('Thoroughfare'), 'postal_code' => t('Postal code'), ]; foreach ($columns as $key => $title) { $element[$key] = [ '#type' => 'textfield', '#title' => $title, '#default_value' => isset($items[$delta]->$key) ? $items[$delta]->$key : '', ]; } return $element; } }