• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/helpers/admin/blocks/factorymode.php
  • Класс: BitrixSaleHelpersAdminBlocksFactoryMode
  • Вызов: FactoryMode::create
public function create($type)
{
	if($type == ModeType::DEFAULT_TYPE)
	{
		return new Factory();
	}
	elseif ($type == ModeType::APP_LAYOUT_TYPE)
	{
		return new BitrixSaleExchangeIntegrationAdminBlocksFactory();
	}
	else
	{
		throw new BitrixMainNotSupportedException("Mode type: '".$type."' is not supported in current context");
	}
}