You are here

function cf_error_invalid_integer in Common Functionality 7

Same name and namespace in other branches
  1. 7.2 modules/cf_1x_compatibility/cf_1x_compatibility.module \cf_error_invalid_integer()

Reports that a given argument is not an integer or a long.

Why: See reason from cf_error_invalid_variable() function.

Parameters

array $function_history: An array of function names, ie: array('0' => 'my_function_name').

string $argument_name: The variable name of the argument in question.

int $severity: (optional) This is passed directly to watchdog and represents the severity of the report.

File

modules/cf_error/cf_error.module, line 495

Code

function cf_error_invalid_integer($function_history, $argument_name, $severity = WATCHDOG_ERROR) {
  cf_error_append_history($function_history, __FUNCTION__);
  if ($argument_name == '') {
    cf_error_empty_string($function_history, 'argument_name', $severity);
  }
  cf_error_invalid_variable($function_history, $argument_name, "Not a valid integer or long.", array(), $severity);
}