From fdcead0d5cb071f2dd7c1659ae91dd4116809518 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 16 Aug 2012 17:30:43 +0200 Subject: Add help message when running file controller via CLI Signed-off-by: Florian Pritz --- application/controllers/file.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/application/controllers/file.php b/application/controllers/file.php index a9e4406bc..90c73d844 100644 --- a/application/controllers/file.php +++ b/application/controllers/file.php @@ -57,6 +57,18 @@ class File extends CI_Controller { function index() { + if ($this->input->is_cli_request()) { + echo "php index.php file [arguments]\n"; + echo "\n"; + echo "Functions:\n"; + echo " cron Cronjob\n"; + echo " nuke_id Nukes all IDs sharing the same hash\n"; + echo "\n"; + echo "Functions that shouldn't have to be run:\n"; + echo " clean_stale_files Remove files without database entries\n"; + echo " update_file_sizes Update filesize in database\n"; + exit; + } // Try to guess what the user would like to do. $id = $this->uri->segment(1); if(isset($_FILES['file'])) { -- cgit v1.2.3-24-g4f1b