function tablefield_field_info in TableField 7.3
Same name and namespace in other branches
- 6 tablefield.module \tablefield_field_info()
- 7 tablefield.module \tablefield_field_info()
- 7.2 tablefield.module \tablefield_field_info()
Implements hook_field_info().
File
- ./
tablefield.module, line 197 - Provides a set of fields that can be used to store tabular data with a node.
Code
function tablefield_field_info() {
return array(
'tablefield' => array(
'label' => t('Table Field'),
'description' => t('Stores a table of text fields'),
'default_widget' => 'tablefield',
'default_formatter' => 'tablefield_default',
'property_type' => 'tablefield',
'property_callbacks' => array(
'tablefield_property_info_callback',
),
),
);
}