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

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

	return $result;
}