From c40dfc07552111c3b0ab8ecfddd940691b09cad7 Mon Sep 17 00:00:00 2001 From: Bart Mollet Date: Tue, 9 Jan 2007 13:35:04 +0100 Subject: [PATCH] [svn r10623] Adding label to upload field http://www.dokeos.com/forum/viewtopic.php?t=7817 --- main/exercice/hotspot.class.php | 54 ++++++++++++++++----------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/main/exercice/hotspot.class.php b/main/exercice/hotspot.class.php index b9aba64f16..b16d3e5106 100644 --- a/main/exercice/hotspot.class.php +++ b/main/exercice/hotspot.class.php @@ -1,70 +1,70 @@ type = HOT_SPOT; } - + function display(){ - + } - + function createForm ($form) { parent::createForm ($form); if(!isset($_GET['editQuestion'])) { - $form->addElement('file','imageUpload'); + $form->addElement('file','imageUpload',get_lang('UploadFile')); $form->addRule('imageUpload', get_lang('OnlyJPG'), 'mimetype','image/jpeg'); - $form->addRule('imageUpload', get_lang('NoImage'), 'uploadedfile'); + $form->addRule('imageUpload', get_lang('NoImage'), 'uploadedfile'); } } - + function processCreation ($form, $objExercise) { - $file_info = $form -> getSubmitValue('imageUpload'); + $file_info = $form -> getSubmitValue('imageUpload'); parent::processCreation ($form, $objExercise); if(!empty($file_info['tmp_name'])) { @@ -73,19 +73,19 @@ class HotSpot extends Question { } echo ''; } - + function createAnswersForm ($form) { - + // nothing - + } - + function processAnswersCreation ($form) { - + // nothing - + } - + } endif;