You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.0 KiB
118 lines
3.0 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
/**
|
|
* File containing the HotSpot class.
|
|
* @package chamilo.exercise
|
|
* @author Eric Marguin
|
|
* @version $Id: admin.php 10680 2007-01-11 21:26:23Z pcool $
|
|
*/
|
|
/**
|
|
* Code
|
|
*/
|
|
if(!class_exists('HotSpot')):
|
|
|
|
/**
|
|
CLASS HotSpot
|
|
*
|
|
* This class allows to instantiate an object of type HotSpot (MULTIPLE CHOICE, UNIQUE ANSWER),
|
|
* extending the class question
|
|
*
|
|
* @author Eric Marguin
|
|
* @package chamilo.exercise
|
|
**/
|
|
|
|
class HotSpot extends Question {
|
|
|
|
static $typePicture = 'hotspot.gif';
|
|
static $explanationLangVar = 'HotSpot';
|
|
|
|
function HotSpot() {
|
|
parent::question();
|
|
$this -> type = HOT_SPOT;
|
|
}
|
|
|
|
function display() {
|
|
}
|
|
|
|
function createForm (&$form, $fck_config=0) {
|
|
parent::createForm ($form, $fck_config);
|
|
global $text, $class;
|
|
if(!isset($_GET['editQuestion'])) {
|
|
$renderer = $form->defaultRenderer();
|
|
$form->addElement('file','imageUpload',array('<img src="../img/hotspots.png" />', get_lang('UploadJpgPicture')) );
|
|
|
|
// setting the save button here and not in the question class.php
|
|
// Saving a question
|
|
$form->addElement('style_submit_button','submitQuestion',get_lang('GoToQuestion'), 'class="'.$class.'"');
|
|
$form->addRule('imageUpload', get_lang('OnlyImagesAllowed'), 'filetype', array ('jpg', 'jpeg', 'png', 'gif'));
|
|
$form->addRule('imageUpload', get_lang('NoImage'), 'uploadedfile');
|
|
} else {
|
|
// setting the save button here and not in the question class.php
|
|
// Editing a question
|
|
$form->addElement('style_submit_button','submitQuestion',get_lang('ModifyExercise'), 'class="'.$class.'"');
|
|
}
|
|
|
|
}
|
|
|
|
function processCreation ($form, $objExercise = null) {
|
|
$file_info = $form -> getSubmitValue('imageUpload');
|
|
parent::processCreation ($form, $objExercise);
|
|
if(!empty($file_info['tmp_name'])) {
|
|
$this->uploadPicture($file_info['tmp_name'], $file_info['name']);
|
|
global $picturePath;
|
|
//fixed width ang height
|
|
if (file_exists($picturePath.'/'.$this->picture)) {
|
|
list($width,$height) = @getimagesize($picturePath.'/'.$this->picture);
|
|
if($width>$height) {
|
|
$this->resizePicture('width',545);
|
|
} else {
|
|
$this->resizePicture('height',350);
|
|
}
|
|
$this->save();
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
function createAnswersForm ($form) {
|
|
// nothing
|
|
}
|
|
|
|
function processAnswersCreation ($form) {
|
|
// nothing
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @package chamilo.exercise
|
|
*/
|
|
class HotSpotDelineation extends HotSpot {
|
|
|
|
static $typePicture = 'hotspot_delineation.gif';
|
|
static $explanationLangVar = 'HotspotDelineation';
|
|
|
|
function HotSpotDelineation(){
|
|
parent::question();
|
|
$this -> type = HOT_SPOT_DELINEATION;
|
|
|
|
}
|
|
|
|
function createForm (&$form, $fck_config=0) {
|
|
parent::createForm ($form, $fck_config);
|
|
}
|
|
|
|
function processCreation ($form, $objExercise = null) {
|
|
$file_info = $form -> getSubmitValue('imageUpload');
|
|
parent::processCreation ($form, $objExercise);
|
|
}
|
|
|
|
function createAnswersForm ($form) {
|
|
parent::createAnswersForm ($form);
|
|
}
|
|
|
|
function processAnswersCreation ($form) {
|
|
parent::processAnswersCreation ($form);
|
|
}
|
|
}
|
|
endif;
|
|
|