From 3e99f93830d61be76205474bacc749e97d9e3ca5 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 11 Sep 2011 16:00:22 +0200 Subject: add upload_history page Signed-off-by: Florian Pritz --- application/views/file/upload_history.php | 26 ++++++++++++++++++++++ .../views/file_plaintext/upload_history.php | 17 ++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 application/views/file/upload_history.php create mode 100644 application/views/file_plaintext/upload_history.php (limited to 'application/views') diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php new file mode 100644 index 000000000..5d61c7331 --- /dev/null +++ b/application/views/file/upload_history.php @@ -0,0 +1,26 @@ + +

+ Password: + +

+ + + + + + + + + + + $item): ?> + + + + + + + + +
IDFilenameMimetype + DateHash
/">
diff --git a/application/views/file_plaintext/upload_history.php b/application/views/file_plaintext/upload_history.php new file mode 100644 index 000000000..e03311464 --- /dev/null +++ b/application/views/file_plaintext/upload_history.php @@ -0,0 +1,17 @@ + $item) { + echo + mb_str_pad($item["id"], $lengths["id"])." | " + .mb_str_pad($item["filename"], $lengths["filename"])." | " + .mb_str_pad($item["mimetype"], $lengths["mimetype"])." | " + .$item["date"]." | " + .$item["hash"]."\n"; +} + -- cgit v1.2.3-24-g4f1b