Difference between revisions of "OnProfileStatusUpdate"

(Created page with "===Description=== This event will be triggered when the profile status is being updated; successfully or not. The plugin may make use of the old and new status content. ===Pa...")
 
(No difference)

Latest revision as of 18:47, 18 January 2013

Description

This event will be triggered when the profile status is being updated; successfully or not. The plugin may make use of the old and new status content.

Params

Trigger with 3 parameters - user id, old status content and new status content.

Example

function onProfileStatusUpdate( $userid, $oldstatus, $newstatus) 
{
    /* perform your status content manipulation handler here */
}