You are here

function civicrm_entity_profile_field_widget_info in CiviCRM Entity 7.2

Implements hook_field_widget_info().

File

modules/civicrm_entity_profile/civicrm_entity_profile.module, line 388

Code

function civicrm_entity_profile_field_widget_info() {
  return array(
    'civicrm_entity_profile_field_default_widget' => array(
      'label' => t('Default'),
      'field types' => array(
        'civicrm_entity_profile_field',
      ),
      'settings' => array(),
      'behaviors' => array(
        'multiple values' => FIELD_BEHAVIOR_DEFAULT,
        'default value' => FIELD_BEHAVIOR_DEFAULT,
      ),
    ),
  );
}