PATH:
home
/
lab2454c
/
incforce.com
/
wp-content
/
plugins
/
smart-slider-3
/
Nextend
/
Framework
/
Misc
/
Zip
<?php namespace Nextend\Framework\Misc\Zip; use Nextend\Framework\Misc\Zip\Reader\Custom; use Nextend\Framework\Misc\Zip\Reader\ZipExtension; class Reader { public static function read($path) { if (class_exists('ZipArchive') && strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') { $reader = new ZipExtension(); } else { $reader = new Custom(); } return $reader->read($path); } }
[-] Reader.php
[edit]
[+]
..
[+]
Reader
[-] ReaderInterface.php
[edit]
[-] Creator.php
[edit]