X7ROOT File Manager
Current Path:
/home/oakwood/public_html/wp-content/plugins/wp-file-manager/lib/php
home
/
oakwood
/
public_html
/
wp-content
/
plugins
/
wp-file-manager
/
lib
/
php
/
ðŸ“
..
📄
autoload.php
(2.62 KB)
ðŸ“
editors
📄
elFinder.class.php
(183.68 KB)
📄
elFinderConnector.class.php
(12.47 KB)
📄
elFinderFlysystemGoogleDriveNetmount.php
(14.83 KB)
📄
elFinderPlugin.php
(3.25 KB)
📄
elFinderSession.php
(8.56 KB)
📄
elFinderSessionInterface.php
(1.07 KB)
📄
elFinderVolumeBox.class.php
(60.32 KB)
📄
elFinderVolumeDriver.class.php
(256.97 KB)
📄
elFinderVolumeDropbox2.class.php
(46.3 KB)
📄
elFinderVolumeFTP.class.php
(57.18 KB)
📄
elFinderVolumeGoogleDrive.class.php
(69.59 KB)
📄
elFinderVolumeGroup.class.php
(5.25 KB)
📄
elFinderVolumeLocalFileSystem.class.php
(47.24 KB)
📄
elFinderVolumeMySQL.class.php
(29.73 KB)
📄
elFinderVolumeOneDrive.class.php
(65.68 KB)
📄
elFinderVolumeSFTPphpseclib.class.php
(26.72 KB)
📄
elFinderVolumeTrash.class.php
(1.55 KB)
📄
elFinderVolumeTrashMySQL.class.php
(1.54 KB)
ðŸ“
flycache
ðŸ“
libs
📄
mime.types
(24.28 KB)
ðŸ“
plugins
ðŸ“
resources
Editing: elFinderPlugin.php
<?php /** * elFinder Plugin Abstract * * @package elfinder * @author Naoki Sawada * @license New BSD */ class elFinderPlugin { /** * This plugin's options * * @var array */ protected $opts = array(); /** * Get current volume's options * * @param object $volume * * @return array options */ protected function getCurrentOpts($volume) { $name = substr(get_class($this), 14); // remove "elFinderPlugin" $opts = $this->opts; if (is_object($volume)) { $volOpts = $volume->getOptionsPlugin($name); if (is_array($volOpts)) { $opts = array_merge($opts, $volOpts); } } return $opts; } /** * Is enabled with options * * @param array $opts * @param elFinder $elfinder * * @return boolean */ protected function iaEnabled($opts, $elfinder = null) { if (!$opts['enable']) { return false; } // check post var 'contentSaveId' to disable this plugin if ($elfinder && !empty($opts['disableWithContentSaveId'])) { $session = $elfinder->getSession(); $urlContentSaveIds = $session->get('urlContentSaveIds', array()); if (!empty(elFinder::$currentArgs['contentSaveId']) && ($contentSaveId = elFinder::$currentArgs['contentSaveId'])) { if (!empty($urlContentSaveIds[$contentSaveId])) { $elfinder->removeUrlContentSaveId($contentSaveId); return false; } } } if (isset($opts['onDropWith']) && !is_null($opts['onDropWith'])) { // plugin disabled by default, enabled only if given key is pressed if (isset($_REQUEST['dropWith']) && $_REQUEST['dropWith']) { $onDropWith = $opts['onDropWith']; $action = (int)$_REQUEST['dropWith']; if (!is_array($onDropWith)) { $onDropWith = array($onDropWith); } foreach ($onDropWith as $key) { $key = (int)$key; if (($action & $key) === $key) { return true; } } } return false; } if (isset($opts['offDropWith']) && !is_null($opts['offDropWith']) && isset($_REQUEST['dropWith'])) { // plugin enabled by default, disabled only if given key is pressed $offDropWith = $opts['offDropWith']; $action = (int)$_REQUEST['dropWith']; if (!is_array($offDropWith)) { $offDropWith = array($offDropWith); } $res = true; foreach ($offDropWith as $key) { $key = (int)$key; if ($key === 0) { if ($action === 0) { $res = false; break; } } else { if (($action & $key) === $key) { $res = false; break; } } } if (!$res) { return false; } } return true; } }
Upload File
Create Folder