• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/classes/general/iblockxmlimport.php
  • Класс: CIBlockXmlImport
  • Вызов: CIBlockXmlImport::getXmlFileProgressPercent
private function getXmlFileProgressPercent()
{
	if (!is_resource($this->fileHandler))
	{
		return 0;
	}
	if ($this->fileParameters['SIZE'] <= 0)
	{
		return 0;
	}

	return round($this->xmlImport->GetFilePosition()*100/$this->fileParameters['SIZE'], 2);
}