ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTestNavigationToolbarGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
31 {
32  private bool $suspendTestButtonEnabled = false;
33  private bool $questionTreeVisible = false;
34  private bool $finishTestButtonEnabled = false;
35  private string $finishTestCommand = '';
36  private bool $finishTestButtonPrimary = false;
37  private bool $disabledStateEnabled = false;
39  protected bool $user_pass_overview_button_enabled = false;
40 
41  public function __construct(
42  protected ilCtrlInterface $ctrl,
43  protected ilTestPlayerAbstractGUI $player_gui
44  ) {
46  }
47 
51  public function isSuspendTestButtonEnabled(): bool
52  {
54  }
55 
59  public function setSuspendTestButtonEnabled($suspendTestButtonEnabled)
60  {
61  $this->suspendTestButtonEnabled = $suspendTestButtonEnabled;
62  }
63 
64  public function isUserPassOverviewEnabled(): bool
65  {
67  }
68 
69  public function setUserPassOverviewEnabled(bool $user_pass_overview_button_enabled): void
70  {
71  $this->user_pass_overview_button_enabled = $user_pass_overview_button_enabled;
72  }
73 
74  public function isQuestionTreeVisible(): bool
75  {
77  }
78 
79  public function setQuestionTreeVisible(bool $questionTreeVisible): void
80  {
81  $this->questionTreeVisible = $questionTreeVisible;
82  }
83 
84  public function isFinishTestButtonEnabled(): bool
85  {
87  }
88 
92  public function setFinishTestButtonEnabled($finishTestButtonEnabled)
93  {
94  $this->finishTestButtonEnabled = $finishTestButtonEnabled;
95  }
96 
100  public function getFinishTestCommand(): string
101  {
103  }
104 
108  public function setFinishTestCommand($finishTestCommand)
109  {
110  $this->finishTestCommand = $finishTestCommand;
111  }
112 
116  public function isFinishTestButtonPrimary(): bool
117  {
119  }
120 
124  public function setFinishTestButtonPrimary($finishTestButtonPrimary)
125  {
126  $this->finishTestButtonPrimary = $finishTestButtonPrimary;
127  }
128 
132  public function isDisabledStateEnabled(): bool
133  {
135  }
136 
140  public function setDisabledStateEnabled($disabledStateEnabled)
141  {
142  $this->disabledStateEnabled = $disabledStateEnabled;
143  }
144 
145  public function build()
146  {
147  if ($this->isUserPassOverviewEnabled()) {
148  $this->addPassOverviewButton();
149  }
150 
151  if ($this->isSuspendTestButtonEnabled()) {
152  $this->addSuspendTestButton();
153  }
154 
155  if ($this->isFinishTestButtonEnabled()) {
156  $this->addStickyItem($this->retrieveFinishTestButton());
157  }
158  }
159 
160  private function addSuspendTestButton()
161  {
162  $button = $this->ui->factory()->button()->standard(
163  $this->lng->txt('cancel_test'),
164  ''
167  $this->ctrl->getLinkTarget($this->player_gui, ilTestPlayerCommands::SUSPEND_TEST)
168  )
169  );
170  $this->addComponent($button);
171  }
172 
173  private function addPassOverviewButton()
174  {
175  $button = $this->ui->factory()->button()->standard(
176  $this->lng->txt('question_summary_btn'),
177  ''
180  $this->ctrl->getLinkTarget($this->player_gui, ilTestPlayerCommands::QUESTION_SUMMARY)
181  )
182  );
183  $this->addComponent($button);
184  }
185 
186  private function retrieveFinishTestButton(): Button
187  {
188  $target = $this->ctrl->getLinkTarget($this->player_gui, $this->getFinishTestCommand());
189  if ($this->player_gui->getObject()->getMainSettings()->getFinishingSettings()->getShowAnswerOverview()
191  $target = $this->ctrl->getLinkTargetByClass('ilTestSubmissionReviewGUI', 'show');
192  }
193 
194  $button = $this->getStandardOrPrimaryFinishButtonInstance();
195  return $button->withAdditionalOnLoadCode(
196  $this->buildCheckNavigationClosure($target)
197  );
198  }
199 
201  {
202  if ($this->isFinishTestButtonPrimary()) {
203  return $this->ui->factory()->button()->primary($this->lng->txt('finish_test'), '');
204  }
205 
206  return $this->ui->factory()->button()->standard($this->lng->txt('finish_test'), '');
207  }
208 
209  private function buildCheckNavigationClosure(string $target): Closure
210  {
211  return static function (string $id) use ($target): string {
212  return "document.getElementById('$id').addEventListener('click', "
213  . '(e) => {'
214  . " il.TestPlayerQuestionEditControl.checkNavigation('{$target}', 'show', e);"
215  . '});';
216  };
217  }
218 }
setFinishTestButtonEnabled($finishTestButtonEnabled)
addComponent(\ILIAS\UI\Component\Component $a_comp)
setSuspendTestButtonEnabled($suspendTestButtonEnabled)
setQuestionTreeVisible(bool $questionTreeVisible)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(protected ilCtrlInterface $ctrl, protected ilTestPlayerAbstractGUI $player_gui)
setUserPassOverviewEnabled(bool $user_pass_overview_button_enabled)
setFinishTestButtonPrimary($finishTestButtonPrimary)
__construct(Container $dic, ilPlugin $plugin)
addStickyItem( $a_item, bool $a_output_label=false)
Add a sticky item.