• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/exchange/integration/admin/linkbase.php
  • Класс: BitrixSaleExchangeIntegrationAdminLinkBase
  • Вызов: LinkBase::setPageByType
public function setPageByType($type)
{
	$registry = Registry::getRegistry()[$this->getType()];
	$page = isset($registry[$type]) ? $registry[$type]:null;

	if(is_null($page))
	{
		throw new ArgumentException("Unsupported link type: {$type}");
	}

	$this->setPage($page);
	return $this;
}