• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Controller/EntityDetails.php
  • Класс: BitrixCrmMobileControllerEntityDetails
  • Вызов: EntityDetails::getAhaMoments
private function getAhaMoments(Item $entity): array
{
	if (!$this->needShowAhaMoments($entity))
	{
		return [];
	}

	$ahaMoments = [
		'goToChat' => (GoToChat::getInstance())->canShow(),
	];

	if ($entity->getEntityTypeId() === CCrmOwnerType::Deal)
	{
		$ahaMoments['yoochecks'] = (Yoochecks::getInstance())->canShow();
	}

	return $ahaMoments;
}