You are here

function tablefield_validate_number in TableField 7.3

Form element validation handler for #type 'tablefield_number'.

Note that #required is validated by _form_validate() already.

1 string reference to 'tablefield_validate_number'
tablefield_field_widget_settings_form in ./tablefield.module
Implements hook_field_widget_settings_form().

File

./tablefield.module, line 389
Provides a set of fields that can be used to store tabular data with a node.

Code

function tablefield_validate_number($element, &$form_state) {
  $value = $element['#value'];
  if ($value === '') {
    return;
  }
  $name = empty($element['#title']) ? $element['#parents'][0] : $element['#title'];

  // Ensure the input is numeric.
  if (!is_numeric($value)) {
    form_error($element, t('%name must be a number.', array(
      '%name' => $name,
    )));
    return;
  }

  // Ensure that the input is greater than the #min property, if set.
  if (isset($element['#min']) && $value < $element['#min']) {
    form_error($element, t('%name must be higher or equal to %min.', array(
      '%name' => $name,
      '%min' => $element['#min'],
    )));
  }

  // Ensure that the input is less than the #max property, if set.
  if (isset($element['#max']) && $value > $element['#max']) {
    form_error($element, t('%name must be below or equal to %max.', array(
      '%name' => $name,
      '%max' => $element['#max'],
    )));
  }
  if (isset($element['#step']) && strtolower($element['#step']) != 'any') {

    // Check that the input is an allowed multiple of #step (offset by #min if
    // #min is set).
    $offset = isset($element['#min']) ? $element['#min'] : 0.0;
    if (!tablefield_valid_number_step($value, $element['#step'], $offset)) {
      form_error($element, t('%name is not a multiple of %step.', array(
        '%name' => $name,
        '%step' => $element['#step'],
      )));
    }
  }
}