4 require_once
'./Modules/TestQuestionPool/classes/class.assQuestion.php';
5 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
6 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilObjQuestionScoringAdjustable.php';
106 $javaapplet_filename =
"" 111 $this->parameters = array();
123 $params_array = split(
"<separator>", $params);
124 foreach ($params_array as $pair)
126 if (preg_match(
"/(.*?)\=(.*)/", $pair, $matches))
131 $this->java_code = $matches[2];
133 case "java_codebase" :
134 $this->java_codebase = $matches[2];
136 case "java_archive" :
137 $this->java_archive = $matches[2];
140 $this->java_width = $matches[2];
143 $this->java_height = $matches[2];
146 if (preg_match(
"/param_name_(\d+)/", $matches[1], $found_key))
148 $this->parameters[$found_key[1]][
"name"] = $matches[2];
150 if (preg_match(
"/param_value_(\d+)/", $matches[1], $found_key))
152 $this->parameters[$found_key[1]][
"value"] = $matches[2];
167 $params_array = array();
168 if ($this->java_code)
170 array_push($params_array,
"java_code=$this->java_code");
172 if ($this->java_codebase)
174 array_push($params_array,
"java_codebase=$this->java_codebase");
176 if ($this->java_archive)
178 array_push($params_array,
"java_archive=$this->java_archive");
180 if ($this->java_width)
182 array_push($params_array,
"java_width=$this->java_width");
184 if ($this->java_height)
186 array_push($params_array,
"java_height=$this->java_height");
188 foreach ($this->parameters as $key => $value)
190 array_push($params_array,
"param_name_$key=" . $value[
"name"]);
191 array_push($params_array,
"param_value_$key=" . $value[
"value"]);
194 return join($params_array,
"<separator>");
204 $params_array = array();
205 if ($this->java_code)
207 array_push($params_array,
"java_code=$this->java_code");
208 array_push($params_array,
"java_codebase=$this->java_codebase");
209 array_push($params_array,
"java_archive=$this->java_archive");
211 foreach ($this->parameters as $key => $value)
213 array_push($params_array,
"param_name_$key=" . $value[
"name"]);
214 array_push($params_array,
"param_value_$key=" . $value[
"value"]);
216 return join($params_array,
"<separator>");
226 if (strlen($this->title)
229 && $this->javaapplet_filename
231 && $this->java_height
237 else if (strlen($this->title)
243 && $this->java_height
274 array( $this->
getId() )
277 ) .
" (question_fi, image_file, params) VALUES (%s, %s, %s)",
278 array(
"integer",
"text",
"text" ),
281 $this->javaapplet_filename,
304 $this->
setId($question_id);
313 include_once(
"./Services/RTE/classes/class.ilRTE.php");
327 parent::loadFromDb($question_id);
343 $this_id = $this->
getId();
347 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
351 if( (
int)$testObjId > 0 )
353 $clone->setObjId($testObjId);
378 $clone->copyPageOfQuestion($this_id);
380 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
382 $clone->duplicateApplet($this_id, $thisObjId);
384 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
405 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
408 $source_questionpool_id = $this->
getObjId();
409 $clone->setObjId($target_questionpool_id);
421 $clone->copyApplet(
$original_id, $source_questionpool_id);
423 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
436 include_once (
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
439 $sourceParentId = $this->
getObjId();
445 $clone->setObjId($targetParentId);
447 if ($targetQuestionTitle)
449 $clone->setTitle($targetQuestionTitle);
454 $clone->copyPageOfQuestion($sourceQuestionId);
456 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
458 $clone->copyApplet($sourceQuestionId, $sourceParentId);
460 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
468 $javapath_original = preg_replace(
"/([^\d])$this->id([^\d])/",
"\${1}$question_id\${2}", $javapath);
470 if( (
int)$objectId > 0 )
472 $javapath_original = str_replace(
"/$this->obj_id/",
"/$objectId/", $javapath_original);
475 if (!file_exists($javapath))
480 if (!copy($javapath_original .
$filename, $javapath . $filename)) {
481 print
"java applet could not be duplicated!!!! ";
488 $javapath_original = preg_replace(
"/([^\d])$this->id([^\d])/",
"\${1}$question_id\${2}", $javapath);
489 $javapath_original = str_replace(
"/$this->obj_id/",
"/$source_questionpool/", $javapath_original);
490 if (!file_exists($javapath))
495 if (!copy($javapath_original .
$filename, $javapath . $filename)) {
496 print
"java applet could not be copied!!!! ";
644 throw new ilTestException(
'return details not implemented for '.__METHOD__);
649 $found_values = array();
654 $result = $ilDB->queryF(
"SELECT points FROM tst_solutions WHERE active_fi = %s AND question_fi = %s AND pass = %s",
655 array(
'integer',
'integer',
'integer'),
679 $found_values = array();
684 $result = $ilDB->queryF(
"SELECT * FROM tst_solutions WHERE active_fi = %s AND question_fi = %s AND pass = %s",
685 array(
'integer',
'integer',
'integer'),
689 $user_result = array();
693 if (
$data[
"points"] > 0)
699 "points" =>
$data[
"points"],
701 "value1" =>
$data[
"value1"],
702 "value2" =>
$data[
"value2"],
705 array_push($user_result, $solution);
723 $this->parameters[$index] = array(
"name" => $name,
"value" => $value);
727 array_push($this->parameters, array(
"name" => $name,
"value" => $value));
733 if (array_key_exists($index, $this->parameters))
736 $newparams = array();
737 for ($i = 0; $i < $index; $i++)
739 array_push($newparams, $this->parameters[$i]);
741 array_push($newparams, array($name, $value));
742 for ($i = $index; $i < count($this->parameters); $i++)
744 array_push($newparams, $this->parameters[$i]);
746 $this->parameters = $newparams;
750 array_push($this->parameters, array($name, $value));
763 if ($index < 0)
return;
764 if (count($this->parameters) < 1)
return;
765 if ($index >= count($this->parameters))
return;
766 unset($this->parameters[$index]);
767 $this->parameters = array_values($this->parameters);
780 if (($index < 0) or ($index >= count($this->parameters)))
784 return $this->parameters[$index];
797 foreach ($this->parameters as $key => $value)
799 if (array_key_exists($name, $value))
816 return count($this->parameters);
827 $this->parameters = array();
883 if (!empty($javaapplet_filename))
887 if (!empty($javaapplet_tempfilename))
890 if (!file_exists($javapath))
897 $ilLog->write(
"ERROR: java applet question: java applet not uploaded: $javaapplet_filename");
910 $this->javaapplet_filename =
"";
920 return "assJavaApplet";
930 return "qpl_qst_javaapplet";
939 return parent::getRTETextWithMediaObjects();
956 include_once (
"./Services/Excel/classes/class.ilExcelUtils.php");
961 foreach ($solutions as $solution)
968 return $startrow + $i + 1;
duplicateApplet($question_id, $objectId=null)
getParameterIndex($name)
Returns the index of an applet parameter.
static makeDirParents($a_dir)
Create a new directory and all parent directories.
addParameter($name="", $value="")
Adds a new parameter value to the parameter list.
getId()
Gets the id of the assQuestion object.
static _getOriginalId($question_id)
Returns the original id of a question.
deleteJavaAppletFilename()
reworkWorkingData($active_id, $pass, $obligationsAnswered)
Reworks the allready saved working data if neccessary.
getQuestionType()
Returns the question type of the question.
flushParams()
Removes all applet parameters.
getJavaWidth()
Returns the java applet width parameter.
getPoints()
Returns the maximum available points for the question.
duplicate($for_test=true, $title="", $author="", $owner="", $testObjId=null)
Duplicates an assJavaApplet.
calculateReachedPoints($active_id, $pass=NULL, $returndetails=FALSE)
Returns the points, a learner has reached answering the question.
& getSolutionValues($active_id, $pass=NULL)
Loads solutions of a given user from the database an returns it.
Abstract basic class which is to be extended by the concrete assessment question type classes...
_convert_text($a_text, $a_target="has been removed")
getAdditionalTableName()
Returns the name of the additional question data table in the database.
saveAdditionalQuestionDataToDb()
setJavaHeight($java_height="")
Sets the java applet height parameter.
createNewOriginalFromThisDuplicate($targetParentId, $targetQuestionTitle="")
setId($id=-1)
Sets the id of the assQuestion object.
setJavaArchive($java_archive="")
Sets the java applet archive parameter.
getSolutionMaxPass($active_id)
Returns the maximum pass a users question solution.
splitParams($params="")
Sets the applet parameters from a parameter string containing all parameters in a list...
setEstimatedWorkingTime($hour=0, $min=0, $sec=0)
Sets the estimated working time of a question.
saveWorkingData($active_id, $pass=NULL)
Saves the learners input of the question to the database.
setExportDetailsXLS(&$worksheet, $startrow, $active_id, $pass, &$format_title, &$format_bold)
Creates an Excel worksheet for the detailed cumulated results of this question.
addParameterAtIndex($index=0, $name="", $value="")
getJavaPath()
Returns the image path for web accessable images of a question.
Class for Java Applet Questions.
copyApplet($question_id, $source_questionpool)
loadFromDb($question_id)
Loads a assJavaApplet object from a database.
buildParamsOnly()
Returns a string containing the additional applet parameters.
setNrOfTries($a_nr_of_tries)
getParameterCount()
Returns the number of additional applet parameters.
setAdditionalContentEditingMode($additinalContentEditingMode)
setter for additional content editing mode for this question
getReachedInformation($active_id, $pass=NULL)
Returns the evaluation data, a learner has entered to answer the question.
setJavaWidth($java_width="")
Sets the java applet width parameter.
getObjId()
Get the object id of the container object.
Base Exception for all Exceptions relating to Modules/Test.
saveToDb($original_id="")
Saves a assJavaApplet object to a database.
fetchAssoc($a_set)
Fetch row as associative array from result set.
setAuthor($author="")
Sets the authors name of the assQuestion object.
getRTETextWithMediaObjects()
Collects all text in the question which could contain media objects which were created with the Rich ...
getJavaHeight()
Returns the java applet height parameter.
getJavaAppletFilename()
Gets the java applet file name.
getParameter($index)
Returns the paramter at a given index.
removeParameter($index)
Removes a parameter value from the parameter list.
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
getJavaCodebase()
Returns the java applet codebase parameter.
setPoints($a_points)
Sets the maximum available points for the question.
saveQuestionDataToDb($original_id="")
__construct( $title="", $comment="", $author="", $owner=-1, $question="", $javaapplet_filename="")
assJavaApplet constructor
setJavaAppletFilename($javaapplet_filename, $javaapplet_tempfilename="")
Sets the java applet file name.
static _replaceMediaObjectImageSrc($a_text, $a_direction=0)
replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
while($lm_rec=$ilDB->fetchAssoc($lm_set)) $data
setJavaCodebase($java_codebase="")
Sets the java applet codebase parameter.
getJavaArchive()
Returns the java applet archive parameter.
setQuestion($question="")
Sets the question string of the question object.
setOriginalId($original_id)
buildParams()
Returns a string containing the applet parameters.
isComplete()
Returns true, if a imagemap question is complete for use.
getTitle()
Gets the title string of the assQuestion object.
getJavaCode()
Returns the java applet code parameter.
setTitle($title="")
Sets the title string of the assQuestion object.
setObjId($obj_id=0)
Set the object id of the container object.
copyObject($target_questionpool_id, $title="")
Copies an assJavaApplet object.
setComment($comment="")
Sets the comment string of the assQuestion object.
setJavaCode($java_code="")
Sets the java applet code parameter.
setOwner($owner="")
Sets the creator/owner ID of the assQuestion object.