You are here

function country_field_widget_info_alter in Country 8

Implements hook_field_widget_info_alter().

File

./country.module, line 60
Defines simple country field type.

Code

function country_field_widget_info_alter(array &$info) {

  // Allow boxes/radio buttons widget to be used for country field.
  $info['options_buttons']['field_types'][] = 'country';
}