Difference between revisions of "OnUserDetailsUpdate"

(Created page with "===Description=== This event will be triggered when the user details is being updated successfully. ===Params=== An array with one item; the user class object. <syntaxhighli...")
 
(No difference)

Latest revision as of 18:44, 18 January 2013

Description

This event will be triggered when the user details is being updated successfully.

Params

An array with one item; the user class object.

Array
(
    [0] => $objUser
)


Example

function onUserDetailsUpdate( $arrItems ) 
{
    /* perform your user detail update success handler here */
}