4 require_once
'Modules/Test/classes/class.ilTestQuestionSetConfig.php';
75 return $this->sourceQuestionPoolTitle;
85 $this->sourceQuestionPoolTitle = $sourceQuestionPoolTitle;
168 foreach($dataArray as $field => $value)
189 $res = $this->db->queryF(
190 "SELECT * FROM tst_dyn_quest_set_cfg WHERE test_fi = %s",
191 array(
'integer'), array($this->testOBJ->getTestId())
194 while(
$row = $this->db->fetchAssoc(
$res) )
236 $aff = $this->db->manipulateF(
237 "DELETE FROM tst_dyn_quest_set_cfg WHERE test_fi = %s",
238 array(
'integer'), array($this->testOBJ->getTestId())
252 $res = $this->db->queryF(
253 "SELECT COUNT(*) cnt FROM tst_dyn_quest_set_cfg WHERE test_fi = %s",
254 array(
'integer'), array($testId)
259 return (
bool)
$row[
'cnt'];
270 $this->db->update(
'tst_dyn_quest_set_cfg',
280 'test_fi' => array(
'integer', $testId)
293 $this->db->insert(
'tst_dyn_quest_set_cfg', array(
294 'test_fi' => array(
'integer', $testId),
358 if( !count($poolRefs) )
360 $sourceQuestionPoolSummaryString = sprintf(
361 $lng->
txt(
'tst_dyn_quest_set_src_qpl_summary_string_deleted'),
365 return $sourceQuestionPoolSummaryString;
368 foreach($poolRefs as $refId)
370 if( !$this->tree->isDeleted($refId) )
372 $sourceQuestionPoolSummaryString = sprintf(
373 $lng->
txt(
'tst_dynamic_question_set_source_questionpool_summary_string'),
379 return $sourceQuestionPoolSummaryString;
383 $sourceQuestionPoolSummaryString = sprintf(
384 $lng->
txt(
'tst_dyn_quest_set_src_qpl_summary_string_trashed'),
389 return $sourceQuestionPoolSummaryString;
398 SELECT COUNT(*) num from qpl_questions
399 WHERE obj_fi = %s AND original_id IS NULL
402 $res = $this->db->queryF(
420 foreach( $poolRefs as $refId )
422 if( !$this->tree->isDeleted($refId) )
449 if( count($poolRefs) )
470 if( !$this->testOBJ->participantDataExist() )
477 case 'ilobjtestdynamicquestionsetconfiggui':
479 case 'ilmdeditorgui':
480 case 'ilpermissiongui':
488 'infoScreen',
'participants',
'npSetFilter',
'npResetFilter',
489 'deleteAllUserResults',
'confirmDeleteAllUserResults',
490 'deleteSingleUserResults',
'confirmDeleteSelectedUserData',
'cancelDeleteSelectedUserData'
493 if( in_array(
$cmd, $cmds) )
507 'settings',
'manscoring',
'scoringadjust',
'statistics',
'history',
'export'
515 if( $this->sourceQuestionPoolRefIds === null )
531 FROM tst_dyn_quest_set_cfg
533 ON tst_tests.test_id = tst_dyn_quest_set_cfg.test_fi
534 WHERE source_qpl_fi = %s
539 require_once
'Modules/Test/classes/class.ilDynamicTestQuestionChangeListener.php';
544 $questionChangeListener->addTestObjId(
$row[
'obj_fi'] );
547 return $questionChangeListener;