function text_field_info in Content Construction Kit (CCK) 5
Same name and namespace in other branches
- 6.3 modules/text/text.module \text_field_info()
- 6 examples/simple_field.php \text_field_info()
- 6 examples/example_field.php \text_field_info()
- 6 modules/text/text.module \text_field_info()
- 6.2 modules/text/text.module \text_field_info()
Implementation of hook_field_info().
File
- ./
text.module, line 11 - Defines simple text field types.
Code
function text_field_info() {
return array(
'text' => array(
'label' => t('Text'),
),
);
}