function tablefield_item_property_info in TableField 7.2
Same name and namespace in other branches
- 7.3 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 209 - 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',
);
return $properties;
}