|
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
|
}
|