Searched refs:tmpName (Results 1 – 6 of 6) sorted by relevance
| /plugin/zip/pear/File/Archive/Reader/ |
| D | Bzip2.php | 42 var $tmpName = null; variable in File_Archive_Reader_Bzip2 52 if ($this->tmpName !== null) 53 unlink($this->tmpName); 56 $this->tmpName = null; 79 $this->tmpName = null; 85 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far'); 89 $dest->newFile($this->tmpName); 93 $this->bzfile = bzopen($this->tmpName, 'r'); 153 if ($this->tmpName === null) { 156 $this->bzfile = bzopen($this->tmpName, 'r');
|
| D | Gzip.php | 43 var $tmpName = null; variable in File_Archive_Reader_Gzip 53 if ($this->tmpName !== null) { 54 unlink($this->tmpName); 60 $this->tmpName = null; 83 $this->tmpName = null; 86 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far'); 90 $dest->newFile($this->tmpName); 94 $this->gzfile = gzopen($this->tmpName, 'r');
|
| /plugin/zip/pear/File/Archive/Writer/ |
| D | Gzip.php | 41 var $tmpName; variable in File_Archive_Writer_Gzip 99 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far'); 100 $this->gzfile = gzopen($this->tmpName, 'w'.$this->compressionLevel); 117 $this->innerWriter->writeFile($this->tmpName); 118 unlink($this->tmpName); 121 $this->tmpName, $this->filename, $this->stat, 'application/x-compressed'
|
| D | Bzip2.php | 41 var $tmpName; variable in File_Archive_Writer_Bzip2 97 $this->tmpName = tempnam(File_Archive::getOption('tmpDirectory'), 'far'); 98 $this->bzfile = bzopen($this->tmpName, 'w'.$this->compressionLevel); 115 $this->innerWriter->writeFile($this->tmpName); 116 unlink($this->tmpName); 119 $this->tmpName, $this->filename, $this->stat, 'application/x-compressed'
|
| /plugin/fontello/ |
| H A D | helper.php | 215 $tmpName = (string) ($upload['tmp_name'] ?? ''); 216 if ($tmpName === '' || !is_uploaded_file($tmpName) && !file_exists($tmpName)) { 220 $archive = $this->openArchive($tmpName); 427 protected function openArchive($tmpName) argument 431 if ($zip->open($tmpName) === true) { 447 'path' => $tmpName, 448 'map' => $this->buildArchiveMap($this->listArchiveEntries($tmpName)), 512 * @param string $tmpName 515 protected function listArchiveEntries($tmpName) argument 519 exec('zipinfo -1 ' . escapeshellarg($tmpName), $output, $exitCode);
|
| /plugin/pagesicon/ |
| H A D | action.php | 285 $tmpName = (string)($upload['tmp_name'] ?? ''); 286 if ($tmpName === '' || !is_uploaded_file($tmpName)) { 321 $moved = @move_uploaded_file($tmpName, $targetFile); 323 $moved = @copy($tmpName, $targetFile);
|