ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAssQuestionRelatedNavigationBarGUI.php
Go to the documentation of this file.
1 <?php
2 
26 {
30  protected $ctrl;
31 
35  protected $lng;
36 
38 
40 
42 
44 
45  protected $hintRequestsExist;
46 
47  protected $hintRequestCmd;
48 
49  protected $hintListCmd;
50 
52  {
53  $this->ctrl = $ctrl;
54  $this->lng = $lng;
55  }
56 
57  public function getHintListCmd()
58  {
59  return $this->hintListCmd;
60  }
61 
62  public function setHintListCmd($hintListCmd): void
63  {
64  $this->hintListCmd = $hintListCmd;
65  }
66 
67  public function getHintRequestCmd()
68  {
69  return $this->hintRequestCmd;
70  }
71 
72  public function setHintRequestCmd($hintRequestCmd): void
73  {
74  $this->hintRequestCmd = $hintRequestCmd;
75  }
76 
78  {
79  $this->hintRequestsExist = $hintRequestsExist;
80  }
81 
82  public function doesHintRequestsExist()
83  {
85  }
86 
88  {
89  $this->hintRequestsPossible = $hintRequestsPossible;
90  }
91 
92  public function areHintRequestsPossible()
93  {
95  }
96 
98  {
99  $this->hintProvidingEnabled = $hintProvidingEnabled;
100  }
101 
102  public function isHintProvidingEnabled()
103  {
105  }
106 
107  public function setInstantResponseEnabled($instantFeedbackEnabled): void
108  {
109  $this->instantResponseEnabled = $instantFeedbackEnabled;
110  }
111 
112  public function isInstantResponseEnabled()
113  {
115  }
116 
118  {
119  $this->instantResponseCmd = $instantResponseCmd;
120  }
121 
122  public function getInstantResponseCmd()
123  {
125  }
126 
127  public function getHTML(): string
128  {
129  $navTpl = new ilTemplate('tpl.qst_question_related_navigation.html', true, true, 'components/ILIAS/TestQuestionPool');
130 
131  $parseQuestionRelatedNavigation = false;
132 
133  if ($this->isInstantResponseEnabled()) {
134  $navTpl->setCurrentBlock("direct_feedback");
135  $navTpl->setVariable("CMD_SHOW_INSTANT_RESPONSE", $this->getInstantResponseCmd());
136  $navTpl->setVariable("TEXT_SHOW_INSTANT_RESPONSE", $this->lng->txt("check"));
137  $navTpl->parseCurrentBlock();
138 
139  $parseQuestionRelatedNavigation = true;
140  }
141 
142  if ($this->isHintProvidingEnabled()) {
143  if ($this->areHintRequestsPossible()) {
144  if ($this->doesHintRequestsExist()) {
145  $buttonText = $this->lng->txt("button_request_next_question_hint");
146  } else {
147  $buttonText = $this->lng->txt("button_request_question_hint");
148  }
149 
150  $navTpl->setCurrentBlock("button_request_next_question_hint");
151  $navTpl->setVariable("CMD_REQUEST_NEXT_QUESTION_HINT", $this->getHintRequestCmd());
152  $navTpl->setVariable("TEXT_REQUEST_NEXT_QUESTION_HINT", $buttonText);
153  $navTpl->parseCurrentBlock();
154 
155  $parseQuestionRelatedNavigation = true;
156  }
157 
158  if ($this->doesHintRequestsExist()) {
159  $navTpl->setCurrentBlock("button_show_requested_question_hints");
160  $navTpl->setVariable("CMD_SHOW_REQUESTED_QUESTION_HINTS", $this->getHintListCmd());
161  $navTpl->setVariable("TEXT_SHOW_REQUESTED_QUESTION_HINTS", $this->lng->txt("show_requested_question_hints"));
162  $navTpl->parseCurrentBlock();
163 
164  $parseQuestionRelatedNavigation = true;
165  }
166  }
167 
168  if ($parseQuestionRelatedNavigation) {
169  $navTpl->setCurrentBlock("question_related_navigation");
170  $navTpl->parseCurrentBlock();
171  }
172 
173  return $navTpl->get();
174  }
175 }