Home
last modified time | relevance | path

Searched refs:COMPRESS_AUTO (Results 1 – 4 of 4) sorted by relevance

/plugin/elwikiupgrade/
H A DVerboseTarLib.class.php14 const COMPRESS_AUTO = 0; define in VerboseTar
20 protected $comptype = self::COMPRESS_AUTO;
33 public function open($file, $comptype = self::COMPRESS_AUTO) {
35 if($comptype == self::COMPRESS_AUTO) $comptype = $this->filetype($file);
212 public function create($file = '', $comptype = self::COMPRESS_AUTO, $complevel = 9) {
214 if($comptype == self::COMPRESS_AUTO) $comptype = $this->filetype($file);
349 public function getArchive($comptype = self::COMPRESS_AUTO, $complevel = 9) {
352 if($comptype === self::COMPRESS_AUTO) $comptype = $this->comptype;
371 public function save($file, $comptype = self::COMPRESS_AUTO, $complevel = 9) {
372 if($comptype === self::COMPRESS_AUTO) $comptype = $this->filetype($file);
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DArchive.php8 const COMPRESS_AUTO = -1; define in splitbrain\\PHPArchive\\Archive
23 abstract public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO);
H A DTar.php20 protected $comptype = Archive::COMPRESS_AUTO;
34 public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO)
58 if ($this->comptype == Tar::COMPRESS_AUTO) {
241 if ($this->comptype == Archive::COMPRESS_AUTO) {
399 if ($this->comptype === Archive::COMPRESS_AUTO) {
424 if ($this->comptype === Archive::COMPRESS_AUTO) {
687 * You don't need to call this yourself. It's used when you pass Archive::COMPRESS_AUTO somewhere
H A DZip.php40 public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO)