API15

JError/handleMessage

From Joomla! Documentation

< API15:JError
Revision as of 17:18, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Message error handler Enqueues the error message into the system queue <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JError/hand...)
(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]

Message error handler Enqueues the error message into the system queue


[Edit Descripton]

Template:Description:JError/handleMessage

Syntax[edit]

& handleMessage(&$error, $options)
Parameter Name Default Value Description
$error Exception object to handle
$options $options Handler options

Returns[edit]

object The exception object

Defined in[edit]

libraries/joomla/error/error.php

Importing[edit]

jimport( 'joomla.error.error' );

Source Body[edit]

function & handleMessage(& $error, $options)
{
        global $mainframe;
        $type = ($error->get('level') == E_NOTICE) ? 'notice' : 'error';
        $mainframe->enqueueMessage($error->get('message'), $type);
        return $error;
}

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

Examples[edit]

<CodeExamplesForm />