• Модуль: crmmobile
  • Путь к файлу: ~/bitrix/modules/crmmobile/lib/Controller/EntityDetails.php
  • Класс: BitrixCrmMobileControllerEntityDetails
  • Вызов: EntityDetails::getFactory
private function getFactory(): Factory
{
	if ($this->factory === null)
	{
		$entityTypeId = $this->getEntityTypeIdFromSourceList();
		if ($entityTypeId)
		{
			$this->factory = Container::getInstance()->getFactory($entityTypeId);
		}

		if (!$this->factory)
		{
			throw new DomainException('Could not load factory instance.');
		}
	}

	return $this->factory;
}