You are here

public static function cf_error::invalid_object in Common Functionality 7.2

Reports that a given argument is supposed to be an object but is not.

@see: watchdog() @see: watchdog_severity_levels()

Parameters

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

int $severity: (optional) The severity of the message, as per RFC 3164. Possible values are WATCHDOG_ERROR, WATCHDOG_WARNING, etc.

Return value

cf_error_code A object containing the processed error, with specified backtrace.

8 calls to cf_error::invalid_object()
cf_dom::change_element in modules/cf_dom/classes/cf_dom.php
Changes the element from one type to another.
cf_dom::change_elements in modules/cf_dom/classes/cf_dom.php
Change all elements of a given element type to another type.
cf_dom::get_markup in modules/cf_dom/classes/cf_dom.php
Converts the body or head element into markup
cf_dom::get_tag_markup in modules/cf_dom/classes/cf_dom.php
Converts the selected tag into HTML markup.
cf_dom::remove_element in modules/cf_dom/classes/cf_dom.php
Removes the given element from its parent.

... See full list

File

modules/cf_error/classes/cf_error.php, line 262
Provides the derror exception class.

Class

cf_error

Code

public static function invalid_object($argument_name, $severity = WATCHDOG_ERROR) {
  $error = new cf_error_code();
  if (empty($argument_name)) {
    if (version_compare(PHP_VERSION, '5.4.0', '>=')) {
      $backtrace = debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT, self::p_backtrace_limit());
    }
    else {
      $backtrace = debug_backtrace();
    }
    $argument_name = self::p_report_invalid_argument_string('argument_name', $backtrace);
    unset($backtrace);
  }
  $error
    ->set_severity($severity);
  self::p_load_backtrace($error);
  self::p_invalid_object($error, $argument_name);
  return $error;
}