Lines Matching refs:archive
110 $archive = $this->downloadArchive($url);
112 $archive,
146 * @param string $archive the path to the archive
150 public function installFromArchive($archive, $base = null) argument
152 if ($base === null) $base = $this->fileToBase($archive);
154 $this->extractArchive($archive, $target);
500 protected function extractArchive($archive, $target) argument
502 $fh = fopen($archive, 'rb');
503 if (!$fh) throw new Exception('error_archive_read', [$archive]);
513 $archiver->open($archive);
516 throw new Exception('error_archive_extract', [$archive, $e->getMessage()], $e);