Difference between revisions of "OnFriendApprove"

(Created page with "===Description=== This event trigger after a the user has approved a friend request. @since 1.2 ===Params=== *'''approve''' - object consisting of the profile owner id and t...")
 
(Description)
 
Line 1: Line 1:
 
===Description===
 
===Description===
This event trigger after a the user has approved a friend request.
+
This event is triggered after a user has approved a friend request.
  
 
@since 1.2
 
@since 1.2

Latest revision as of 07:23, 9 March 2013

Description

This event is triggered after a user has approved a friend request.

@since 1.2

Params

  • approve - object consisting of the profile owner id and the id of the user he/she accepted to be friend with.
approve Object
(
    [profileOwnerId] => 64
    [friendId] => 63
)


Example

function onFriendApprove( $approve ) 
{
	echo $request->profileOwnerId;
        echo '<br />';
        echo $request->friendId;
 
        return true;
}
 
result:
64
63