function cf_error_invalid_array in Common Functionality 7
Same name and namespace in other branches
- 7.2 modules/cf_1x_compatibility/cf_1x_compatibility.module \cf_error_invalid_array()
Reports that a given argument is supposed to be an array but is not.
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.
3 calls to cf_error_invalid_array()
- cf_error_print_message in modules/
cf_error/ cf_error.module - Prints error messages to the screen.
- cf_is_not_form_state in ./
cf.module - Checks if the argument is a valid drupal form state array.
- cf_user_get_users_by_rids in modules/
cf_user/ cf_user.module - Provide a simple way to load users that have any of the given role ids.
File
- modules/
cf_error/ cf_error.module, line 257
Code
function cf_error_invalid_array($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 array.", array(), $severity);
}