• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/component/entitydetails/timelinemenubar/item/sharing.php
  • Класс: Bitrix\Crm\Component\EntityDetails\TimelineMenuBar\Item\Sharing
  • Вызов: Sharing::getSelectedChannelId
protected function getSelectedChannelId(): ?string
{
	$result = null;

	if ($this->getEntityId() > 0 && $this->getEntityTypeId() > 0)
	{
		$entity = new Crm\ItemIdentifier($this->getEntityTypeId(), $this->getEntityId());
		$result = Crm\Integration\Calendar\Notification\Manager::getOptimalChannelId($entity);
	}

	return $result;
}