ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailOptionsGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
29 {
30  private readonly ilGlobalTemplateInterface $tpl;
31  private readonly ilCtrlInterface $ctrl;
32  private readonly ilLanguage $lng;
33  private readonly ilSetting $settings;
34  private readonly ilObjUser $user;
36  protected Refinery $refinery;
39 
40  public function __construct(
42  ?ilCtrlInterface $ctrl = null,
43  ?ilLanguage $lng = null,
44  ?ilObjUser $user = null,
45  ?GlobalHttpState $http = null,
46  ?Refinery $refinery = null,
47  ?ilMailOptions $mail_options = null
48  ) {
49  global $DIC;
50  $this->tpl = $tpl ?? $DIC->ui()->mainTemplate();
51  $this->ctrl = $ctrl ?? $DIC->ctrl();
52  $this->lng = $lng ?? $DIC->language();
53  $this->user = $user ?? $DIC->user();
54  $this->http = $http ?? $DIC->http();
55  $this->refinery = $refinery ?? $DIC->refinery();
56  $this->mail_options = $mail_options ?? new ilMailOptions($this->user->getId());
57 
58  $this->lng->loadLanguageModule('mail');
59  $this->ctrl->saveParameter($this, 'mobj_id');
60  }
61 
62  public function executeCommand(): void
63  {
64  if (!$this->mail_options->mayManageInvididualSettings()) {
65  $referrer = '';
66  if ($this->http->wrapper()->query()->has('referrer')) {
67  $referrer = $this->http->wrapper()->query()->retrieve(
68  'referrer',
69  $this->refinery->kindlyTo()->string()
70  );
71  }
72  if (strtolower(ilPersonalSettingsGUI::class) === strtolower($referrer)) {
73  $this->ctrl->redirectByClass(ilPersonalSettingsGUI::class);
74  }
75  $this->ctrl->redirectByClass(ilMailGUI::class);
76  }
77 
78  if (!($cmd = $this->ctrl->getCmd())) {
79  $cmd = 'showOptions';
80  }
81  $this->$cmd();
82  }
83 
84  public function setForm(ilMailOptionsFormGUI $form): void
85  {
86  $this->form = $form;
87  }
88 
89  protected function getForm(): ilMailOptionsFormGUI
90  {
91  return $this->form ?? new ilMailOptionsFormGUI(
92  $this->mail_options,
93  $this,
94  'saveOptions'
95  );
96  }
97 
98  protected function saveOptions(): void
99  {
100  $this->tpl->setTitle($this->lng->txt('mail'));
101 
102  $form = $this->getForm();
103  if ($form->save()) {
104  $this->tpl->setOnScreenMessage('success', $this->lng->txt('mail_options_saved'), true);
105  $this->ctrl->redirect($this, 'showOptions');
106  }
107 
108  $this->showOptions($form);
109  }
110 
111  protected function showOptions(?ilMailOptionsFormGUI $form = null): void
112  {
113  if (null === $form) {
114  $form = $this->getForm();
115  $form->populate();
116  } else {
117  $form->setValuesByPost();
118  }
119 
120  $this->tpl->setContent($form->getHTML());
121  $this->tpl->printToStdout();
122  }
123 }
ilMailOptionsFormGUI $form
setForm(ilMailOptionsFormGUI $form)
readonly ilCtrlInterface $ctrl
__construct(?ilGlobalTemplateInterface $tpl=null, ?ilCtrlInterface $ctrl=null, ?ilLanguage $lng=null, ?ilObjUser $user=null, ?GlobalHttpState $http=null, ?Refinery $refinery=null, ?ilMailOptions $mail_options=null)
readonly ilGlobalTemplateInterface $tpl
readonly ilLanguage $lng
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
Class ilMailOptionsFormGUI.
readonly ilSetting $settings
global $DIC
Definition: shib_login.php:22
form( $class_path, string $cmd, string $submit_caption="")
showOptions(?ilMailOptionsFormGUI $form=null)
readonly ilObjUser $user