ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTestAnswerOptionalQuestionsConfirmationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
29  protected ?string $cancelCmd;
30 
31  protected ?string $confirmCmd;
32 
33  public function __construct(ilLanguage $lng)
34  {
35  $this->lng = $lng;
36 
37  $this->cancelCmd = null;
38  $this->confirmCmd = null;
39 
41  }
42 
43  public function getCancelCmd(): ?string
44  {
45  return $this->cancelCmd;
46  }
47 
48  public function setCancelCmd(string $cancelCmd): void
49  {
50  $this->cancelCmd = $cancelCmd;
51  }
52 
53  public function getConfirmCmd(): ?string
54  {
55  return $this->confirmCmd;
56  }
57 
58  public function setConfirmCmd(string $confirmCmd): void
59  {
60  $this->confirmCmd = $confirmCmd;
61  }
62 
63  public function build(bool $isFixedTest): void
64  {
65  $this->setHeaderText($this->buildHeaderText($isFixedTest));
66  $this->setCancel($this->lng->txt('back'), $this->getCancelCmd());
67  $this->setConfirm($this->lng->txt('proceed'), $this->getConfirmCmd());
68  }
69 
70  private function buildHeaderText(bool $isFixedTest): string
71  {
72  if ($isFixedTest) {
73  return $this->lng->txt('tst_optional_questions_confirmation_fixed_test');
74  }
75 
76  return $this->lng->txt('tst_optional_questions_confirmation_non_fixed_test');
77  }
78 }
setHeaderText(string $a_headertext)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setCancel(string $a_txt, string $a_cmd, string $a_id='')
setConfirm(string $a_txt, string $a_cmd, string $a_id='')
__construct(Container $dic, ilPlugin $plugin)