function isbn_field_info in ISBN Field 6
Same name and namespace in other branches
- 7 isbn.module \isbn_field_info()
Implementation of hook_field_info().
File
- ./
isbn.module, line 151 - Defines ISBN field types.
Code
function isbn_field_info() {
return array(
'isbn' => array(
'label' => t('ISBN Number'),
'description' => t('Stores an ISBN number in the database.'),
),
);
}