You are here

public function cf_error_code::get_error_function in Common Functionality 7.2

Get the function name for the error.

Return value

string The function name of the last entry in the backtrace log.

File

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

Class

cf_error_code

Code

public function get_error_function() {
  $error = $this
    ->p_get_error();
  return $error['function'];
}