You are here

function relation_endpoint_field_widget_info in Relation 7

Implements hook_field_widget_info().

File

./relation_endpoint.module, line 177
Relation endpoints field.

Code

function relation_endpoint_field_widget_info() {
  return array(
    'relation_endpoint' => array(
      'label' => t('Endpoints table'),
      'field types' => array(
        'relation_endpoint',
      ),
      'behaviors' => array(
        'multiple values' => FIELD_BEHAVIOR_CUSTOM,
      ),
    ),
  );
}