• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/location/import/compiler/compiler.php
  • Класс: BitrixSaleLocationImportCompileris
  • Вызов: is::getStoredTemporalData
private function getStoredTemporalData($dataCode)
{
	$file = $_SERVER['DOCUMENT_ROOT'].$this->workDir.self::TMP_DATA_DIR.$dataCode;

	if(is_readable($file))
		return unserialize(file_get_contents($file));
	else
		return array();
}