You are here

function cck_table_widget_info in CCK Table Field 6

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

Implementation of hook_widget_info().

File

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

Code

function cck_table_widget_info() {
  return array(
    'cck_table' => array(
      'label' => t('Textarea'),
      'field types' => array(
        'table',
      ),
      'multiple values' => CONTENT_HANDLE_CORE,
      'callbacks' => array(
        'default value' => CONTENT_CALLBACK_DEFAULT,
      ),
    ),
  );
}