API16:JError/raiseNotice
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Wrapper method for the raise() method with predefined error level of E_NOTICE and backtrace set to false.
Description:JError/raiseNotice
Syntax
static raiseNotice($code, $msg, $info=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $code | $code The application-internal error code for this error | |
| $msg | $msg The error message, which may also be shown the user if need be. | |
| $info | null | $info Optional: Additional error information (usually only developer-relevant information that the user should never see, like a database DSN). |
Returns
object $error The configured object
Defined in
libraries/joomla/error/error.php
Importing
jimport( 'joomla.error.error' );
Source Body
public static function raiseNotice($code, $msg, $info = null) { return JError::raise(E_NOTICE, $code, $msg, $info); }
[Edit See Also] SeeAlso:JError/raiseNotice
Examples
<CodeExamplesForm />
