• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/exchange/integration/admin/link.php
  • Класс: BitrixSaleExchangeIntegrationAdminLink
  • Вызов: Link::resolveModeType
protected function resolveModeType()
{
	$fields = new BitrixSaleInternalsFields(
		BitrixMainContext::getCurrent()->getRequest()->toArray());

	if($this->isRestAppLayoutMode($fields))
	{
		$type = ModeType::APP_LAYOUT_TYPE;
	}
	else
	{
		$type = ModeType::DEFAULT_TYPE;
	}

	return $type;
}