You are here

function fraction_field_widget_error in Fraction 7

Implements hook_field_widget_error().

File

./fraction.field.inc, line 301
Fraction Field API functions

Code

function fraction_field_widget_error($element, $error, $form, &$form_state) {
  switch ($error['error']) {
    case 'fraction':
      form_error($element, $error['message']);
      break;
  }
}