You are here

function isbn_widget_settings in ISBN Field 6

Implementation of hook_widget_settings().

File

./isbn.module, line 386
Defines ISBN field types.

Code

function isbn_widget_settings($op, $widget) {
  switch ($op) {
    case 'form':
      return $form;
    case 'save':
      return array();
  }
}