Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some paths moves into config #101

Open
wants to merge 20 commits into
base: lazy_load
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions config/filemanager.config.default.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
"culture": "en",
"theme": "flat-dark",
"defaultViewMode": "grid",
"filemanagerMode": "split",
"localizeGUI": true,
"showFullPath": false,
"showTitleAttr": false,
"showConfirmation": true,
"browseOnly": false,
"canCreateFolders": true,
"clipboard": true,
"searchBox": true,
"listFiles": true,
Expand All @@ -30,6 +32,15 @@
"delete"
]
},
"filetree": {
"enabled": true,
"foldersOnly": false,
"reloadOnClick": true,
"expandSpeed": 200,
"showLine": true,
"width": 200,
"minWidth": 200
},
"manager": {
"dblClickOpen": false,
"selection": {
Expand Down Expand Up @@ -170,6 +181,15 @@
"extra_js": [],
"extra_js_async": true
},
"paths": {
"flash": "/scripts/",
"languages": "/languages/",
"images": "/scripts/jQuery-File-Upload/img",
"scripts": "/scripts/",
"styles": "/scripts/",
"themes": "/themes/",
"templates": "/scripts/templates/"
},
"url": "https://github.com/servocoder/RichFilemanager",
"version": "2.2.1"
}
4 changes: 0 additions & 4 deletions config/filemanager.init.js.example

This file was deleted.

2 changes: 1 addition & 1 deletion connectors/php/BaseFilemanager.php
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public function handleRequest()
break;

case 'getfolder':
if($this->getvar('path') && $this->getvard('skip', true, 0)) {
if($this->getvar('path') && $this->getvard('skip', true, 0) && $this->getvard('load', true, 0)) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

getvard()? Probably should be getvar().

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Take a look for new function getvard which don't throw error if variable wasn't set. 3rd argument is default value which will be used if name not defined in $_GET.


$response = $this->actionGetFolder();
}
Expand Down
5 changes: 4 additions & 1 deletion connectors/php/LocalFilemanager.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ public function actionGetFolder()
$response_data = [];
$target_path = $this->get['path'];
$skipCount = $this->get['skip'];
//$load = 0 - both, 1 - folders, 2 - files
$load = $this->get['load'];
$filesSkipped = 0;
$target_fullpath = $this->getFullPath($target_path, true);
$lazyEnabled = $this->config['options']['lazy'];
Expand All @@ -168,7 +170,8 @@ public function actionGetFolder()
if($file != "." && $file != "..") {
//@todo Skip files not in that dirty way
if ($lazyEnabled && $filesSkipped++ < $skipCount) continue;
array_push($files_list, $file);
if ((is_dir($target_fullpath . $file) && $load != 2) || ($load != 1))
array_push($files_list, $file);
if ($lazyEnabled && count($files_list) >= $lazyLimit) {
$lazyFlag = false;
break;
Expand Down
2 changes: 1 addition & 1 deletion connectors/php/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* - absolute path in case `serverRoot` set to "false", e.g. "/var/www/html/filemanager/userfiles/"
* - relative path in case `serverRoot` set to "true", e.g. "/filemanager/userfiles/"
*/
"fileRoot" => false,
"fileRoot" => '/source',
/**
* Format of the date to display. See http://www.php.net/manual/en/function.date.php
*/
Expand Down
Loading