• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/log_follow.php
  • Класс: CSocNetLogFollow
  • Вызов: CSocNetLogFollow::OnBeforeConfirmNotify
static function OnBeforeConfirmNotify($module, $tag, $value, $arParams)
{
	global $USER;

	if ($module == "socialnetwork")
	{
		$arTag = explode("|", $tag);
		if (
			count($arTag) == 3
			&& $arTag[1] == 'UNFOLLOW'
		)
		{
			if ($value == 'Y')
			{
				CSocNetLogFollow::Set($USER->GetID(), "**", "N");
			}
			return true;
		}
	}

	return null;
}