19 declare(strict_types=0);
48 $this->
logger = $DIC->logger()->crs();
49 $this->objectDataCache = $DIC[
'ilObjDataCache'];
50 $this->db = $DIC->database();
51 $this->tree = $DIC->repositoryTree();
53 $this->objective_id = $a_objective_id;
64 $ilDB = $DIC->database();
65 $query =
'SELECT objective_id FROM crs_objective_qst ' .
66 'WHERE question_id = ' .
$ilDB->quote($a_qid,
'integer');
68 $objectiveIds = array();
70 $objectiveIds[] = (
int) $row->objective_id;
79 $ilDB = $DIC->database();
81 $query =
"SELECT qst_ass_id FROM crs_objective_qst " .
82 "WHERE ref_id = " .
$ilDB->quote($a_test_id,
'integer') .
" " .
83 "AND objective_id = " .
$ilDB->quote($a_objective_id,
'integer');
85 return (
bool)
$res->numRows();
91 $mappings = $cwo->getMappings();
93 $mapping_key = $question[
'ref_id'] .
'_question_' . $question[
'question_id'];
94 if (!isset($mappings[$mapping_key]) || !$mappings[$mapping_key]) {
97 $question_ref_id = $question[
'ref_id'];
98 $question_obj_id = $question[
'obj_id'];
99 $question_qst_id = $question[
'question_id'];
100 $new_ref_id = (
int) $mappings[$question_ref_id];
101 $new_obj_id = $this->objectDataCache->lookupObjId($new_ref_id);
103 if ($new_obj_id == $question_obj_id) {
104 $this->
logger->info(
'Test has been linked. Keeping question id');
106 $new_question_id = $question_qst_id;
108 $new_question_info = $mappings[$question_ref_id .
'_question_' . $question_qst_id];
109 $new_question_arr = explode(
'_', $new_question_info);
110 if (!isset($new_question_arr[2]) || !$new_question_arr[2]) {
111 $this->
logger->debug(
'found invalid format of question id mapping: ' . print_r(
117 $new_question_id = $new_question_arr[2];
118 $this->
logger->info(
'New question id is: ' . $new_question_id);
123 $new_question->setTestRefId($new_ref_id);
124 $new_question->setTestObjId($new_obj_id);
125 $new_question->setQuestionId($new_question_id);
126 $new_question->add();
130 foreach ($this->
getTests() as $test) {
131 if (!isset($mappings[
"$test[ref_id]"])) {
134 $new_test_id = $mappings[
"$test[ref_id]"];
136 $query =
"UPDATE crs_objective_tst " .
137 "SET tst_status = " . $this->db->quote($test[
'tst_status'],
'integer') .
", " .
138 "tst_limit_p = " . $this->db->quote($test[
'tst_limit'],
'integer') .
" " .
139 "WHERE objective_id = " . $this->db->quote($a_new_objective,
'integer') .
" " .
140 "AND ref_id = " . $this->db->quote($new_test_id,
'integer');
149 $tree = $DIC->repositoryTree();
156 $this->tst_status = $a_status;
166 $this->tst_limit = $a_limit;
176 $query =
"UPDATE crs_objective_tst " .
177 "SET tst_status = " . $this->db->quote($this->
getTestStatus(),
'integer') .
" " .
178 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" " .
179 "AND ref_id = " . $this->db->quote($this->
getTestRefId(),
'integer') .
" ";
183 $query =
"SELECT * FROM crs_objective_tst " .
184 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" " .
185 "AND ref_id = " . $this->db->quote($this->
getTestRefId(),
'integer') .
"";
188 if (
$res->numRows()) {
193 $query =
"SELECT tst_limit_p FROM crs_objective_tst " .
194 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" " .
195 "AND tst_status = " . $this->db->quote($this->
getTestStatus(),
'integer') .
" ";
201 $limit = (
int) $row->tst_limit_p;
204 $next_id = $this->db->nextId(
'crs_objective_tst');
205 $query =
"INSERT INTO crs_objective_tst (test_objective_id,objective_id,ref_id,obj_id,tst_status,tst_limit_p) " .
207 $this->db->quote($next_id,
'integer') .
", " .
209 $this->db->quote($this->
getTestRefId(),
'integer') .
", " .
210 $this->db->quote($this->
getTestObjId(),
'integer') .
", " .
212 $this->db->quote($limit,
'integer') .
" " .
220 $query =
"DELETE FROM crs_objective_qst " .
221 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" " .
222 "AND ref_id = " . $this->db->quote($a_test_ref_id,
'integer') .
" ";
226 $query =
"DELETE FROM crs_objective_tst " .
227 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" " .
228 "AND ref_id = " . $this->db->quote($a_test_ref_id,
'integer') .
" ";
230 unset($this->tests[$a_test_ref_id]);
233 public static function _updateTestLimits(
int $a_objective_id,
int $a_status,
int $a_limit): void
237 $ilDB = $DIC[
'ilDB'];
239 $query =
"UPDATE crs_objective_tst " .
240 "SET tst_limit_p = " .
$ilDB->quote($a_limit,
'integer') .
" " .
241 "WHERE tst_status = " .
$ilDB->quote($a_status,
'integer') .
" " .
242 "AND objective_id = " .
$ilDB->quote($a_objective_id,
'integer');
248 $query =
"UPDATE crs_objective_tst " .
249 "SET tst_status = " . $this->db->quote($this->
getTestStatus(),
'integer') .
", " .
251 "WHERE test_objective_id = " . $this->db->quote($a_objective_id,
'integer') .
"";
257 $query =
"SELECT * FROM crs_objective_tst cot " .
258 "JOIN object_data obd ON cot.obj_id = obd.obj_id " .
259 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" " .
265 $test[
'test_objective_id'] = (
int) $row->test_objective_id;
266 $test[
'objective_id'] = (
int) $row->objective_id;
267 $test[
'ref_id'] = (
int) $row->ref_id;
268 $test[
'obj_id'] = (
int) $row->obj_id;
269 $test[
'tst_status'] = (
int) $row->tst_status;
270 $test[
'tst_limit'] = (
int) $row->tst_limit_p;
271 $test[
'title'] = (string) $row->title;
281 foreach ($this->tests as $test) {
292 foreach ($this->tests as $test) {
293 if ($test[
'status'] == self::TYPE_FINAL_TEST) {
300 public static function _getTest(
int $a_test_objective_id): array
304 $ilDB = $DIC->database();
305 $query =
"SELECT * FROM crs_objective_tst " .
306 "WHERE test_objective_id = " .
$ilDB->quote($a_test_objective_id,
'integer') .
" ";
311 $test[
'test_objective_id'] = (
int) $row->test_objective_id;
312 $test[
'objective_id'] = (
int) $row->objective_id;
313 $test[
'ref_id'] = (
int) $row->ref_id;
314 $test[
'obj_id'] = (
int) $row->obj_id;
315 $test[
'tst_status'] = (
int) $row->tst_status;
316 $test[
'tst_limit'] = (
int) $row->tst_limit_p;
330 foreach ($this->questions as $question) {
342 $points += $question[
'points'];
351 $points += $question[
'points'];
358 foreach ($this->questions as $question) {
359 if ($question[
'question_id'] == $a_question_id) {
368 foreach ($this->questions as $question) {
369 if ($question[
'question_id'] == $a_question_id) {
370 return $question[
'test_type'] === self::TYPE_FINAL_TEST;
379 foreach ($this->questions as $question) {
380 if ($question[
'test_type'] == self::TYPE_FINAL_TEST) {
381 $final[] = $question;
391 if ($a_test_id == $qst[
'obj_id']) {
400 if ($this->questions[$question_id]) {
414 $this->tst_ref_id = $a_ref_id;
424 $this->tst_obj_id = $a_obj_id;
434 $this->question_id = $a_question_id;
448 $points += $tmp_question->getMaximumPoints();
458 if ($question[
'ref_id'] == $a_test_ref_id) {
460 $points += $tmp_question->getMaximumPoints();
475 if ($question[
'ref_id'] == $a_test_ref_id) {
486 if ($question[
'ref_id'] == $a_test_ref_id) {
487 $qst[] = $question[
'question_id'];
496 foreach ($this->tests as $test_data) {
497 switch ($test_data[
'status']) {
502 case self::TYPE_FINAL_TEST:
506 if ($test_data[
'limit'] == -1 || $test_data[
'limit'] > $points) {
507 switch ($test_data[
'status']) {
512 case self::TYPE_FINAL_TEST:
516 $query =
"UPDATE crs_objective_tst " .
517 "SET tst_limit = " . $this->db->quote($points,
'integer') .
" " .
518 "WHERE test_objective_id = " . $this->db->quote($test_data[
'test_objective_id'],
'integer') .
" ";
524 public function add(): void
526 $query =
"DELETE FROM crs_objective_qst " .
527 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" " .
528 "AND question_id = " . $this->db->quote($this->
getQuestionId(),
'integer') .
" ";
531 $next_id = $this->db->nextId(
'crs_objective_qst');
532 $query =
"INSERT INTO crs_objective_qst (qst_ass_id, objective_id,ref_id,obj_id,question_id) " .
534 $this->db->quote($next_id,
'integer') .
", " .
536 $this->db->quote($this->
getTestRefId(),
'integer') .
", " .
537 $this->db->quote($this->
getTestObjId(),
'integer') .
", " .
546 public function delete(
int $qst_id):
void 552 $query =
"SELECT * FROM crs_objective_qst " .
553 "WHERE qst_ass_id = " . $this->db->quote($qst_id,
'integer') .
" ";
555 $test_rid = $test_oid = 0;
558 $test_rid = (
int) $row->ref_id;
559 $test_oid = (
int) $row->obj_id;
562 $query =
"DELETE FROM crs_objective_qst " .
563 "WHERE qst_ass_id = " . $this->db->quote($qst_id,
'integer') .
" ";
567 $query =
"SELECT * FROM crs_objective_qst " .
568 "WHERE ref_id = " . $this->db->quote($test_rid,
'integer') .
" " .
569 "AND obj_id = " . $this->db->quote($test_oid,
'integer') .
" " .
570 "AND objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" ";
573 if (
$res->numRows() === 0) {
583 $ilDB = $DIC->database();
584 $query =
'DELETE FROM crs_objective_tst ' .
585 'WHERE ref_id = ' .
$ilDB->quote($a_tst_ref_id,
'integer');
588 $query =
'DELETE FROM crs_objective_qst ' .
589 'WHERE ref_id = ' .
$ilDB->quote($a_tst_ref_id,
'integer');
596 $deletable_refs = array();
597 foreach ($this->tests as $tst_data) {
598 if ($tst_data[
'status'] == $a_type) {
599 $deletable_refs[] = $tst_data[
'ref_id'];
603 $query =
'DELETE from crs_objective_tst ' .
604 'WHERE objective_id = ' . $this->db->quote($this->
getObjectiveId(),
'integer') .
' ' .
605 'AND tst_status = ' . $this->db->quote($a_type,
'integer');
606 $this->db->manipulate(
$query);
608 $query =
'DELETE from crs_objective_tst ' .
609 'WHERE objective_id = ' . $this->db->quote($this->
getObjectiveId(),
'integer') .
' ' .
610 'AND ' . $this->db->in(
'ref_id', $deletable_refs,
false,
'integer');
611 $this->db->manipulate(
$query);
616 $query =
"DELETE FROM crs_objective_qst " .
617 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" ";
620 $query =
"DELETE FROM crs_objective_tst " .
621 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" ";
628 $container_ref_id = current($container_ref_ids);
631 $query =
"SELECT * FROM crs_objective_tst " .
632 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" ";
635 $this->tests[(
int) $row->ref_id][
'test_objective_id'] = (
int) $row->test_objective_id;
636 $this->tests[(
int) $row->ref_id][
'ref_id'] = (
int) $row->ref_id;
637 $this->tests[(
int) $row->ref_id][
'obj_id'] = (
int) $row->obj_id;
638 $this->tests[(
int) $row->ref_id][
'status'] = (
int) $row->tst_status;
639 $this->tests[(
int) $row->ref_id][
'limit'] = (
int) $row->tst_limit_p;
642 $this->questions = array();
643 $query =
"SELECT * FROM crs_objective_qst coq " .
644 "JOIN qpl_questions qq ON coq.question_id = qq.question_id " .
645 "WHERE objective_id = " . $this->db->quote($this->
getObjectiveId(),
'integer') .
" " .
650 if (!$this->tree->isInTree((
int) $row->ref_id) || !$this->tree->isGrandChild(
658 $this->
delete((
int) $row->question_id);
661 $qst[
'ref_id'] = (
int) $row->ref_id;
662 $qst[
'obj_id'] = (
int) $row->obj_id;
663 $qst[
'question_id'] = (
int) $row->question_id;
664 $qst[
'qst_ass_id'] = (
int) $row->qst_ass_id;
665 $qst[
'title'] = $question->getTitle();
666 $qst[
'description'] = $question->getComment();
667 $qst[
'test_type'] = (
int) $this->tests[(
int) $row->ref_id][
'status'];
668 $qst[
'points'] = (float) $question->getPoints();
670 $this->questions[(
int) $row->qst_ass_id] = $qst;
674 public static function _hasTests(
int $a_course_id): bool
678 $ilDB = $DIC[
'ilDB'];
680 $query =
"SELECT co.objective_id FROM crs_objectives co JOIN " .
681 "crs_objective_tst cot ON co.objective_id = cot.objective_id " .
682 "WHERE crs_id = " .
$ilDB->quote($a_course_id,
'integer') .
" ";
684 return (
bool)
$res->numRows();
687 public static function _isAssigned(
int $a_objective_id,
int $a_tst_ref_id,
int $a_question_id):
int 691 $ilDB = $DIC->database();
692 $query =
"SELECT crs_qst.objective_id objective_id FROM crs_objective_qst crs_qst, crs_objectives crs_obj " .
693 "WHERE crs_qst.objective_id = crs_obj.objective_id " .
694 "AND crs_qst.objective_id = " .
$ilDB->quote($a_objective_id,
'integer') .
" " .
695 "AND ref_id = " .
$ilDB->quote($a_tst_ref_id,
'integer') .
" " .
696 "AND question_id = " .
$ilDB->quote($a_question_id,
'integer') .
" ";
701 $objective_id = (
int) $row->objective_id;
710 $ilDB = $DIC->database();
711 $query =
'SELECT question_id FROM crs_objective_qst ' .
712 'WHERE objective_id = ' .
$ilDB->quote($a_objective,
'integer') .
' ' .
713 'AND obj_id = ' .
$ilDB->quote($a_test_id,
'integer');
716 $questions = array();
718 $questions[] = $row->question_id;
727 $ilDB = $DIC[
'ilDB'];
728 $query =
'SELECT tst_limit_p FROM crs_objective_tst ' .
729 'WHERE objective_id = ' .
$ilDB->quote($a_objective_id,
'integer') .
' ' .
730 'AND obj_id = ' .
$ilDB->quote($a_test_id,
'integer');
733 return (
int) $row->tst_limit_p;
740 foreach ($this->
getTests() as $test) {
745 'refId' => $test[
'ref_id'],
746 'testType' => $test[
'tst_status'],
747 'limit' => $test[
'tst_limit']
753 $writer->
xmlElement(
'Question', array(
'id' => $question_id));
isSelfAssessmentQuestion(int $a_question_id)
static _isTestAssignedToObjective(int $a_test_id, int $a_objective_id)
getNumberOfQuestionsByTest(int $a_test_ref_id)
static _getAssignableTests(int $a_container_ref_id)
getNodeData(int $a_node_id, ?int $a_tree_pk=null)
get all information of a node.
static getLogger(string $a_component_id)
Get component logger.
const TYPE_SELF_ASSESSMENT
static _lookupMaximumPointsOfQuestion(int $a_question_id)
static lookupQuestionsByObjective(int $a_test_id, int $a_objective)
isFinalTestQuestion(int $a_question_id)
setTestRefId(int $a_ref_id)
static _getAllReferences(int $id)
get all reference ids for object ID
getQuestionsByTest(int $a_test_ref_id)
getSelfAssessmentPoints()
setQuestionId(int $a_question_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
toXml(ilXmlWriter $writer)
getQuestionsOfTest(int $a_test_id)
static _lookupContainerIdByObjectiveId(int $a_objective_id)
static loookupTestLimit(int $a_test_id, int $a_objective_id)
setTestSuggestedLimit(int $a_limit)
static _instanciateQuestion($question_id)
Creates an instance of a question with a given question id.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
xmlEndTag(string $tag)
Writes an endtag.
__deleteTest(int $a_test_ref_id)
setTestObjId(int $a_obj_id)
static _getTest(int $a_test_objective_id)
getQuestion(int $question_id)
static _updateTestLimits(int $a_objective_id, int $a_status, int $a_limit)
__construct(int $a_objective_id=0)
ilObjectDataCache $objectDataCache
getMaxPointsByTest(int $a_test_ref_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
static _isAssigned(int $a_objective_id, int $a_tst_ref_id, int $a_question_id)
getSelfAssessmentQuestions()
static _getMaximumPoints(int $question_id)
Returns the maximum points, a learner can reach answering the question.
cloneDependencies(int $a_new_objective, int $a_copy_id)
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
static _getInstance(int $a_copy_id)
static _hasTests(int $a_course_id)
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
updateTest(int $a_objective_id)
static deleteTest(int $a_tst_ref_id)
deleteByTestType(int $a_type)
static lookupObjectivesOfQuestion(int $a_qid)
getSubTree(array $a_node, bool $a_with_data=true, array $a_type=[])
get all nodes in the subtree under specified node
class ilcourseobjectiveQuestion
const TYPE_SELF_ASSESSMENT
setTestStatus(int $a_status)
getMaxPointsByObjective()