19 require_once
'./Modules/TestQuestionPool/classes/class.assQuestion.php';
20 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
21 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilObjQuestionScoringAdjustable.php';
22 require_once
'./Modules/TestQuestionPool/interfaces/interface.iQuestionCondition.php';
63 $this->parameters = array();
77 if (strlen($this->title)
103 $ilDB = $DIC[
'ilDB'];
107 array( $this->
getId() )
111 ) .
" (question_fi, width, height, applet, params) VALUES (%s, %s, %s, %s, %s)",
112 array(
"integer",
"integer",
"integer",
"text",
"text" ),
156 $ilDB = $DIC[
'ilDB'];
157 $result =
$ilDB->queryF(
162 if ($result->numRows() == 1) {
164 $this->
setId($question_id);
167 $this->
setComment((
string) $data[
"description"]);
175 include_once(
"./Services/RTE/classes/class.ilRTE.php");
190 $result =
$ilDB->queryF(
195 if ($result->numRows() == 1) {
196 $data =
$ilDB->fetchAssoc($result);
200 $this->parameters = unserialize($data[
"params"], [
"allowed_classes" =>
false]);
201 if (!is_array($this->parameters)) {
207 parent::loadFromDb($question_id);
219 if ($this->
id <= 0) {
224 $this_id = $this->
getId();
228 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
232 if ((
int) $testObjId > 0) {
233 $clone->setObjId($testObjId);
254 $clone->copyPageOfQuestion($this_id);
256 $clone->copyXHTMLMediaObjectsOfQuestion($this_id);
258 $clone->duplicateApplet($this_id, $thisObjId);
260 $clone->onDuplicate($thisObjId, $this_id, $clone->getObjId(), $clone->getId());
274 if ($this->
getId() <= 0) {
275 throw new RuntimeException(
'The question has not been saved. It cannot be duplicated');
279 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
282 $source_questionpool_id = $this->
getObjId();
283 $clone->setObjId($target_questionpool_id);
294 $clone->copyApplet(
$original_id, $source_questionpool_id);
296 $clone->onCopy($source_questionpool_id,
$original_id, $clone->getObjId(), $clone->getId());
303 if ($this->
getId() <= 0) {
304 throw new RuntimeException(
'The question has not been saved. It cannot be duplicated');
307 include_once(
"./Modules/TestQuestionPool/classes/class.assQuestion.php");
310 $sourceParentId = $this->
getObjId();
316 $clone->setObjId($targetParentId);
318 if ($targetQuestionTitle) {
319 $clone->setTitle($targetQuestionTitle);
324 $clone->copyPageOfQuestion($sourceQuestionId);
326 $clone->copyXHTMLMediaObjectsOfQuestion($sourceQuestionId);
328 $clone->copyApplet($sourceQuestionId, $sourceParentId);
330 $clone->onCopy($sourceParentId, $sourceQuestionId, $clone->getObjId(), $clone->getId());
341 $flashpath_original = preg_replace(
"/([^\d])$this->id([^\d])/",
"\${1}$question_id\${2}", $flashpath);
343 if ((
int) $objectId > 0) {
344 $flashpath_original = str_replace(
"/$this->obj_id/",
"/$objectId/", $flashpath_original);
347 if (!file_exists($flashpath)) {
351 if (!copy($flashpath_original .
$filename, $flashpath . $filename)) {
352 print
"flash applet could not be duplicated!!!! ";
362 protected function copyApplet($question_id, $source_questionpool): void
365 $flashpath_original = preg_replace(
"/([^\d])$this->id([^\d])/",
"\${1}$question_id\${2}", $flashpath);
366 $flashpath_original = str_replace(
"/$this->obj_id/",
"/$source_questionpool/", $flashpath_original);
367 if (!file_exists($flashpath)) {
371 if (!copy($flashpath_original .
$filename, $flashpath . $filename)) {
372 print
"flash applet could not be copied!!!! ";
399 if ($returndetails) {
400 throw new ilTestException(
'return details not implemented for ' . __METHOD__);
404 $ilDB = $DIC[
'ilDB'];
406 $found_values = array();
407 if (is_null($pass)) {
425 if (isset($solution[
'points'])) {
426 $points += $solution[
'points'];
437 $params = array(
'http' => array(
441 if ($optional_headers !== null) {
442 $params[
'http'][
'header'] = $optional_headers;
444 $ctx = stream_context_create(
$params);
445 $fp = @fopen(
$url,
'rb',
false, $ctx);
447 throw new Exception(
"Problem with $url, " . error_get_last());
451 throw new Exception(
"Problem reading data from $url, " . error_get_last());
467 if (!empty($tmpfile)) {
468 $flashfile = str_replace(
" ",
"_", $flashfile);
470 if (!file_exists($flashpath)) {
474 $result = $flashfile;
519 return "assFlashQuestion";
532 return "qpl_qst_flash";
564 $text = parent::getRTETextWithMediaObjects();
573 parent::setExportDetailsXLS($worksheet, $startrow, $active_id, $pass);
575 return $startrow + 1;
591 public function fromXML($item,
int $questionpool_id, ?
int $tst_id, &$tst_object,
int &$question_counter, array $import_mapping, array &$solutionhints = []): array
593 include_once
"./Modules/TestQuestionPool/classes/import/qti12/class.assFlashQuestionImport.php";
595 return $import->fromXML($item, $questionpool_id, $tst_id, $tst_object, $question_counter, $import_mapping);
605 public function toXML($a_include_header =
true, $a_include_binary =
true, $a_shuffle =
false, $test_output =
false, $force_image_references =
false): string
607 include_once
"./Modules/TestQuestionPool/classes/export/qti12/class.assFlashQuestionExport.php";
609 return $export->toXML($a_include_header, $a_include_binary, $a_shuffle, $test_output, $force_image_references);
620 $user_solution = array();
621 return $user_solution;
629 $this->height = $a_height;
642 $this->width = $a_width;
652 $this->applet = $a_applet;
662 $this->parameters[
$name] = $value;
670 $this->parameters = array();
676 unset($this->parameters[
$name]);
681 $this->parameters = array();
704 return parent::buildTestPresentationConfig()
707 ->setBackgroundChangeDetectionEnabled(
true);
static _replaceMediaObjectImageSrc(string $a_text, int $a_direction=0, string $nic='')
Replaces image source from mob image urls with the mob id or replaces mob id with the correct image s...
setFormChangeDetectionEnabled($enableFormChangeDetection)
Set if the detection of form changes is enabled.
setNrOfTries(int $a_nr_of_tries)
static get(string $a_var)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstance($identifier)
getBestSolution($active_id, $pass)
Returns the best solution for a given pass of a participant.
__construct( $title="", $comment="", $author="", $owner=-1, $question="")
assFlashQuestion constructor
isComplete()
Returns true, if a single choice question is complete for use.
copyApplet($question_id, $source_questionpool)
Copy the flash applet.
saveAdditionalQuestionDataToDb()
Saves a record to the question types additional data table.
getRTETextWithMediaObjects()
Collects all text in the question which could contain media objects which were created with the Rich ...
duplicate(bool $for_test=true, string $title="", string $author="", string $owner="", $testObjId=null)
Duplicates an assFlashQuestion.
sendToHost($url, $data, $optional_headers=null)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Abstract basic class which is to be extended by the concrete assessment question type classes...
getAdditionalTableName()
Returns the name of the additional question data table in the database.
ensureNonNegativePoints($points)
buildTestPresentationConfig()
Get the test question configuration.
static _getOriginalId(int $question_id)
calculateReachedPointsFromPreviewSession(ilAssQuestionPreviewSession $previewSession)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getParticipantsSolution()
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
setComment(string $comment="")
duplicateApplet(int $question_id, $objectId=null)
float $points
The maximum available points for the question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
savePreviewData(ilAssQuestionPreviewSession $previewSession)
saveToDb($original_id="")
Saves a assFlashQuestion object to a database.
setExportDetailsXLS(ilAssExcelFormatHelper $worksheet, int $startrow, int $active_id, int $pass)
{}
toXML($a_include_header=true, $a_include_binary=true, $a_shuffle=false, $test_output=false, $force_image_references=false)
Returns a QTI xml representation of the question and sets the internal domxml variable with the DOM X...
getFlashPath()
Returns the image path for web accessable flash files of a question.
getAnswerTableName()
Returns the name of the answer table in the database.
fromXML($item, int $questionpool_id, ?int $tst_id, &$tst_object, int &$question_counter, array $import_mapping, array &$solutionhints=[])
Creates a question from a QTI file.
addParameter($name, $value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
deleteAnswers($question_id)
Deletes datasets from answers tables.
setSuggestedSolution(string $solution_id="", int $subquestion_index=0, bool $is_import=false)
Sets a suggested solution for the question.
calculateReachedPoints($active_id, $pass=null, $authorizedSolution=true, $returndetails=false)
Returns the points, a learner has reached answering the question.
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
createNewOriginalFromThisDuplicate($targetParentId, $targetQuestionTitle="")
string $question
The question text.
deductHintPointsFromReachedPoints(ilAssQuestionPreviewSession $previewSession, $reachedPoints)
loadFromDb($question_id)
Loads a assFlashQuestion object from a database.
saveQuestionDataToDb(int $original_id=-1)
getSolutionMaxPass(int $active_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
setOriginalId(?int $original_id)
setTitle(string $title="")
setLifecycle(ilAssQuestionLifecycle $lifecycle)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveWorkingData($active_id, $pass=null, $authorized=true)
Saves the learners input of the question to the database.
moveAppletIfExists()
Moves an applet file (maybe stored in the PHP session) to its final filesystem destination.
getCurrentSolutionResultSet(int $active_id, int $pass, bool $authorized=true)
static rename(string $a_source, string $a_target)
getQuestionType()
Returns the question type of the question.
setAuthor(string $author="")
static clear(string $a_var)
copyObject($target_questionpool_id, $title="")
Copies an assFlashQuestion object.
setAdditionalContentEditingMode(?string $additionalContentEditingMode)
static getDraftInstance()
getMaximumPoints()
Returns the maximum points, a learner can reach answering the question.
static getRootLogger()
The unique root logger has a fixed error level.
setQuestion(string $question="")
moveUploadedFile($tmpfile, $flashfile)
Uploads a flash file.