• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/timeline/historydatamodel/maker.php
  • Класс: Bitrix\Crm\Timeline\HistoryDataModel\Maker
  • Вызов: Maker::getEntityImplementation
public function getEntityImplementation(int $entityTypeId): EntityImplementation
{
	$factory = Container::getInstance()->getFactory($entityTypeId);
	if ($factory && $this->isFactoryBasedApproachSupported($entityTypeId))
	{
		return new EntityImplementation\FactoryBased($factory);
	}

	return new EntityImplementation($entityTypeId);
}