3 declare(strict_types=0);
39 $this->course_obj = $a_course_obj;
42 $this->
http = $DIC->http();
45 $this->
lng->loadLanguageModule(
'crs');
47 $this->
addColumn($this->
lng->txt(
'title'),
'title',
'33%');
48 $this->
addColumn($this->
lng->txt(
'crs_objective_self_assessment'),
'self',
'33%%');
49 $this->
addColumn($this->
lng->txt(
'crs_objective_final_test'),
'final',
'33%');
52 $this->
setRowTemplate(
"tpl.crs_questions_table_row.html",
"Modules/Course");
56 $this->
enable(
'select_all');
61 protected function fillRow(array $a_set): void
63 static $row_counter = 1;
65 $this->tpl->setVariable(
'VAL_TITLE', $a_set[
'title']);
66 if (strlen($a_set[
'description']) !== 0) {
67 $this->tpl->setVariable(
'VAL_DESC', $a_set[
'description']);
70 foreach ($a_set[
'self_tests'] as $tst) {
71 foreach ($tst[
'questions'] as $qst) {
72 $this->tpl->setCurrentBlock(
'self_qst');
73 $this->tpl->setVariable(
'SELF_QST_TITLE', $qst[
'title']);
74 if (strlen($qst[
'description']) !== 0) {
75 $this->tpl->setVariable(
'SELF_QST_DESCRIPTION', $qst[
'description']);
77 $this->tpl->setVariable(
'SELF_QST_POINTS', $qst[
'points']);
78 $this->tpl->setVariable(
'SELF_QST_TXT_POINTS', $this->
lng->txt(
'crs_objective_points'));
79 $this->tpl->parseCurrentBlock();
81 $this->tpl->setCurrentBlock(
'self_tst');
82 $this->tpl->setVariable(
'SELF_TST_TITLE', $tst[
'title']);
83 if (strlen($tst[
'description']) !== 0) {
84 $this->tpl->setVariable(
'SELF_TST_DESC', $tst[
'description']);
87 $this->tpl->setVariable(
'SELF_TYPE_ALT', $this->
lng->txt(
'obj_tst'));
88 $this->tpl->parseCurrentBlock();
90 if (count($a_set[
'self_tests']) > 0) {
91 $this->tpl->setVariable(
'SELF_TXT_ALL_POINTS', $this->
lng->txt(
'crs_objective_all_points'));
92 $this->tpl->setVariable(
'SELF_TXT_POINTS', $this->
lng->txt(
'crs_objective_points'));
93 $this->tpl->setVariable(
'SELF_TXT_REQ_POINTS', $this->
lng->txt(
'crs_obj_required_points'));
94 $this->tpl->setVariable(
'SELF_POINTS', $a_set[
'self_max_points']);
95 $this->tpl->setVariable(
'SELF_ID', $a_set[
'id']);
96 $this->tpl->setVariable(
'SELF_LIMIT', $a_set[
'self_limit']);
99 foreach ($a_set[
'final_tests'] as $tst) {
100 foreach ($tst[
'questions'] as $qst) {
101 $this->tpl->setCurrentBlock(
'final_qst');
102 $this->tpl->setVariable(
'FINAL_QST_TITLE', $qst[
'title']);
103 if (strlen($qst[
'description']) !== 0) {
104 $this->tpl->setVariable(
'FINAL_QST_DESCRIPTION', $qst[
'description']);
106 $this->tpl->setVariable(
'FINAL_QST_POINTS', $qst[
'points']);
107 $this->tpl->setVariable(
'FINAL_QST_TXT_POINTS', $this->
lng->txt(
'crs_objective_points'));
108 $this->tpl->parseCurrentBlock();
110 $this->tpl->setCurrentBlock(
'final_tst');
111 $this->tpl->setVariable(
'FINAL_TST_TITLE', $tst[
'title']);
112 if (strlen($tst[
'description']) !== 0) {
113 $this->tpl->setVariable(
'FINAL_TST_DESC', $tst[
'description']);
116 $this->tpl->setVariable(
'FINAL_TYPE_ALT', $this->
lng->txt(
'obj_tst'));
117 $this->tpl->parseCurrentBlock();
119 if (count($a_set[
'final_tests']) > 0) {
120 $this->tpl->setVariable(
'FINAL_TXT_ALL_POINTS', $this->
lng->txt(
'crs_objective_all_points'));
121 $this->tpl->setVariable(
'FINAL_TXT_POINTS', $this->
lng->txt(
'crs_objective_points'));
122 $this->tpl->setVariable(
'FINAL_TXT_REQ_POINTS', $this->
lng->txt(
'crs_obj_required_points'));
123 $this->tpl->setVariable(
'FINAL_POINTS', $a_set[
'final_max_points']);
124 $this->tpl->setVariable(
'FINAL_ID', $a_set[
'id']);
125 $this->tpl->setVariable(
'FINAL_LIMIT', $a_set[
'final_limit']);
129 public function parse(array $a_objective_ids): void
131 $post_self_limits = [];
132 if ($this->
http->wrapper()->post()->has(
'self')) {
133 $post_self_limits = $this->
http->wrapper()->post()->retrieve(
135 $this->
refinery->kindlyTo()->dictOf(
136 $this->
refinery->kindlyTo()->float()
140 $post_final_limits = [];
141 if ($this->
http->wrapper()->post()->has(
'final')) {
142 $post_final_limits = $this->
http->wrapper()->post()->retrieve(
144 $this->
refinery->kindlyTo()->dictOf(
145 $this->
refinery->kindlyTo()->float()
151 foreach ($a_objective_ids as $objective_id) {
158 foreach ($question_obj->getSelfAssessmentTests() as $tmp_test) {
159 if (isset($post_self_limits[$objective_id])) {
160 $objective_data[
'self_limit'] = (float) $post_self_limits[$objective_id];
162 $objective_data[
'self_limit'] = $tmp_test[
'limit'];
164 $questions = array();
165 foreach ($question_obj->getQuestionsOfTest($tmp_test[
'obj_id']) as $tmp_question) {
166 $qst[
'title'] = $tmp_question[
'title'];
167 $qst[
'description'] = $tmp_question[
'description'];
168 $qst[
'points'] = $tmp_question[
'points'];
172 $tst[
'questions'] = $questions;
178 $objective_data[
'self_tests'] = $tests;
179 $objective_data[
'self_max_points'] = $question_obj->getSelfAssessmentPoints();
183 foreach ($question_obj->getFinalTests() as $tmp_test) {
184 if (isset($post_final_limits[$objective_id])) {
185 $objective_data[
'final_limit'] = (float) $post_final_limits[$objective_id];
187 $objective_data[
'final_limit'] = $tmp_test[
'limit'];
190 $questions = array();
191 foreach ($question_obj->getQuestionsOfTest($tmp_test[
'obj_id']) as $tmp_question) {
192 $qst[
'title'] = $tmp_question[
'title'];
193 $qst[
'description'] = $tmp_question[
'description'];
194 $qst[
'points'] = $tmp_question[
'points'];
198 $tst[
'questions'] = $questions;
205 $objective_data[
'final_tests'] = $tests;
206 $objective_data[
'final_max_points'] = $question_obj->getFinalTestPoints();
208 $objective_data[
'id'] = $objective_id;
209 $objective_data[
'title'] = $objective->getTitle();
211 $objective_data[
'description'] = $objective->getDescription();
enable(string $a_module_name)
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setFormName(string $a_name="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(object $a_parent_obj, ilObject $a_course_obj)
static http()
Fetches the global http state from ILIAS.
static _lookupTitle(int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static _lookupDescription(int $obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
class ilcourseobjectiveQuestion
parse(array $a_objective_ids)