/var/www/vhosts/nabawater/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared
NameSizeModeActions
Escher/-0755rm
JAMA/-0755rm
OLE/-0755rm
Trend/-0755rm
CodePage.php53280644editdlrm
Date.php161350644editdlrm
Drawing.php75230644editdlrm
Escher.php11590644editdlrm
File.php41130644editdlrm
Font.php270830644editdlrm
OLE.php174760644editdlrm
OLERead.php104520644editdlrm
PasswordHasher.php11120644editdlrm
StringHelper.php235270644editdlrm
TimeZone.php22840644editdlrm
Xls.php117450644editdlrm
XMLWriter.php21620644editdlrm
Edit: /var/www/vhosts/nabawater/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/XMLWriter.php (2162B)
openMemory(); } else { // Create temporary filename if ($pTemporaryStorageFolder === null) { $pTemporaryStorageFolder = File::sysGetTempDir(); } $this->tempFileName = @tempnam($pTemporaryStorageFolder, 'xml'); // Open storage if ($this->openUri($this->tempFileName) === false) { // Fallback to memory... $this->openMemory(); } } // Set default values if (self::$debugEnabled) { $this->setIndent(true); } } /** * Destructor. */ public function __destruct() { // Unlink temporary files if ($this->tempFileName != '') { @unlink($this->tempFileName); } } /** * Get written data. * * @return string */ public function getData() { if ($this->tempFileName == '') { return $this->outputMemory(true); } $this->flush(); return file_get_contents($this->tempFileName); } /** * Wrapper method for writeRaw. * * @param string|string[] $text * * @return bool */ public function writeRawData($text) { if (is_array($text)) { $text = implode("\n", $text); } return $this->writeRaw(htmlspecialchars($text)); } }