コード例 #1
0
ファイル: ContainerProvider.php プロジェクト: hkulyk/distill
 /**
  * Constructor.
  */
 public function __construct(array $disabledMethods = [], array $disabledFormats = [])
 {
     $methodsClasses = [Method\Command\Ar::getClass(), Method\Command\Bzip2::getClass(), Method\Command\Cabextract::getClass(), Method\Command\Cpio::getClass(), Method\Command\GnuGzip::getClass(), Method\Command\GnuTar::getClass(), Method\Command\Unrar::getClass(), Method\Command\Unshar::getClass(), Method\Command\Unzip::getClass(), Method\Command\X7zip::getClass(), Method\Command\Xz::getClass(), Method\Command\Gnome\Gcab::getClass(), Method\Extension\Pear\ArchiveTar::getClass(), Method\Extension\Bzip2::getClass(), Method\Extension\Phar::getClass(), Method\Extension\PharData::getClass(), Method\Extension\Rar::getClass(), Method\Extension\Zip::getClass(), Method\Extension\Zlib::getClass(), Method\Native\TarExtractor::getClass(), Method\Native\GzipExtractor::getClass()];
     $formatsClasses = [Format\Simple\Ace::getClass(), Format\Simple\Ar::getClass(), Format\Simple\Arc::getClass(), Format\Simple\Arj::getClass(), Format\Simple\Bin::getClass(), Format\Simple\Bz2::getClass(), Format\Simple\Cab::getClass(), Format\Simple\Chm::getClass(), Format\Simple\Cpio::getClass(), Format\Simple\Deb::getClass(), Format\Simple\Dmg::getClass(), Format\Simple\Epub::getClass(), Format\Simple\Exe::getClass(), Format\Simple\Gz::getClass(), Format\Simple\Hfs::getClass(), Format\Simple\Img::getClass(), Format\Simple\Iso::getClass(), Format\Simple\Jar::getClass(), Format\Simple\Lzh::getClass(), Format\Simple\Lzma::getClass(), Format\Simple\Msi::getClass(), Format\Simple\Phar::getClass(), Format\Simple\Rar::getClass(), Format\Simple\Rpm::getClass(), Format\Simple\Shar::getClass(), Format\Simple\Tar::getClass(), Format\Simple\Wim::getClass(), Format\Simple\X7z::getClass(), Format\Simple\Xz::getClass(), Format\Simple\Zip::getClass(), Format\Composed\TarBz2::getClass(), Format\Composed\TarGz::getClass(), Format\Composed\TarXz::getClass()];
     $this->formats = [];
     foreach ($formatsClasses as $formatClass) {
         if (false === in_array($formatClass::getName(), $disabledFormats)) {
             $this->formats[] = $formatClass::getClass();
         }
     }
     $this->methods = [];
     foreach ($methodsClasses as $methodClass) {
         if (false === in_array($methodClass::getName(), $disabledMethods)) {
             $this->methods[] = $methodClass::getClass();
         }
     }
 }
コード例 #2
0
 /**
  * Constructor.
  */
 public function __construct(array $disabledMethods = [], array $disabledFormats = [])
 {
     $methodsClasses = [Method\Command\Bzip2::getClass(), Method\Command\Cabextract::getClass(), Method\Command\GnuGzip::getClass(), Method\Command\GnuTar::getClass(), Method\Command\Unrar::getClass(), Method\Command\Unzip::getClass(), Method\Command\x7zip::getClass(), Method\Command\Xz::getClass(), Method\Command\Gnome\Gcab::getClass(), Method\Extension\Pear\ArchiveTar::getClass(), Method\Extension\Phar::getClass(), Method\Extension\PharData::getClass(), Method\Extension\Rar::getClass(), Method\Extension\Zip::getClass(), Method\Native\TarExtractor::getClass()];
     $formatsClasses = [Format\Bz2::getClass(), Format\Cab::getClass(), Format\Epub::getClass(), Format\Gz::getClass(), Format\Phar::getClass(), Format\Rar::getClass(), Format\Tar::getClass(), Format\TarBz2::getClass(), Format\TarGz::getClass(), Format\TarXz::getClass(), Format\x7z::getClass(), Format\Xz::getClass(), Format\Zip::getClass()];
     $this->formats = [];
     foreach ($formatsClasses as $formatClass) {
         if (false === in_array($formatClass::getName(), $disabledFormats)) {
             $this->formats[] = $formatClass::getClass();
         }
     }
     $this->methods = [];
     foreach ($methodsClasses as $methodClass) {
         if (false === in_array($methodClass::getName(), $disabledMethods)) {
             $this->methods[] = $methodClass::getClass();
         }
     }
 }
コード例 #3
0
ファイル: Rar.php プロジェクト: anthonyhowell/distill
 /**
  * {@inheritdoc}
  */
 public static function getUncompressionMethods()
 {
     return [Method\Command\Unrar::getName(), Method\Command\x7zip::getName(), Method\Extension\Rar::getName()];
 }