26 protected \ILIAS\DI\UIServices
$ui;
34 bool $a_read_only =
false 38 $this->
ctrl = $DIC->ctrl();
39 $this->
lng = $DIC->language();
40 $ilCtrl = $DIC->ctrl();
41 $lng = $DIC->language();
42 $this->
ui = $DIC->ui();
44 $this->
object = $a_survey_obj;
45 $this->read_only = $a_read_only;
49 $this->
setId(
"il_svy_qst");
52 $edit_manager = $DIC->survey()
57 if (!$this->read_only) {
59 if (count($edit_manager->getMoveSurveyQuestions()) === 0 ||
60 $edit_manager->getMoveSurveyId() !== $this->
object->getId()) {
86 if (!$this->read_only) {
94 $this->
setRowTemplate(
"tpl.il_svy_svy_question_table.html",
"Modules/Survey");
106 $survey_questions = $this->
object->getSurveyQuestions();
107 if (count($survey_questions) > 0) {
110 $questionpools = $this->
object->getQuestionpoolTitles(
true);
112 $table_data = array();
113 $last_questionblock_id = $position = $block_position = 0;
114 foreach ($survey_questions as $question_id =>
$data) {
116 if (
$data[
"questionblock_id"] > 0 &&
117 $data[
"questionblock_id"] != $last_questionblock_id) {
118 $id =
"qb_" .
$data[
"questionblock_id"];
120 $table_data[
$id] = array(
"id" =>
$id,
122 "title" =>
$data[
"questionblock_title"]);
124 if (!$this->read_only) {
126 if (count($survey_questions) > 1) {
128 $table_data[
$id][
"position"] = $position;
131 $ilCtrl->setParameter($this->parent_obj,
"bl_id",
$data[
"questionblock_id"]);
132 $table_data[
$id][
"url"] = $ilCtrl->getLinkTarget($this->parent_obj,
"editQuestionblock");
133 $ilCtrl->setParameter($this->parent_obj,
"bl_id",
"");
143 $table_data[
$id] = array(
"id" =>
$id,
144 "type" =>
"question",
145 "heading" =>
$data[
"heading"],
146 "title" =>
$data[
"title"],
147 "description" =>
$data[
"description"],
148 "author" =>
$data[
"author"],
149 "block_id" =>
$data[
"questionblock_id"],
150 "obligatory" => (
bool)
$data[
"obligatory"]);
153 foreach ($questiontypes as $trans => $typedata) {
154 if (strcmp($typedata[
"type_tag"], $data[
"type_tag"]) === 0) {
155 $table_data[
$id][
"question_type"] = $trans;
160 if ($data[
"original_id"]) {
162 if (isset($questionpools[$original_fi])) {
163 $table_data[
$id][
"pool"] = $questionpools[$original_fi];
166 $table_data[
$id][
"pool"] =
"-";
170 if (!$this->read_only) {
171 if ($data[
"obj_fi"] > 0) {
173 $q_gui = $data[
"type_tag"] .
"GUI";
174 $ilCtrl->setParameterByClass($q_gui,
"q_id",
$id);
175 $table_data[
$id][
"url"] = $ilCtrl->getLinkTargetByClass($q_gui,
"editQuestion") .
176 $ilCtrl->setParameterByClass($q_gui,
"q_id",
"");
180 if (count($survey_questions) > 1) {
181 if (!$data[
"questionblock_id"]) {
183 $table_data[
$id][
"position"] = $position;
185 $block_position += 10;
186 $table_data[
$id][
"position"] = $block_position;
191 $last_questionblock_id = $data[
"questionblock_id"];
198 protected function fillRow(array $a_set): void
205 switch ($a_set[
"type"]) {
207 if (!$this->read_only) {
209 $this->tpl->setCurrentBlock(
"checkable");
210 $this->tpl->setVariable(
"QUESTION_ID", $a_set[
"id"]);
211 $this->tpl->parseCurrentBlock();
214 if ($a_set[
"position"]) {
215 $this->tpl->setCurrentBlock(
"order");
216 $this->tpl->setVariable(
"ORDER_NAME",
"order[" . $a_set[
"id"] .
"]");
217 $this->tpl->setVariable(
"ORDER_VALUE", $a_set[
"position"]);
218 $this->tpl->parseCurrentBlock();
222 $this->tpl->setVariable(
"TYPE",
$lng->
txt(
"questionblock"));
226 $this->tpl->setVariable(
"DESCRIPTION", $a_set[
"description"]);
227 $this->tpl->setVariable(
"TYPE", $a_set[
"question_type"]);
228 $this->tpl->setVariable(
"AUTHOR", $a_set[
"author"]);
229 $this->tpl->setVariable(
"POOL", $a_set[
"pool"] ??
"");
231 if ($a_set[
"heading"] ??
false) {
232 $this->tpl->setCurrentBlock(
"heading");
233 $this->tpl->setVariable(
"TXT_HEADING", $a_set[
"heading"]);
234 $this->tpl->parseCurrentBlock();
237 if ($a_set[
"block_id"]) {
238 $this->tpl->setVariable(
"TITLE_INDENT",
" style=\"padding-left:30px\"");
241 if (!$this->read_only) {
243 $this->tpl->setCurrentBlock(
"checkable");
244 $this->tpl->setVariable(
"QUESTION_ID", $a_set[
"id"]);
245 $this->tpl->parseCurrentBlock();
247 if ($a_set[
"block_id"]) {
248 $this->tpl->setVariable(
"CHECKABLE_INDENT",
" style=\"padding-left:30px\"");
252 if ($a_set[
"position"] ??
false) {
253 $this->tpl->setCurrentBlock(
"order");
254 if (!$a_set[
"block_id"]) {
255 $this->tpl->setVariable(
"ORDER_NAME",
"order[q_" . $a_set[
"id"] .
"]");
257 $this->tpl->setVariable(
"ORDER_NAME",
"block_order[" . $a_set[
"block_id"] .
"][" . $a_set[
"id"] .
"]");
259 $this->tpl->setVariable(
"ORDER_VALUE", $a_set[
"position"]);
260 $this->tpl->parseCurrentBlock();
261 if ($a_set[
"block_id"]) {
262 $this->tpl->setVariable(
"ORDER_INDENT",
" style=\"padding-left:30px\"");
267 $checked = $a_set[
"obligatory"] ?
" checked=\"checked\"" :
"";
268 $obligatory =
"<input type=\"checkbox\" name=\"obligatory[" .
269 $a_set[
"id"] .
"]\" value=\"1\"" . $checked .
" />";
270 } elseif ($a_set[
"obligatory"]) {
271 $obligatory = $this->
ui->renderer()->render(
275 $this->tpl->setVariable(
"OBLIGATORY", $obligatory);
279 if (!$this->read_only) {
281 $this->tpl->setCurrentBlock(
"checkable");
282 $this->tpl->setVariable(
"QUESTION_ID", $a_set[
"id"]);
283 $this->tpl->parseCurrentBlock();
284 if ($a_set[
"in_block"]) {
285 $this->tpl->setVariable(
"CHECKABLE_INDENT",
" style=\"padding-left:30px\"");
286 $this->tpl->setVariable(
"TITLE_INDENT",
" style=\"padding-left:30px\"");
290 $this->tpl->setVariable(
"TYPE",
$lng->
txt(
"heading"));
294 if (!$this->read_only) {
295 $this->tpl->setCurrentBlock(
"actions");
297 $ilCtrl->setParameter($this->parent_obj,
"q_id", $a_set[
"id"]);
300 $list->setId($a_set[
"id"]);
301 $list->setListTitle(
$lng->
txt(
"actions"));
303 $list->addItem(
$lng->
txt(
"edit"),
"", $a_set[
"url"]);
306 if ($a_set[
"heading"] ??
false) {
308 $lng->
txt(
"survey_edit_heading"),
310 $ilCtrl->getLinkTarget($this->parent_obj,
"editheading")
314 $lng->
txt(
"survey_delete_heading"),
316 $ilCtrl->getLinkTarget($this->parent_obj,
"removeheading")
318 } elseif ($a_set[
"type"] ===
"question") {
322 $ilCtrl->getLinkTarget($this->parent_obj,
"addHeading")
326 $this->tpl->setVariable(
"ACTION", $list->getHTML());
328 $ilCtrl->setParameter($this->parent_obj,
"q_id",
"");
330 $this->tpl->parseCurrentBlock();
334 $this->tpl->setCurrentBlock(
"title_edit");
335 $this->tpl->setVariable(
"TITLE", $a_set[
"title"]);
336 $this->tpl->setVariable(
"URL_TITLE", $a_set[
"url"]);
338 $this->tpl->setCurrentBlock(
"title_static");
339 $this->tpl->setVariable(
"TITLE", $a_set[
"title"]);
342 $this->tpl->setCurrentBlock(
"title_static");
343 $this->tpl->setVariable(
"TITLE", $a_set[
"title"]);
345 $this->tpl->parseCurrentBlock();
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
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="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
__construct(object $a_parent_obj, string $a_parent_cmd, ilObjSurvey $a_survey_obj, bool $a_read_only=false)
setDefaultOrderField(string $a_defaultorderfield)
static lookupObjFi(int $a_qid)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
static _getQuestiontypes()
Get all available question types.
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)
addMultiCommand(string $a_cmd, string $a_text)