44 $this->skillQuestionAssignmentList = $assignmentList;
70 $this->
setId(
'assQstSkl');
73 $this->
setStyle(
'table',
'fullwidth');
75 $this->
setRowTemplate(
"tpl.tst_skl_qst_assignment_row.html",
"Modules/Test");
82 public function init(): void
91 $this->
lng->txt(
'tst_save_comp_points')
106 $this->
addColumn($this->
lng->txt(
'tst_question'),
'question',
'25%');
107 $this->
addColumn($this->
lng->txt(
'tst_competence'),
'competence',
'');
108 $this->
addColumn($this->
lng->txt(
'tst_comp_eval_mode'),
'eval_mode',
'13%');
109 $this->
addColumn($this->
lng->txt(
'tst_comp_points'),
'points',
'12%');
110 $this->
addColumn($this->
lng->txt(
'actions'),
'actions',
'20%');
115 $assignments = $this->skillQuestionAssignmentList->getAssignmentsByQuestionId($a_set[
'question_id']);
117 $this->
ctrl->setParameter($this->parent_obj,
'question_id', $a_set[
'question_id']);
119 $this->tpl->setCurrentBlock(
'question_title');
120 $this->tpl->setVariable(
'ROWSPAN', $this->
getRowspan($assignments));
121 $this->tpl->setVariable(
'QUESTION_TITLE', $a_set[
'title']);
122 $this->tpl->setVariable(
'QUESTION_DESCRIPTION', $a_set[
'description']);
123 $this->tpl->parseCurrentBlock();
125 $this->tpl->setCurrentBlock(
'tbl_content');
127 for (
$i = 0, $numAssigns = count($assignments);
$i < $numAssigns;
$i++) {
129 $assignment = $assignments[
$i];
131 $this->tpl->setCurrentBlock(
'actions_col');
133 $this->tpl->parseCurrentBlock();
135 $this->tpl->setCurrentBlock(
'tbl_content');
137 $this->tpl->setVariable(
'COMPETENCE', $assignment->getSkillTitle());
138 $this->tpl->setVariable(
'COMPETENCE_PATH', $assignment->getSkillPath());
144 $this->tpl->setVariable(
'SKILL_POINTS', $assignment->getMaxSkillPoints());
148 $this->tpl->parseCurrentBlock();
150 $this->tpl->setCurrentBlock(
'tbl_content');
151 $this->tpl->setVariable(
"CSS_ROW", $this->css_row);
156 $this->tpl->setCurrentBlock(
'actions_col');
158 $this->tpl->parseCurrentBlock();
160 $this->tpl->setCurrentBlock(
'tbl_content');
161 } elseif (!$numAssigns) {
162 $this->tpl->setCurrentBlock(
'actions_col');
163 $this->tpl->setVariable(
'ACTION',
' ');
164 $this->tpl->parseCurrentBlock();
166 $this->tpl->setCurrentBlock(
'tbl_content');
172 $cnt = count($assignments);
187 $href = $this->
ctrl->getLinkTarget(
192 $label = $this->
lng->txt(
'tst_manage_competence_assigns');
199 $this->
ctrl->setParameter($this->parent_obj,
'skill_base_id', $assignment->
getSkillBaseId());
200 $this->
ctrl->setParameter($this->parent_obj,
'skill_tref_id', $assignment->
getSkillTrefId());
202 $href = $this->
ctrl->getLinkTarget(
208 $label = $this->
lng->txt(
'tst_edit_competence_assign');
210 $label = $this->
lng->txt(
'tst_view_competence_assign');
213 $this->
ctrl->setParameter($this->parent_obj,
'skill_base_id', null);
214 $this->
ctrl->setParameter($this->parent_obj,
'skill_tref_id', null);
221 return "<a href=\"{$href}\" title=\"{$label}\">{$label}</a>";
246 $href = $this->
ctrl->getLinkTarget(
251 $label = $this->
lng->txt(
'tst_assign_competence');
254 return implode(
'<br />', $actions);
260 return $this->
lng->txt(
'qpl_skill_point_eval_mode_solution_compare');
263 return $this->
lng->txt(
'qpl_skill_point_eval_mode_quest_result');
268 $assignmentKey = implode(
':', array(
273 $points = isset($_POST[
'skill_points'][$assignmentKey]) ?
ilUtil::stripSlashes($_POST[
'skill_points'][$assignmentKey]) :
'';
278 return "<input type\"text\" size=\"2\" name=\"skill_points[{$assignmentKey}]\" value=\"{$points}\" />";
const CMD_SHOW_SKILL_SELECT
enable(string $a_module_name)
setFormAction(string $a_form_action, bool $a_multipart=false)
setManipulationsEnabled($manipulationsEnabled)
loadSkillPointsFromRequest($loadSkillPointsFromRequest)
buildActionLink($href, $label)
buildSkillPointsInput(ilAssQuestionSkillAssignment $assignment)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
const CMD_SAVE_SKILL_POINTS
areManipulationsEnabled()
$skillQuestionAssignmentList
$loadSkillPointsFromRequest
setStyle(string $a_element, string $a_style)
buildActionColumnHTML($assignments)
setSkillQuestionAssignmentList(ilAssQuestionSkillAssignmentList $assignmentList)
__construct($parentOBJ, $parentCmd, ilCtrl $ctrl, ilLanguage $lng)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
getEvalModeLabel(ilAssQuestionSkillAssignment $assignment)
getCompetenceAssignPropertiesFormLink(ilAssQuestionSkillAssignment $assignment)
__construct(Container $dic, ilPlugin $plugin)
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)
getManageCompetenceAssignsActionLink()
const CMD_SHOW_SKILL_QUEST_ASSIGN_PROPERTIES_FORM
isSkillPointInputRequired(ilAssQuestionSkillAssignment $assignment)
setPrefix(string $a_prefix)