Skip to content
Snippets Groups Projects
Commit 5a11e739 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

implemented deleting multiple files

parent ca00d37a
No related branches found
No related tags found
No related merge requests found
......@@ -14,14 +14,23 @@ if( !OC_USER::isLoggedIn()){
// Get data
$dir = $_GET["dir"];
$file = $_GET["file"];
$files = isset($_GET["file"]) ? $_GET["file"] : $_GET["files"];
// Delete
if( OC_FILES::delete( $dir, $file )){
echo json_encode( array( "status" => "success", "data" => array( "dir" => $dir, "file" => $file )));
$files = explode(';', $files);
$filesWithError = '';
$status = 'success';
//Now delete
foreach($files as $file) {
if( !OC_FILES::delete( $dir, $file )){
$filesWithError .= $file . "\n";
$status = 'error';
}
}
else{
echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to delete file" )));
if($status == 'success') {
echo json_encode( array( "status" => $status, "data" => array( "dir" => $dir, "files" => $files )));
} else {
echo json_encode( array( "status" => $status, "data" => array( "message" => "Could not delete:\n" . $filesWithError )));
}
?>
......@@ -113,6 +113,25 @@ $(document).ready(function() {
window.location='ajax/download.php?files='+files+'&dir='+dir;
return false;
});
$('.delete').click(function(event) {
var files='';
$('td.selection input:checkbox:checked').parent().parent().children('.filename').each(function(i,element){
files+=';'+$(element).text();
});
files=files.substr(1);//remove leading ;
//send the browser to the download location
$.ajax({
url: 'ajax/delete.php',
data: "dir="+$('#dir').val()+"&files="+files,
complete: function(data){
boolOperationFinished(data, false);
}
});
return false;
});
});
function uploadFinished() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment