Skip to content
Snippets Groups Projects
Commit c98b7fe7 authored by Joas Schilling's avatar Joas Schilling
Browse files

Merge if statements

parent 909e505c
Branches
No related tags found
No related merge requests found
......@@ -8,20 +8,16 @@ OCP\JSON::callCheck();
// Get data
$dir = stripslashes($_POST["dir"]);
$allFiles = isset($_POST["allfiles"]) ? $_POST["allfiles"] : false;
if ($allFiles === 'true') {
$allFiles = true;
} else {
$files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"];
}
// delete all files in dir ?
if ($allFiles) {
if ($allFiles === 'true') {
$files = array();
$fileList = \OC\Files\Filesystem::getDirectoryContent($dir);
foreach ($fileList as $fileInfo) {
$files[] = $fileInfo['name'];
}
} else {
$files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"];
$files = json_decode($files);
}
$filesWithError = '';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment