PluginProbe ʕ •ᴥ•ʔ
File Manager Pro – Filester / 2.0
File Manager Pro – Filester v2.0
2.1.1 trunk 1.6.1 1.7.6 1.8 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9 2.0 2.0.1 2.0.2 2.1.0
filester / includes / File_manager / lib / php / editors / ZipArchive / editor.php
filester / includes / File_manager / lib / php / editors / ZipArchive Last commit date
editor.php 9 months ago
editor.php
12 lines
1 <?php
2
3 class elFinderEditorZipArchive extends elFinderEditor
4 {
5 public function enabled()
6 {
7 return (!defined('ELFINDER_DISABLE_ZIPEDITOR') || !ELFINDER_DISABLE_ZIPEDITOR) &&
8 class_exists('Barryvdh\elFinderFlysystemDriver\Driver') &&
9 class_exists('League\Flysystem\Filesystem') &&
10 class_exists('League\Flysystem\ZipArchive\ZipArchiveAdapter');
11 }
12 }