• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/body/zipdocument.php
  • Класс: BitrixDocumentGeneratorBodyZipDocument
  • Вызов: ZipDocument::open
protected function open()
{
	$openResult = false;

	if($this->file)
	{
		$this->zip = new ZipArchive();
		$openResult = $this->zip->open($this->file->getPhysicalPath());
	}

	return $openResult;
}