if ( OW::getEventManager()->call('plugin.friends') )
{
$users = OW::getEventManager()->call('plugin.friends.get_friend_list', array(
'userId' => $userId,
'count' => 100
));
}
Can anyone explain about how things works?
if ( OW::getEventManager()->call('plugin.friends') )
{
$users = OW::getEventManager()->call('plugin.friends.get_friend_list', array(
'userId' => $userId,
'count' => 100
));
}
Can anyone explain about how things works?