function iframe_field_info in Iframe 6
Same name and namespace in other branches
- 7 iframe.module \iframe_field_info()
Implementation of hook_field_info().
File
- ./iframe.module, line 37 
- Defines simple iframe field types. based on the cck-module "link" by quicksketch MODULE-Funtions
Code
function iframe_field_info() {
  dmsg(3, 'func iframe_field_info');
  return array(
    'iframe' => array(
      'label' => t('IFrame'),
      'description' => t('Store a title, src, and attributes in the database to assemble an iframe.'),
    ),
  );
}