function cck_list_field_info in CCK List 6
Same name and namespace in other branches
- 8 cck_list.module \cck_list_field_info()
- 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'),
),
);
}