• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/import/import.php
  • Класс: BitrixSaleLocationImportis
  • Вызов: is::getLocationCodeToIdMap
protected function getLocationCodeToIdMap($codes)
{
	$i = -1;
	$buffer = array();
	$result = array();
	foreach($codes as $code)
	{
		$i++;

		if($i == self::MAX_CODE_FETCH_BLOCK_LEN)
		{
			$this->getLocationCodeToIdMapQuery($buffer, $result);

			$buffer = array();
			$i = -1;
		}

		$buffer[] = $code;
	}

	// last iteration
	$this->getLocationCodeToIdMapQuery($buffer, $result);

	return $result;
}