API15

JError/raiseNotice

From Joomla! Documentation

< API15:JError
Revision as of 17:18, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Wrapper method for the raise() method with predefined error level of E_NOTICE and backtrace set to false. <span class="editsection" style="font-size:76%;"> <nowiki>[...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Wrapper method for the raise() method with predefined error level of E_NOTICE and backtrace set to false.

[Edit Descripton]

Template:Description:JError/raiseNotice

Syntax[edit]

& 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[edit]

object $error The configured object

Defined in[edit]

libraries/joomla/error/error.php

Importing[edit]

jimport( 'joomla.error.error' );

Source Body[edit]

function & raiseNotice($code, $msg, $info = null)
{
        $reference = & JError::raise(E_NOTICE, $code, $msg, $info);
        return $reference;
}

[Edit See Also] Template:SeeAlso:JError/raiseNotice

Examples[edit]

<CodeExamplesForm />