• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/calendar/notification/smsservice.php
  • Класс: Bitrix\Crm\Integration\Calendar\Notification\SmsService
  • Вызов: SmsService::getEntityChannel
protected function getEntityChannel(ItemIdentifier $entity): ?MessageSender\Channel
{
	$repo = MessageSender\Channel\ChannelRepository::create($entity);
	$channel = $repo->getById(SmsManager::getSenderCode(), $this->crmDealLink->getChannelId());
	if (is_null($channel))
	{
		return null;
	}

	return $channel;
}