PluginProbe ʕ •ᴥ•ʔ
Advanced File Manager – Ultimate File Manager for WordPress And Document Library Solution / trunk
Advanced File Manager – Ultimate File Manager for WordPress And Document Library Solution vtrunk
trunk 4.1.5 4.1.6 5.0 5.2.13 5.2.14 5.3.0 5.3.1 5.3.2 5.3.3 5.3.4 5.3.5 5.3.6 5.4.0 5.4.1 5.4.10 5.4.11 5.4.12 5.4.2 5.4.3 5.4.4 5.4.5 5.4.6 5.4.7 5.4.8
file-manager-advanced / application / library / php / editors / ZipArchive / editor.php
file-manager-advanced / application / library / php / editors / ZipArchive Last commit date
editor.php 7 years 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 }