You are here

function iframe_widget_info in Iframe 6

Implementation of hook_widget_info().

File

./iframe.module, line 251
Defines simple iframe field types. based on the cck-module "link" by quicksketch MODULE-Funtions

Code

function iframe_widget_info() {
  dmsg(3, 'func iframe_widget_info');
  return array(
    'iframe' => array(
      'label' => 'Text Fields for Title and IFrame-url',
      'field types' => array(
        'iframe',
      ),
      'multiple values' => CONTENT_HANDLE_CORE,
    ),
  );
}