From eb98a1b4b2ccebd75924cd56cb286573186cc283 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 11 Jul 2010 20:54:26 +0200 Subject: display minimum deletion size on upload_form Signed-off-by: Florian Pritz --- system/application/controllers/file.php | 3 ++- system/application/helpers/filebin_helper.php | 9 +++++++++ system/application/views/file/upload_form.php | 4 +++- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 system/application/helpers/filebin_helper.php diff --git a/system/application/controllers/file.php b/system/application/controllers/file.php index 67f7c0b2e..8584948b9 100644 --- a/system/application/controllers/file.php +++ b/system/application/controllers/file.php @@ -13,7 +13,7 @@ class File extends Controller { function __construct() { parent::Controller(); - $this->load->helper('form'); + $this->load->helper(array('form', 'filebin')); $this->load->model('file_mod'); $this->var->cli_client = false; $this->file_mod->var->cli_client =& $this->var->cli_client; @@ -47,6 +47,7 @@ class File extends Controller { { $data = array(); $data['title'] = 'Upload'; + $data['small_upload_size'] = $this->config->item('small_upload_size'); $this->load->view('file/header', $data); $this->load->view('file/upload_form', $data); diff --git a/system/application/helpers/filebin_helper.php b/system/application/helpers/filebin_helper.php new file mode 100644 index 000000000..34b231023 --- /dev/null +++ b/system/application/helpers/filebin_helper.php @@ -0,0 +1,9 @@ +

-

Uploads/pastes are deleted after 5 days.

+

Uploads/pastes are deleted after 5 days 0): ?> + unless they are smaller than +.


For shell uploading/pasting use:

-- 
cgit v1.2.3-24-g4f1b