function tablefield_item_property_info in TableField 7.3
Same name and namespace in other branches
- 7.2 tablefield.module \tablefield_item_property_info()
Define metadata about item properties. Search API indexing addition.
1 call to tablefield_item_property_info()
- tablefield_property_info_callback in ./
tablefield.module - Defines info for the properties of the tablefield field data structure.
File
- ./
tablefield.module, line 225 - Provides a set of fields that can be used to store tabular data with a node.
Code
function tablefield_item_property_info() {
$properties['table_value'] = array(
'type' => 'text',
'label' => t('The value of the table.'),
'computed' => TRUE,
'getter callback' => 'tablefield_get_table_value',
);
$properties['value'] = array(
'type' => 'text',
'label' => t('The value column of the table.'),
'computed' => TRUE,
'getter callback' => 'tablefield_value_array_get',
);
return $properties;
}