/home/vianto5/hidalgoresidences.mx/wp-content/plugins/wp-file-manager/lib/php
NameSizeModeActions
editors/-0755rm
libs/-0755rm
plugins/-0755rm
resources/-0755rm
autoload.php26800644editdlrm
elFinder.class.php1891160644editdlrm
elFinderConnector.class.php127740644editdlrm
elFinderFlysystemGoogleDriveNetmount.php151870644editdlrm
elFinderPlugin.php33310644editdlrm
elFinderSession.php87640644editdlrm
elFinderSessionInterface.php10940644editdlrm
elFinderVolumeBox.class.php617720644editdlrm
elFinderVolumeDriver.class.php2631700644editdlrm
elFinderVolumeDropbox2.class.php474120644editdlrm
elFinderVolumeFTP.class.php585520644editdlrm
elFinderVolumeGoogleDrive.class.php712590644editdlrm
elFinderVolumeGroup.class.php53710644editdlrm
elFinderVolumeLocalFileSystem.class.php485440644editdlrm
elFinderVolumeMySQL.class.php304390644editdlrm
elFinderVolumeOneDrive.class.php672540644editdlrm
elFinderVolumeSFTPphpseclib.class.php277630644editdlrm
elFinderVolumeTrash.class.php15830644editdlrm
elFinderVolumeTrashMySQL.class.php15760644editdlrm
mime.types248630644editdlrm
Edit: /home/vianto5/hidalgoresidences.mx/wp-content/plugins/wp-file-manager/lib/php/elFinderPlugin.php (3331B)
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; } }