You are here

function _galleria_validate_preload in Galleria 7

Validate a form element that should have an integer value or the special value 'all'.

1 string reference to '_galleria_validate_preload'
galleria_option_elements in includes/galleria.admin.inc
This function returns an array defining the form elements used to edit the different options.

File

includes/galleria.admin.inc, line 762
Administrative page callbacks for the galleria module.

Code

function _galleria_validate_preload($element, &$form_state) {
  $value = $element['#value'];
  if ($value !== '' && $value !== 'all' && (!is_numeric($value) || intval($value) != $value || $value < 0)) {
    form_error($element, t('%name must be a positive integer or the special value \'all\'.', array(
      '%name' => $element['#option_name'],
    )));
  }
}