• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sharing/notification/service.php
  • Класс: BitrixCalendarSharingNotificationService
  • Вызов: Service::getCalendarLink
protected function getCalendarLink(): ?string
{
	if ($this->eventLink->getParentLinkHash())
	{
		$sharingLinkFactory = new SharingLinkFactory();
		$userLink = $sharingLinkFactory->getLinkByHash($this->eventLink->getParentLinkHash());
		if ($userLink)
		{
			return $userLink->getUrl();
		}
	}
	return null;
}