You are here

function cck_list_field_info in CCK List 6

Same name and namespace in other branches
  1. 8 cck_list.module \cck_list_field_info()
  2. 7 cck_list.module \cck_list_field_info()

Implementation of hook_field_info().

File

./cck_list.module, line 37
Defines a field type that outputs data in a list.

Code

function cck_list_field_info() {
  return array(
    'list' => array(
      'label' => t('List'),
      'description' => t('Defines a textarea field that outputs data in an list'),
    ),
  );
}