Submit
Path:
~
/
home
/
bfxleof
/
www
/
wp-content
/
plugins
/
fileorganizer
/
manager
/
php
/
plugins
/
Normalizer
/
File Content:
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; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
.DS_Store
10234 bytes
0644
DownloadConfController-20260706031342.php
945 bytes
0644
DownloadConfController.php
945 bytes
0644
class-sitemaps-admin-20260706121012.php
3665 bytes
0644
class-sitemaps-admin.php
3665 bytes
0644
class-wpseo-statistics-20260705182349.php
1443 bytes
0644
class-wpseo-statistics.php
1443 bytes
0644
csv.php
3081 bytes
0644
deactivation-20260623192843.php
21118 bytes
0644
deactivation.php
21118 bytes
0644
define-20260706153844.php
4567 bytes
0644
define.php
4567 bytes
0644
duplicator-20260622023227.php
1781 bytes
0644
elFinderPlugin.php
3331 bytes
0644
elFinderVolumeBox.class-20260624183442.php
61762 bytes
0644
elFinderVolumeBox.class.php
61762 bytes
0644
elFinderVolumeDropbox.class-20260706154908.php
41782 bytes
0644
elFinderVolumeDropbox.class.php
41782 bytes
0644
elFinderVolumeDropbox2.class.php
47402 bytes
0644
elFinderVolumeGroup.class-20260623002712.php
5371 bytes
0644
elFinderVolumeGroup.class.php
5371 bytes
0644
elFinderVolumeLocalFileSystem.class.php
48544 bytes
0644
elFinderVolumeMySQL.class.php
30439 bytes
0644
elFinderVolumeOneDrive.class.php
67244 bytes
0644
elFinderVolumeTrashMySQL.class.php
1576 bytes
0644
exceptions-20260706002009.php
708 bytes
0644
exceptions.php
708 bytes
0644
flexible-widget-20260623192831.php
11167 bytes
0644
flexible-widget.php
11167 bytes
0644
image-helper-20260705230657.php
10231 bytes
0644
image-helper.php
10231 bytes
0644
index-20260623162605.php
15 bytes
0644
index.php
15 bytes
0644
loco-20260623002550.php
5626 bytes
0644
loco.php
5626 bytes
0644
manager.php
14659 bytes
0644
plugin.php
8027 bytes
0644
root-20260706095923.php
1951 bytes
0644
root.php
1951 bytes
0644
setup.php
2699 bytes
0644
N4ST4R_ID | Naxtarrr