• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/cashbox/cashboxorangedata.php
  • Класс: BitrixSaleCashboxCashboxOrangeData
  • Вызов: CashboxOrangeData::getCheckQueryHeaders
private function getCheckQueryHeaders($url)
{
	$urlObj = new MainWebUri($url);

	$header = "GET ".$urlObj->getPath()." HTTP/1.0rn";
	$header .= "Host: ".$urlObj->getHost()."rn";
	$header .= "Accept: application/jsonrn";
	$header .= "Content-Type: application/jsonrn";
	$header .= "rn";

	return $header;
}