• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar_livefeed.php
  • Класс: CCalendarLiveFeed
  • Вызов: CCalendarLiveFeed::OnForumCommentIMNotify
static function OnForumCommentIMNotify($entityType, $eventId, $comment): void
{
	if (
		$entityType !== "EV"
		|| !Loader::includeModule("im")
	)
	{
		return;
	}

	if (
		isset($comment["MESSAGE_ID"])
		&& (int)$comment["MESSAGE_ID"] > 0
		&& ($calendarEvent = CCalendarEvent::GetById($eventId))
	)
	{
		$comment["URL"] = CCalendar::GetPath("user", $calendarEvent["OWNER_ID"], true);
		$comment["URL"] .= ((mb_strpos($comment["URL"], "?") === false) ? "?" : "&") . "EVENT_ID=".$calendarEvent["ID"] . "&MID=" . (int)$comment["MESSAGE_ID"];
	}

	CCalendarNotify::NotifyComment($eventId, $comment);
}