• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/body/zipdocument.php
  • Класс: BitrixDocumentGeneratorBodyZipDocument
  • Вызов: ZipDocument::addContentToZip
protected function addContentToZip($content, $localName)
{
	if($this->zip)
	{
		$this->zip->addFromString($localName, $content);
		$this->zip->close();
		$this->zip->open($this->file->getPhysicalPath());
	}
}