OnAfterProfileUpdate

Revision as of 18:41, 18 January 2013 by Sinisakrisan (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

This event will be triggered when the profile is being updated; successfully or not.

Params

An array with two items; user id and true (success)/false (fail) on profile update operation.

Array
(
    [0] => 1,
    [1] => true
)


Example

function onAfterProfileUpdate( $arrItems ) 
{
    if ($arrItems[1])
    {
        /* perform your update success handler here */
    }
    else
    {
        /* perform your update failed handler here */
    }
}