function linkimagefield_widget_info in Link Image Field 5
Same name and namespace in other branches
- 6 linkimagefield.module \linkimagefield_widget_info()
Implementation of hook_widget_info().
File
- ./
linkimagefield.module, line 225 - 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_widget_info() {
return array(
'linkimage' => array(
'label' => 'Link Image',
'field types' => array(
'linkimage',
),
),
);
}