summaryrefslogtreecommitdiffstats
path: root/application/views/file_plaintext/upload_history.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2016-09-26 11:34:19 +0200
committerFlorian Pritz <bluewind@xinu.at>2016-11-05 19:44:15 +0100
commit0dc7c62cb01cc23a02d08f3cf5e47da2fa1f8721 (patch)
tree55692bbbb06864d7cce6b0e509a3dcc47b8e953b /application/views/file_plaintext/upload_history.php
parent35ab0b829a7d30612be15c1e6d2743019d50ed08 (diff)
Drop file_plaintext views
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/file_plaintext/upload_history.php')
-rw-r--r--application/views/file_plaintext/upload_history.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/application/views/file_plaintext/upload_history.php b/application/views/file_plaintext/upload_history.php
deleted file mode 100644
index 53801494f..000000000
--- a/application/views/file_plaintext/upload_history.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-$dateformat = "r";
-$lengths["date"] = max($lengths["date"], strlen(date($dateformat, time())));
-echo
- mb_str_pad($fields["id"], $lengths["id"])." | "
- .mb_str_pad($fields["filename"], $lengths["filename"])." | "
- .mb_str_pad($fields["mimetype"], $lengths["mimetype"])." | "
- .mb_str_pad($fields["date"], $lengths["date"])." | "
- .mb_str_pad($fields["hash"], $lengths["hash"])." | "
- .mb_str_pad($fields["filesize"], $lengths["filesize"])."\n";
-
-foreach($items as $key => $item) {
- echo
- mb_str_pad($item["id"], $lengths["id"])." | "
- .mb_str_pad($item["filename"], $lengths["filename"])." | "
- .mb_str_pad($item["mimetype"], $lengths["mimetype"])." | "
- .date($dateformat, $item["date"])." | "
- .mb_str_pad($item["hash"], $lengths["hash"])." | "
- .$item["filesize"]."\n";
-}
-?>
-
-Total sum of your distinct uploads: <?php echo $total_size; ?>.