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

	$communications = $this->getCommunications();
	return array_filter($communications, static function ($communication) use ($contactId) {
		return $communication['entityId'] === $contactId;
	})[0];
}