You are here

function hs_taxonomy_field_widget_settings_form in Hierarchical Select 7.3

Implements hook_field_widget_settings_form().

File

modules/hs_taxonomy.module, line 314
Implementation of the Hierarchical Select API for the Taxonomy module.

Code

function hs_taxonomy_field_widget_settings_form($field, $instance) {

  // This poorly integrates with the Field UI. Hence we alter the
  // field_ui_widget_type_form, to provide a more appropriate integration.
  // @see hs_taxonomy_form_field_ui_widget_type_form_alter.
  $form = array();
  return $form;
}