function cck_table_field_formatter_info in CCK Table Field 6
Same name and namespace in other branches
- 8 cck_table.module \cck_table_field_formatter_info()
- 5 cck_table.module \cck_table_field_formatter_info()
- 7 cck_table.module \cck_table_field_formatter_info()
Implementation of hook_field_formatter_info().
File
- ./
cck_table.module, line 108 - Defines a field type that outputs data in a table.
Code
function cck_table_field_formatter_info() {
return array(
'first_row_header' => array(
'label' => t('First Row will be the table header'),
'multiple values' => CONTENT_HANDLE_CORE,
'field types' => array(
'table',
),
),
'without_header' => array(
'label' => t('Without a table header'),
'multiple values' => CONTENT_HANDLE_CORE,
'field types' => array(
'table',
),
),
);
}