API16:JError/getErrorHandling
From Joomla! Documentation
Description
Method to get the current error handler settings for a specified error level.
<! removed transcluded page call, red link never existed >
Syntax
static getErrorHandling($level)
| Parameter Name | Default Value | Description |
|---|---|---|
| $level | $level The error level to retrieve. This can be any of PHP's own error levels, e.g. E_ALL, E_NOTICE... |
Returns
array All error handling details
Defined in
libraries/joomla/error/error.php
Importing
jimport( 'joomla.error.error' );
Source Body
public static function getErrorHandling($level)
{
return JError::$handlers[$level];
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples