You are here

function cck_table_widget_info in CCK Table Field 5

Same name and namespace in other branches
  1. 6 cck_table.module \cck_table_widget_info()

Implementation of hook_widget_info().

File

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

Code

function cck_table_widget_info() {
  return array(
    'table_textarea' => array(
      'label' => t('Textarea'),
      'field types' => array(
        'tablefield',
      ),
    ),
  );
}