You are here

function field_collection_table_field_widget_info in Field Collection Table 7

Implements hook_field_widget_info().

File

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

Code

function field_collection_table_field_widget_info() {
  return array(
    'field_collection_table' => array(
      'label' => t('Table'),
      'field types' => array(
        'field_collection',
      ),
      'settings' => array(
        'nodragging' => FALSE,
        'hide_title' => FALSE,
      ),
      'behaviors' => array(
        'multiple values' => FIELD_BEHAVIOR_DEFAULT,
        'default value' => FIELD_BEHAVIOR_NONE,
      ),
    ),
  );
}