OnFriendRequest

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

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

Description

This event trigger after a friend request had been made.

@since 1.2

Params

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


Example

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