ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAnswerFrequencyStatisticTableGUI.php
Go to the documentation of this file.
1 <?php
2 
22 
24 {
25  protected ilLanguage $language;
29  protected ilCtrl $ctrl;
30  protected int $questionIndex;
31  protected bool $actionsColumnEnabled = false;
32  protected string $additionalHtml = '';
33 
37  public function __construct(
38  ilTestCorrectionsGUI $a_parent_obj,
39  string $a_parent_cmd,
40  protected readonly assQuestion $question
41  ) {
43  global $DIC;
44 
45  $this->language = $DIC['lng'];
46  $this->ui_factory = $DIC['ui.factory'];
47  $this->ui_renderer = $DIC['ui.renderer'];
48  $this->refinery = $DIC['refinery'];
49  $this->ctrl = $DIC['ilCtrl'];
50 
51  $this->setId('tstAnswerStatistic');
52  $this->setPrefix('tstAnswerStatistic');
53  $this->setTitle($this->language->txt('tst_corrections_answers_tbl'));
54 
55  $this->setRowTemplate('tpl.tst_corrections_answer_row.html', 'components/ILIAS/Test');
56 
57  parent::__construct($a_parent_obj, $a_parent_cmd, $a_template_context = '');
58 
59  $this->setDefaultOrderDirection('asc');
60  $this->setDefaultOrderField('answer');
61  }
62 
63  public function isActionsColumnEnabled(): bool
64  {
66  }
67 
68  public function setActionsColumnEnabled(bool $actionsColumnEnabled): void
69  {
70  $this->actionsColumnEnabled = $actionsColumnEnabled;
71  }
72 
73  public function getAdditionalHtml(): string
74  {
75  return $this->additionalHtml;
76  }
77 
78  public function setAdditionalHtml(string $additional_html): void
79  {
80  $this->additionalHtml = $additional_html;
81  }
82 
83  public function addAdditionalHtml(string $additional_html): void
84  {
85  $this->additionalHtml .= $additional_html;
86  }
87 
88  public function getQuestionIndex(): int
89  {
90  return $this->questionIndex;
91  }
92 
93  public function setQuestionIndex(int $questionIndex): void
94  {
95  $this->questionIndex = $questionIndex;
96  }
97 
98  public function initColumns(): void
99  {
100  $this->addColumn($this->language->txt('tst_corr_answ_stat_tbl_header_answer'), '');
101  $this->addColumn($this->language->txt('tst_corr_answ_stat_tbl_header_frequency'), '');
102 
103  foreach ($this->getData() as $row) {
104  if (isset($row['addable'])) {
105  $this->setActionsColumnEnabled(true);
106  $this->addColumn('');
107  break;
108  }
109  }
110  }
111 
112  public function fillRow(array $a_set): void
113  {
114  $this->tpl->setCurrentBlock('answer');
115  $this->tpl->setVariable('ANSWER', ilHtmlPurifierFactory::getInstanceByType('qpl_usersolution')->purify($a_set['answer']));
116  $this->tpl->parseCurrentBlock();
117 
118  $this->tpl->setCurrentBlock('frequency');
119  $this->tpl->setVariable('FREQUENCY', $a_set['frequency']);
120  $this->tpl->parseCurrentBlock();
121 
122  if ($this->isActionsColumnEnabled()) {
123  if (isset($a_set['addable'])) {
124  $this->tpl->setCurrentBlock('actions');
125  $this->tpl->setVariable('ACTIONS', $this->buildAddAnswerAction($a_set));
126  $this->tpl->parseCurrentBlock();
127  } else {
128  $this->tpl->setCurrentBlock('actions');
129  $this->tpl->touchBlock('actions');
130  $this->tpl->parseCurrentBlock();
131  }
132  }
133  }
134 
135  protected function buildAddAnswerAction($data): string
136  {
137  $data['question_id'] = $this->question->getId();
138  $data['question_index'] = $this->getQuestionIndex();
139 
140  $modal = (new ilAddAnswerFormBuilder(
141  $this->ui_factory,
142  $this->refinery,
143  $this->language,
144  $this->ctrl
145  ))->buildAddAnswerModal($this->question->getTitleForHTMLOutput(), $data);
146 
147  $show_modal_button = $this->ui_factory->button()->standard(
148  $this->language->txt('tst_corr_add_as_answer_btn'),
149  $modal->getShowSignal()
150  );
151 
152  $this->addAdditionalHtml($this->ui_renderer->render($modal));
153 
154  return $this->ui_renderer->render($show_modal_button);
155  }
156 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setId(string $a_val)
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setDefaultOrderDirection(string $a_defaultorderdirection)
static getInstanceByType(string $type)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__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)
__construct(?object $a_parent_obj, string $a_parent_cmd="", string $a_template_context="")
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
setPrefix(string $a_prefix)