You are here

function cf_error_invalid_callable 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_callable()

Reports if an argument is not a callable function.

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 471

Code

function cf_error_invalid_callable($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, "Cannot be called as a function.", array(), $severity);
}