You are here

function cck_table_field_info in CCK Table Field 6

Same name and namespace in other branches
  1. 8 cck_table.module \cck_table_field_info()
  2. 5 cck_table.module \cck_table_field_info()
  3. 7 cck_table.module \cck_table_field_info()

Implementation of hook_field_info().

File

./cck_table.module, line 40
Defines a field type that outputs data in a table.

Code

function cck_table_field_info() {
  return array(
    'table' => array(
      'label' => t('Table'),
      'description' => t('Defines a textarea field that outputs data in a table'),
    ),
  );
}