20 public function __construct($a_parent_obj, $a_parent_cmd, $a_survey)
24 $this->ctrl = $DIC->ctrl();
25 $this->lng = $DIC->language();
26 $this->access = $DIC->access();
27 $ilCtrl = $DIC->ctrl();
28 $lng = $DIC->language();
29 $ilAccess = $DIC->access();
30 $lng = $DIC->language();
32 $this->
object = $a_survey;
41 $this->
addColumn($this->lng->txt(
"question"));
42 $this->
addColumn($this->lng->txt(
"survey_skill"));
43 $this->
addColumn($this->lng->txt(
"actions"));
46 $this->
setRowTemplate(
"tpl.svy_skill_ass_row.html",
"Modules/Survey");
63 $survey_questions = $this->
object->getSurveyQuestions();
65 if (count($survey_questions) > 0) {
66 $table_data = array();
67 $last_questionblock_id = $position = $block_position = 0;
68 foreach ($survey_questions as $question_id =>
$data) {
72 if (in_array(
$data[
"questiontype_fi"], array(2))) {
76 $id =
$data[
"question_id"];
78 $table_data[$id] = array(
"id" => $id,
80 "supported" => $supported,
81 "heading" =>
$data[
"heading"],
82 "title" =>
$data[
"title"],
83 "description" =>
$data[
"description"],
84 "author" =>
$data[
"author"],
85 "obligatory" => (
bool)
$data[
"obligatory"]);
100 $ilCtrl->setParameter($this->parent_obj,
"q_id", $a_set[
"id"]);
102 if ($a_set[
"supported"]) {
103 $this->tpl->setCurrentBlock(
"cmd");
104 $this->tpl->setVariable(
106 $ilCtrl->getLinkTarget(
108 "assignSkillToQuestion" 111 $this->tpl->setVariable(
"TXT_CMD",
$lng->txt(
"survey_assign_competence"));
112 $this->tpl->parseCurrentBlock();
114 if ($s = $this->skill_survey->getSkillForQuestion($a_set[
"id"])) {
115 $this->tpl->setCurrentBlock(
"cmd");
116 $this->tpl->setVariable(
118 $ilCtrl->getLinkTarget(
120 "removeSkillFromQuestion" 123 $this->tpl->setVariable(
"TXT_CMD",
$lng->txt(
"survey_remove_competence"));
124 $this->tpl->parseCurrentBlock();
126 $this->tpl->setVariable(
132 $path = $this->skill_tree->getSkillTreePath($s[
"base_skill_id"], $s[
"tref_id"]);
133 $path_nodes = array();
134 foreach ($path as $p) {
135 if ($p[
"child"] > 1 && $p[
"skill_id"] != $s[
"base_skill_id"]) {
139 $this->tpl->setVariable(
"PATH", implode(
" > ", $path_nodes));
140 $this->tpl->setVariable(
"COMP_ID",
"comp_" . $a_set[
"id"]);
143 $this->tpl->setVariable(
"NOT_SUPPORTED",
$lng->txt(
"svy_skl_comp_assignm_not_supported"));
146 $this->tpl->setVariable(
"QUESTION_TITLE", $a_set[
"title"]);
148 $ilCtrl->setParameter($this->parent_obj,
"q_id",
"");
getQuestions()
Get questions.
Skill/Competence handling in surveys.
TableGUI class for survey questions to skill assignment.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static _lookupTitle($a_obj_id, $a_tref_id=0)
Lookup Title.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct($a_parent_obj, $a_parent_cmd, $a_survey)
Constructor.
fillRow($a_set)
Fill table row.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.