function linkimagefield_field_info in Link Image Field 5
Same name and namespace in other branches
- 7 linkimagefield.module \linkimagefield_field_info()
Implementation of hook_field_info().
File
- ./
linkimagefield.module, line 62 - Defines an link image field type. linkimagefield uses content.module to store the fid, and the drupal files table to store the actual file data.
Code
function linkimagefield_field_info() {
return array(
'linkimage' => array(
'label' => 'Link Image',
),
);
}