diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-05-05 22:32:18 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-05-05 22:32:18 +0200 |
commit | 93e06f76dfa2cb49a2edfcb6b70dd3c6cf3272d6 (patch) | |
tree | be71bae47aa0251aa4459e121530adfa0a78e71c /application/views/file_plaintext | |
parent | f3cb1c31e30a0d31eb545439fe3ad7da68ccb189 (diff) |
Rework file deletion; allow to delete multiple IDs at once
This removes the old form which was used to delete a single upload and
replaces it with checkboxes on the history page. All checked IDs will be
removed at once, instead of requiring the user to click through multiple
pages.
The old file/delete page is kept for compatibility with CLI clients.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/file_plaintext')
-rw-r--r-- | application/views/file_plaintext/delete_form.php | 2 | ||||
-rw-r--r-- | application/views/file_plaintext/deleted.php | 9 |
2 files changed, 8 insertions, 3 deletions
diff --git a/application/views/file_plaintext/delete_form.php b/application/views/file_plaintext/delete_form.php deleted file mode 100644 index ba736078c..000000000 --- a/application/views/file_plaintext/delete_form.php +++ /dev/null @@ -1,2 +0,0 @@ -<?php if(isset($msg)) echo $msg; ?> - diff --git a/application/views/file_plaintext/deleted.php b/application/views/file_plaintext/deleted.php index e5683b9d4..347766092 100644 --- a/application/views/file_plaintext/deleted.php +++ b/application/views/file_plaintext/deleted.php @@ -1 +1,8 @@ -<?php echo $id; ?> has been deleted. +<?php if (!empty($errors)) { + echo implode("\n", $errors); +} ?> +<?php if (!empty($msgs)) { + echo implode("\n", $msgs); +} ?> + +<?php echo $deleted_count; ?> of <?php echo $total_count; ?> deleted. |