You are here

function imagefield_widget_settings in ImageField 6.3

Same name and namespace in other branches
  1. 5.2 imagefield.module \imagefield_widget_settings()
  2. 5 imagefield.module \imagefield_widget_settings()

Implementation of CCK's hook_widget_settings().

File

./imagefield.module, line 163

Code

function imagefield_widget_settings($op, $widget) {
  switch ($op) {
    case 'form':
      return imagefield_widget_settings_form($widget);
    case 'validate':
      return imagefield_widget_settings_validate($widget);
    case 'save':
      return imagefield_widget_settings_save($widget);
  }
}