API15:JObject/getError
From Joomla! Documentation
Description
Get the most recent error message
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
getError($i=null, $toString=true)
| Parameter Name | Default Value | Description |
|---|---|---|
| $i | null | $i Option error index |
| $toString | true | $toString Indicates if objects should return their error message |
Returns
string Error message public
Defined in
libraries/joomla/base/object.php
Importing
jimport( 'joomla.base.object' );
Source Body
function getError($i = null, $toString = true )
{
// Find the error
if ( $i === null) {
// Default, return the last message
$error = end($this->_errors);
}
else
if ( ! array_key_exists($i, $this->_errors) ) {
// If $i has been specified but does not exist, return false
return false;
}
else {
$error = $this->_errors[$i];
}
// Check if only the string is requested
if ( JError::isError($error) && $toString ) {
return $error->toString();
}
return $error;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples