• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Item/LogMessage/CalendarSharing/InvitationSent.php
  • Класс: Bitrix\Crm\Service\Timeline\Item\LogMessage\CalendarSharing\InvitationSent
  • Вызов: InvitationSent::getContactUrlFromHistoryModel
private function getContactUrlFromHistoryModel(): ?string
{
	$contactId = $this->getHistoryItemModel()->get('CONTACT_ID');
	$contactTypeId = $this->getHistoryItemModel()->get('CONTACT_TYPE_ID');
	if ($contactId && $contactTypeId)
	{
		return Container::getInstance()
			->getRouter()
			->getItemDetailUrl(
				$this->getHistoryItemModel()->get('CONTACT_TYPE_ID'),
				$this->getHistoryItemModel()->get('CONTACT_ID')
			)
		;
	}

	return null;
}