You are here

function field_image_style_field_widget_info_alter in Field Image Style 8

Implements hook_field_widget_info_alter().

File

./field_image_style.module, line 43
Contains field_image_style.module.

Code

function field_image_style_field_widget_info_alter(array &$info) {

  // Add the image_style field type to options_select & options_buttons widgets
  $info['options_select']['field_types'][] = 'image_style';
  $info['options_buttons']['field_types'][] = 'image_style';
}