26 protected \ILIAS\Survey\InternalGUIService
$gui;
27 protected \ILIAS\DI\UIServices
$ui;
35 bool $a_read_only =
false 39 $this->
ctrl = $DIC->ctrl();
40 $this->
lng = $DIC->language();
41 $ilCtrl = $DIC->ctrl();
42 $lng = $DIC->language();
43 $this->
ui = $DIC->ui();
45 $this->
object = $a_survey_obj;
46 $this->read_only = $a_read_only;
50 $this->
setId(
"il_svy_qst");
53 $edit_manager = $DIC->survey()
58 $this->gui = $DIC->survey()
61 if (!$this->read_only) {
63 if ((!($edit_manager->getQuestionClipboardMode($this->object->getRefId()) ===
"copy" && count($edit_manager->getQuestionClipboardQuestions($this->object->getRefId())) > 0))
64 && (count($edit_manager->getMoveSurveyQuestions()) === 0 ||
65 $edit_manager->getMoveSurveyId() !== $this->
object->getId())) {
91 if (!$this->read_only) {
99 $this->
setRowTemplate(
"tpl.il_svy_svy_question_table.html",
"components/ILIAS/Survey");
111 $survey_questions = $this->
object->getSurveyQuestions();
112 if (count($survey_questions) > 0) {
115 $questionpools = $this->
object->getQuestionpoolTitles(
true);
117 $table_data = array();
118 $last_questionblock_id = $position = $block_position = 0;
119 foreach ($survey_questions as $question_id =>
$data) {
121 if (
$data[
"questionblock_id"] > 0 &&
122 $data[
"questionblock_id"] != $last_questionblock_id) {
123 $id =
"qb_" .
$data[
"questionblock_id"];
125 $table_data[
$id] = array(
"id" =>
$id,
127 "title" =>
$data[
"questionblock_title"]);
129 if (!$this->read_only) {
131 if (count($survey_questions) > 1) {
133 $table_data[
$id][
"position"] = $position;
136 $ilCtrl->setParameter($this->parent_obj,
"bl_id",
$data[
"questionblock_id"]);
137 $table_data[
$id][
"url"] = $ilCtrl->getLinkTarget($this->parent_obj,
"editQuestionblock");
138 $ilCtrl->setParameter($this->parent_obj,
"bl_id",
"");
148 $table_data[
$id] = array(
"id" =>
$id,
149 "type" =>
"question",
150 "heading" =>
$data[
"heading"],
151 "title" =>
$data[
"title"],
152 "description" =>
$data[
"description"],
153 "author" =>
$data[
"author"],
154 "block_id" =>
$data[
"questionblock_id"],
155 "obligatory" => (
bool)
$data[
"obligatory"]);
158 foreach ($questiontypes as $trans => $typedata) {
159 if (strcmp($typedata[
"type_tag"], $data[
"type_tag"]) === 0) {
160 $table_data[
$id][
"question_type"] = $trans;
165 if ($data[
"original_id"]) {
167 if (isset($questionpools[$original_fi])) {
168 $table_data[
$id][
"pool"] = $questionpools[$original_fi];
171 $table_data[
$id][
"pool"] =
"-";
175 if (!$this->read_only) {
176 if ($data[
"obj_fi"] > 0) {
178 $q_gui = $data[
"type_tag"] .
"GUI";
179 $ilCtrl->setParameterByClass($q_gui,
"q_id",
$id);
180 $table_data[
$id][
"url"] = $ilCtrl->getLinkTargetByClass($q_gui,
"editQuestion") .
181 $ilCtrl->setParameterByClass($q_gui,
"q_id",
"");
185 if (count($survey_questions) > 1) {
186 if (!$data[
"questionblock_id"]) {
188 $table_data[
$id][
"position"] = $position;
190 $block_position += 10;
191 $table_data[
$id][
"position"] = $block_position;
196 $last_questionblock_id = $data[
"questionblock_id"];
203 protected function fillRow(array $a_set): void
207 $ui_factory = $this->gui->ui()->factory();
208 $ui_renderer = $this->gui->ui()->renderer();
212 switch ($a_set[
"type"]) {
214 if (!$this->read_only) {
216 $this->tpl->setCurrentBlock(
"checkable");
217 $this->tpl->setVariable(
"QUESTION_ID", $a_set[
"id"]);
218 $this->tpl->parseCurrentBlock();
221 if ($a_set[
"position"]) {
222 $this->tpl->setCurrentBlock(
"order");
223 $this->tpl->setVariable(
"ORDER_NAME",
"order[" . $a_set[
"id"] .
"]");
224 $this->tpl->setVariable(
"ORDER_VALUE", $a_set[
"position"]);
225 $this->tpl->parseCurrentBlock();
229 $this->tpl->setVariable(
"TYPE",
$lng->
txt(
"questionblock"));
233 $this->tpl->setVariable(
"DESCRIPTION", $a_set[
"description"]);
234 $this->tpl->setVariable(
"TYPE", $a_set[
"question_type"]);
235 $this->tpl->setVariable(
"AUTHOR", $a_set[
"author"]);
236 $this->tpl->setVariable(
"POOL", $a_set[
"pool"] ??
"");
238 if ($a_set[
"heading"] ??
false) {
239 $this->tpl->setCurrentBlock(
"heading");
240 $this->tpl->setVariable(
"TXT_HEADING", $a_set[
"heading"]);
241 $this->tpl->parseCurrentBlock();
244 if ($a_set[
"block_id"]) {
245 $this->tpl->setVariable(
"TITLE_INDENT",
" style=\"padding-left:30px\"");
248 if (!$this->read_only) {
250 $this->tpl->setCurrentBlock(
"checkable");
251 $this->tpl->setVariable(
"QUESTION_ID", $a_set[
"id"]);
252 $this->tpl->parseCurrentBlock();
254 if ($a_set[
"block_id"]) {
255 $this->tpl->setVariable(
"CHECKABLE_INDENT",
" style=\"padding-left:30px\"");
259 if ($a_set[
"position"] ??
false) {
260 $this->tpl->setCurrentBlock(
"order");
261 if (!$a_set[
"block_id"]) {
262 $this->tpl->setVariable(
"ORDER_NAME",
"order[q_" . $a_set[
"id"] .
"]");
264 $this->tpl->setVariable(
"ORDER_NAME",
"block_order[" . $a_set[
"block_id"] .
"][" . $a_set[
"id"] .
"]");
266 $this->tpl->setVariable(
"ORDER_VALUE", $a_set[
"position"]);
267 $this->tpl->parseCurrentBlock();
268 if ($a_set[
"block_id"]) {
269 $this->tpl->setVariable(
"ORDER_INDENT",
" style=\"padding-left:30px\"");
274 $checked = $a_set[
"obligatory"] ?
" checked=\"checked\"" :
"";
275 $obligatory =
"<input type=\"checkbox\" name=\"obligatory[" .
276 $a_set[
"id"] .
"]\" value=\"1\"" . $checked .
" />";
277 } elseif ($a_set[
"obligatory"]) {
278 $obligatory = $this->
ui->renderer()->render(
282 $this->tpl->setVariable(
"OBLIGATORY", $obligatory);
286 if (!$this->read_only) {
288 $this->tpl->setCurrentBlock(
"checkable");
289 $this->tpl->setVariable(
"QUESTION_ID", $a_set[
"id"]);
290 $this->tpl->parseCurrentBlock();
291 if ($a_set[
"in_block"]) {
292 $this->tpl->setVariable(
"CHECKABLE_INDENT",
" style=\"padding-left:30px\"");
293 $this->tpl->setVariable(
"TITLE_INDENT",
" style=\"padding-left:30px\"");
297 $this->tpl->setVariable(
"TYPE",
$lng->
txt(
"heading"));
301 if (!$this->read_only) {
302 $this->tpl->setCurrentBlock(
"actions");
304 $ilCtrl->setParameter($this->parent_obj,
"q_id", $a_set[
"id"]);
309 $actions[] = $ui_factory->link()->standard(
315 if ($a_set[
"heading"] ??
false) {
316 $actions[] = $ui_factory->link()->standard(
317 $lng->
txt(
"survey_edit_heading"),
318 $ilCtrl->getLinkTarget($this->parent_obj,
"editheading")
321 $actions[] = $ui_factory->link()->standard(
322 $lng->
txt(
"survey_delete_heading"),
323 $ilCtrl->getLinkTarget($this->parent_obj,
"removeheading")
325 } elseif ($a_set[
"type"] ===
"question") {
326 $actions[] = $ui_factory->link()->standard(
328 $ilCtrl->getLinkTarget($this->parent_obj,
"addHeading")
330 $actions[] = $ui_factory->link()->standard(
332 $ilCtrl->getLinkTarget($this->parent_obj,
"copyQuestion")
336 $dd = $ui_factory->dropdown()->standard($actions);
338 $this->tpl->setVariable(
"ACTION", $ui_renderer->render($dd));
340 $ilCtrl->setParameter($this->parent_obj,
"q_id",
"");
342 $this->tpl->parseCurrentBlock();
346 $this->tpl->setCurrentBlock(
"title_edit");
347 $this->tpl->setVariable(
"TITLE", $a_set[
"title"]);
348 $this->tpl->setVariable(
"URL_TITLE", $a_set[
"url"]);
350 $this->tpl->setCurrentBlock(
"title_static");
351 $this->tpl->setVariable(
"TITLE", $a_set[
"title"]);
354 $this->tpl->setCurrentBlock(
"title_static");
355 $this->tpl->setVariable(
"TITLE", $a_set[
"title"]);
357 $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)
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)
ILIAS Survey InternalGUIService $gui
static lookupObjFi(int $a_qid)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
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)