• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/functions.php
  • Класс: CSocNetTools
  • Вызов: CSocNetTools::IsMyUser
static function IsMyUser($entity_id)
{
	global $USER;

	$is_my = false;
	if (
		CSocNetUser::IsFriendsAllowed()
		&& CSocNetUserRelations::IsFriends($USER->getId(), $entity_id)
	)
		$is_my = true;

	return $is_my;
}