Beispiel #1
0
 /**
  * @param \Box\Spout\Writer\Common\Sheet $externalSheet The associated "external" sheet
  * @param string $worksheetFilesFolder Temporary folder where the files to create the XLSX will be stored
  * @throws \Box\Spout\Common\Exception\IOException If the sheet data file cannot be opened for writing
  */
 public function __construct($externalSheet, $worksheetFilesFolder)
 {
     $this->externalSheet = $externalSheet;
     /** @noinspection PhpUnnecessaryFullyQualifiedNameInspection */
     $this->stringsEscaper = \Box\Spout\Common\Escaper\ODS::getInstance();
     $this->worksheetFilePath = $worksheetFilesFolder . '/sheet' . $externalSheet->getIndex() . '.xml';
     $this->stringHelper = new StringHelper();
     $this->startSheet();
 }