You are here

function field_collection_table_field_widget_form in Field Collection Table 7

Implements hook_field_widget_form().

File

./field_collection_table.module, line 544
Module implementing a field-collection table formatter.

Code

function field_collection_table_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) {

  // Changing this variable so we build the form from field_collection_embed.
  $instance['widget']['type'] = 'field_collection_embed';
  $element = field_collection_field_widget_form($form, $form_state, $field, $instance, $langcode, $items, $delta, $element);
  return $element;
}