function properties_field_widget_info in Dynamic properties 7
Implements hook_field_widget_info().
File
- ./
properties.module, line 332 - This module provides a dynamic property field that can contain an unlimited number of attribute value pairs.
Code
function properties_field_widget_info() {
return array(
'properties_table' => array(
'label' => t('Properties table'),
'field types' => array(
'properties',
),
'settings' => array(),
'behaviors' => array(
'multiple values' => FIELD_BEHAVIOR_CUSTOM,
'default value' => FIELD_BEHAVIOR_NONE,
),
),
);
}