ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailFolderGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
32 
37 {
38  // used as single element namespace for UrlBuilder
39  // added with '_' before parameter names in queries from the table
40  private const URL_BUILDER_PREFIX = 'ilMailFolderGUI';
41 
42  // controller parameters
43  private const PARAM_ACTION = 'action';
44  private const PARAM_FOLDER_ID = 'mobj_id';
45  private const PARAM_MAIL_ID = 'mail_id';
46  private const PARAM_USER_ID = 'user_id';
47  private const PARAM_TARGET_FOLDER = 'target_folder';
48  private const PARAM_INTERRUPTIVE_ITEMS = 'interruptive_items';
49 
50  // controller commands
51  private const CMD_ADD_SUB_FOLDER = 'addSubFolder';
52  private const CMD_DELETE_MAILS = 'deleteMails';
53  private const CMD_DELETE_SUB_FOLDER = 'deleteSubFolder';
54  private const CMD_DELIVER_FILE = 'deliverFile';
55  private const CMD_EMPTY_TRASH = 'emptyTrash';
56  private const CMD_MOVE_SINGLE_MAIL = 'moveSingleMail';
57  private const CMD_PRINT_MAIL = 'printMail';
58  private const CMD_RENAME_SUB_FOLDER = 'renameSubFolder';
59  private const CMD_SHOW_MAIL = 'showMail';
60  private const CMD_SHOW_FOLDER = 'showFolder';
61  private const CMD_SHOW_USER = 'showUser';
62  private const CMD_TABLE_ACTION = 'executeTableAction';
63 
64  private readonly ilGlobalTemplateInterface $tpl;
65  private readonly ilCtrlInterface $ctrl;
66  private readonly ilLanguage $lng;
67  private readonly ilToolbarGUI $toolbar;
68  private readonly ilTabsGUI $tabs;
69  private readonly ilObjUser $user;
70  private readonly GlobalHttpState $http;
71  private readonly Refinery $refinery;
72  private readonly ilErrorHandling $error;
73  private readonly Factory $ui_factory;
74  private readonly Renderer $ui_renderer;
75  private readonly ilUIService $ui_service;
76  private readonly DataFactory $data_factory;
77  private ilMail $umail;
78  private ilMailbox $mbox;
80 
81  public function __construct()
82  {
83  global $DIC;
84 
85  $this->tpl = $DIC->ui()->mainTemplate();
86  $this->ctrl = $DIC->ctrl();
87  $this->lng = $DIC->language();
88  $this->toolbar = $DIC->toolbar();
89  $this->user = $DIC->user();
90  $this->tabs = $DIC->tabs();
91  $this->http = $DIC->http();
92  $this->refinery = $DIC->refinery();
93  $this->error = $DIC['ilErr'];
94  $this->ui_factory = $DIC->ui()->factory();
95  $this->ui_renderer = $DIC->ui()->renderer();
96  $this->ui_service = $DIC->uiService();
97  $this->data_factory = new ILIAS\Data\Factory();
98  }
99 
103  protected function initRequest(): void
104  {
105  $this->umail = new ilMail($this->user->getId());
106  $this->mbox = new ilMailbox($this->user->getId());
107 
108  if ($this->http->wrapper()->post()->has(self::PARAM_FOLDER_ID)) {
109  $folder_id = $this->http->wrapper()->post()->retrieve(
110  self::PARAM_FOLDER_ID,
111  $this->refinery->kindlyTo()->int()
112  );
113  } elseif ($this->http->wrapper()->query()->has(self::PARAM_FOLDER_ID)) {
114  $folder_id = $this->http->wrapper()->query()->retrieve(
115  self::PARAM_FOLDER_ID,
116  $this->refinery->kindlyTo()->int()
117  );
118  } else {
119  $folder_id = $this->refinery->byTrying([
120  $this->refinery->kindlyTo()->int(),
121  $this->refinery->always(0),
122  ])->transform(ilSession::get(self::PARAM_FOLDER_ID));
123  }
124 
125  if (0 === $folder_id || !$this->mbox->isOwnedFolder($folder_id)) {
126  $folder_id = $this->mbox->getInboxFolder();
127  }
128 
129  $folder = $this->mbox->getFolderData($folder_id);
130  if ($folder === null) {
131  $this->tpl->setOnScreenMessage(
133  $this->lng->txt('mail_operation_on_invalid_folder')
134  );
135  $this->tpl->printToStdout();
136  }
137  $this->folder = $folder;
138  }
139 
140  public function executeCommand(): void
141  {
142  $this->initRequest();
143 
144  $nextClass = $this->ctrl->getNextClass($this) ?? '';
145  switch (strtolower($nextClass)) {
146  case strtolower(ilContactGUI::class):
147  $this->ctrl->forwardCommand(new ilContactGUI());
148  break;
149 
150  default:
151  $cmd = $this->ctrl->getCmd() ?? '';
152  switch ($cmd) {
153  case self::CMD_ADD_SUB_FOLDER:
154  case self::CMD_DELETE_MAILS:
155  case self::CMD_DELETE_SUB_FOLDER:
156  case self::CMD_DELIVER_FILE:
157  case self::CMD_EMPTY_TRASH:
158  case self::CMD_MOVE_SINGLE_MAIL:
159  case self::CMD_PRINT_MAIL:
160  case self::CMD_RENAME_SUB_FOLDER:
161  case self::CMD_SHOW_MAIL:
162  case self::CMD_SHOW_FOLDER:
163  case self::CMD_SHOW_USER:
164  case self::CMD_TABLE_ACTION:
165  $this->{$cmd}();
166  break;
167 
168  default:
169  $this->showFolder();
170  }
171  }
172  }
173 
174  protected function executeTableAction(): void
175  {
176  $action = $this->http->wrapper()->query()->retrieve(
177  self::URL_BUILDER_PREFIX . URLBuilder::SEPARATOR . self::PARAM_ACTION,
178  $this->refinery->byTrying([
179  $this->refinery->kindlyTo()->string(),
180  $this->refinery->always('')
181  ])
182  );
183 
184  // Magic value of data table in ui framework, no public constant found
185  $for_all_entries = 'ALL_OBJECTS' === implode(
186  '',
187  $this->http->wrapper()->query()->retrieve(
188  self::URL_BUILDER_PREFIX . URLBuilder::SEPARATOR . self::PARAM_MAIL_ID,
189  $this->refinery->byTrying([
190  $this->refinery->kindlyTo()->listOf($this->refinery->kindlyTo()->string()),
191  $this->refinery->always([])
192  ])
193  )
194  );
195 
196  if ($for_all_entries) {
197  // we must apply the filter because the shown table is filtered, too
198  $mail_ids = $this->getFilteredSearch()->getMaiIds();
199  } else {
200  $mail_ids = $this->getMailIdsFromRequest();
201  }
202 
203  if (empty($mail_ids)) {
204  // no redirect possible from async call
205  if ($action === MailFolderTableUI::ACTION_DELETE) {
206  $modal = $this->ui_factory->modal()->lightbox(
207  $this->ui_factory->modal()->lightboxTextPage(
208  $this->ui_renderer->render(
209  $this->ui_factory->messageBox()->failure($this->lng->txt('mail_select_one'))
210  ),
211  $this->lng->txt('delete'),
212  )
213  );
214  $this->http->saveResponse(
215  $this->http->response()->withBody(
216  Streams::ofString($this->ui_renderer->renderAsync($modal))
217  )
218  );
219  $this->http->sendResponse();
220  $this->http->close();
221  } else {
222  $this->tpl->setOnScreenMessage(
224  $this->lng->txt('mail_select_one'),
225  true
226  );
227  $this->redirectToFolder();
228  }
229  }
230 
231  switch ($action) {
232  case MailFolderTableUI::ACTION_SHOW:
233  $this->showMail();
234  return;
235 
236  case MailFolderTableUI::ACTION_EDIT:
237  $this->ctrl->setParameterByClass(
238  ilMailFormGUI::class,
239  self::PARAM_FOLDER_ID,
240  (string) $this->folder->getFolderId()
241  );
242  $this->ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_MAIL_ID, (string) $mail_ids[0]);
243  $this->ctrl->setParameterByClass(ilMailFormGUI::class, 'type', ilMailFormGUI::MAIL_FORM_TYPE_DRAFT);
244  $this->ctrl->redirectByClass(ilMailFormGUI::class);
245 
246  // no break
247  case MailFolderTableUI::ACTION_REPLY:
248  $this->ctrl->setParameterByClass(
249  ilMailFormGUI::class,
250  self::PARAM_FOLDER_ID,
251  (string) $this->folder->getFolderId()
252  );
253  $this->ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_MAIL_ID, (string) $mail_ids[0]);
254  $this->ctrl->setParameterByClass(ilMailFormGUI::class, 'type', ilMailFormGUI::MAIL_FORM_TYPE_REPLY);
255  $this->ctrl->redirectByClass(ilMailFormGUI::class);
256 
257  // no break
258  case MailFolderTableUI::ACTION_FORWARD:
259  $this->ctrl->setParameterByClass(
260  ilMailFormGUI::class,
261  self::PARAM_FOLDER_ID,
262  (string) $this->folder->getFolderId()
263  );
264  $this->ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_MAIL_ID, (string) $mail_ids[0]);
265  $this->ctrl->setParameterByClass(ilMailFormGUI::class, 'type', ilMailFormGUI::MAIL_FORM_TYPE_FORWARD);
266  $this->ctrl->redirectByClass(ilMailFormGUI::class);
267 
268  // no break
269  case MailFolderTableUI::ACTION_DOWNLOAD_ATTACHMENT:
270  $this->deliverAttachments();
271  return;
272 
273  case MailFolderTableUI::ACTION_PRINT:
274  $this->printMail();
275  return;
276 
277  case MailFolderTableUI::ACTION_PROFILE:
278  $mail_data = $this->umail->getMail($mail_ids[0] ?? 0);
279  if (!empty($user = ilMailUserCache::getUserObjectById($mail_data['sender_id'] ?? 0)) &&
280  $user->hasPublicProfile()) {
281  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, (string) $this->folder->getFolderId());
282  $this->ctrl->setParameter($this, self::PARAM_USER_ID, (string) $user->getId());
283  $this->ctrl->redirect($this, self::CMD_SHOW_USER);
284  } else {
285  $this->tpl->setOnScreenMessage(
287  $this->lng->txt('permission_denied'),
288  true
289  );
290  }
291  break;
292 
293  case MailFolderTableUI::ACTION_MARK_READ:
294  $this->umail->markRead($mail_ids);
295  $this->tpl->setOnScreenMessage(
297  $this->lng->txt('saved_successfully'),
298  true
299  );
300  break;
301 
302  case MailFolderTableUI::ACTION_MARK_UNREAD:
303  $this->umail->markUnread($mail_ids);
304  $this->tpl->setOnScreenMessage(
306  $this->lng->txt('saved_successfully'),
307  true
308  );
309  break;
310 
311  case MailFolderTableUI::ACTION_MOVE_TO:
312  $folder_id = $this->http->wrapper()->query()->retrieve(
313  self::URL_BUILDER_PREFIX . URLBuilder::SEPARATOR . self::PARAM_TARGET_FOLDER,
314  $this->refinery->kindlyTo()->int()
315  );
316  if (empty($folder_id)) {
317  $this->tpl->setOnScreenMessage(
319  $this->lng->txt('mail_move_error')
320  );
321  } elseif ($this->umail->moveMailsToFolder($mail_ids, $folder_id)) {
322  $this->tpl->setOnScreenMessage(
324  $this->lng->txt('mail_moved'),
325  true
326  );
327  } else {
328  $this->tpl->setOnScreenMessage(
330  $this->lng->txt('mail_move_error')
331  );
332  }
333  break;
334 
335  case MailFolderTableUI::ACTION_DELETE: // async call
336  $this->confirmDeleteMails($mail_ids);
337  break;
338 
339  default:
340  $this->tpl->setOnScreenMessage(
342  $this->lng->txt('permission_denied')
343  );
344  break;
345  }
346 
347  $this->redirectToFolder();
348  }
349 
350  protected function emptyTrash(): void
351  {
352  $this->umail->deleteMailsOfFolder($this->mbox->getTrashFolder());
353  $this->tpl->setOnScreenMessage(
355  $this->lng->txt('mail_deleted'),
356  true
357  );
358  $this->redirectToFolder();
359  }
360 
364  protected function showUser(): void
365  {
366  $userId = $this->http->wrapper()->query()->retrieve(
367  self::PARAM_USER_ID,
368  $this->refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->refinery->always(0)])
369  );
370 
371  $this->tpl->setVariable('TBL_TITLE', implode(' ', [
372  $this->lng->txt('profile_of'),
373  ilObjUser::_lookupLogin($userId),
374  ]));
375  $this->tpl->setVariable('TBL_TITLE_IMG', ilUtil::getImagePath('standard/icon_usr.svg'));
376  $this->tpl->setVariable('TBL_TITLE_IMG_ALT', $this->lng->txt('public_profile'));
377 
378  $profile_gui = new ilPublicUserProfileGUI($userId);
379 
380  $mailId = $this->http->wrapper()->query()->retrieve(
381  self::PARAM_MAIL_ID,
382  $this->refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->refinery->always(0)])
383  );
384 
385  if ($mailId > 0) {
386  $this->ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
387  $this->tabs->clearTargets();
388  $this->tabs->setBackTarget($this->lng->txt('back'), $this->ctrl->getLinkTarget($this, self::CMD_SHOW_MAIL));
389  } else {
390  $this->tabs->clearTargets();
391  $this->tabs->setBackTarget(
392  $this->lng->txt('back_to_folder'),
393  $this->ctrl->getLinkTarget($this, self::CMD_SHOW_FOLDER)
394  );
395  }
396 
397  $this->ctrl->clearParameters($this);
398 
399  $this->tpl->setTitle($this->lng->txt('mail'));
400  $this->tpl->setContent($this->ctrl->getHTML($profile_gui));
401  $this->tpl->printToStdout();
402  }
403 
404  protected function showFolder(): void
405  {
406  $components = [];
407  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $this->folder->getFolderId());
408 
409  if ($this->folder->isUserLocalFolder()) {
410  $this->toolbar->addComponent(
411  $this->ui_factory->button()->standard(
412  $this->lng->txt('mail_add_subfolder'),
413  $this->ctrl->getLinkTarget($this, self::CMD_ADD_SUB_FOLDER)
414  )
415  );
416  }
417 
418  if ($this->folder->isUserFolder()) {
419  $this->toolbar->addComponent(
420  $this->ui_factory->button()->standard(
421  $this->lng->txt('rename'),
422  $this->ctrl->getLinkTarget($this, self::CMD_RENAME_SUB_FOLDER)
423  )
424  );
425 
426  $components[] = $modal = $this->ui_factory->modal()->interruptive(
427  $this->lng->txt('delete'),
428  $this->lng->txt('mail_sure_delete_folder'),
429  $this->ctrl->getLinkTarget($this, self::CMD_DELETE_SUB_FOLDER)
430  );
431  $this->toolbar->addComponent(
432  $this->ui_factory->button()->standard(
433  $this->lng->txt('delete'),
434  '#'
435  )
436  ->withOnClick($modal->getShowSignal())
437  );
438  }
439 
440  if ($this->folder->isTrash()) {
441  $components[] = $modal = $this->ui_factory->modal()->interruptive(
442  $this->lng->txt('mail_empty_trash'),
443  $this->lng->txt('mail_empty_trash_confirmation'),
444  $this->ctrl->getLinkTarget($this, self::CMD_EMPTY_TRASH)
445  );
446  $this->toolbar->addComponent(
447  $this->ui_factory->button()->standard(
448  $this->lng->txt('mail_empty_trash'),
449  '#'
450  )->withOnClick($modal->getShowSignal())
451  );
452  }
453 
454  [
455  $url_builder,
456  $action_token,
457  $row_id_token,
458  $target_token,
459  ] = (new URLBuilder(
460  $this->data_factory->uri(
461  ilUtil::_getHttpPath() . '/' .
462  $this->ctrl->getLinkTarget($this, self::CMD_TABLE_ACTION)
463  )
464  )
465  )->acquireParameters(
466  [self::URL_BUILDER_PREFIX],
467  self::PARAM_ACTION,
468  self::PARAM_MAIL_ID,
469  self::PARAM_TARGET_FOLDER
470  );
471 
472  $table = new MailFolderTableUI(
473  $url_builder,
474  $action_token,
475  $row_id_token,
476  $target_token,
477  $this->mbox->getSubFolders(),
479  $this->getFilteredSearch(),
480  $this->umail,
483  $this->lng,
484  $this->http->request(),
487  $this->user->getDateFormat(),
488  $this->user->getTimeFormat(),
489  new DateTimeZone($this->user->getTimeZone())
490  );
491 
492  $components[] = $this->getFilterUI()->getComponent();
493  $components[] = $table->getComponent();
494 
495  $this->tpl->setTitle($this->folder->getTitle());
496  $this->tpl->setContent($this->ui_renderer->render($components));
497  $this->tpl->printToStdout();
498  }
499 
500  protected function redirectToFolder(): never
501  {
502  $this->ctrl->clearParameters($this);
503  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $this->folder->getFolderId());
504  $this->ctrl->redirect($this, self::CMD_SHOW_FOLDER);
505  }
506 
507  protected function deleteSubFolder(): void
508  {
509  $parent_folder_id = $this->mbox->getParentFolderId($this->folder->getFolderId());
510  if ($parent_folder_id > 0 && $this->mbox->deleteFolder($this->folder->getFolderId())) {
511  $this->tpl->setOnScreenMessage(
513  $this->lng->txt('mail_folder_deleted'),
514  true
515  );
516  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $parent_folder_id);
517  $this->ctrl->redirect($this, self::CMD_SHOW_FOLDER);
518  } else {
519  $this->tpl->setOnScreenMessage(
521  $this->lng->txt('mail_error_delete'),
522  true
523  );
524  $this->redirectToFolder();
525  }
526  }
527 
528  protected function addSubFolder(): void
529  {
530  $form = $this->ui_factory->input()->container()->form()->standard(
531  $this->ctrl->getFormAction($this, self::CMD_ADD_SUB_FOLDER),
532  [
533  'folder' => $this->ui_factory->input()->field()->section([
534  'title' => $this->ui_factory->input()->field()->text($this->lng->txt('title'))->withRequired(true)
535  ], $this->lng->txt('mail_add_folder'))
536  ]
537  );
538 
539  $request = $this->http->request();
540  if ($request->getMethod() === 'POST') {
541  $form = $form->withRequest($request);
542  $data = $form->getData();
543  if (!empty($data['folder']['title'])) {
544  $new_folder_id = $this->mbox->addFolder(
545  $this->folder->getFolderId(),
546  (string) $data['folder']['title']
547  );
548  if ($new_folder_id > 0) {
549  $this->tpl->setOnScreenMessage(
551  $this->lng->txt('mail_folder_created'),
552  true
553  );
554  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $new_folder_id);
555  $this->ctrl->redirect($this, self::CMD_SHOW_FOLDER);
556  } else {
557  $this->tpl->setOnScreenMessage(
559  $this->lng->txt('mail_folder_exists')
560  );
561  }
562  }
563  }
564  $this->tpl->setContent($this->ui_renderer->render($form));
565  $this->tpl->printToStdout();
566  }
567 
568  protected function renameSubFolder(): void
569  {
570  $form = $this->ui_factory->input()->container()->form()->standard(
571  $this->ctrl->getFormAction($this, self::CMD_RENAME_SUB_FOLDER),
572  [
573  'folder' => $this->ui_factory->input()->field()->section([
574  'title' => $this->ui_factory->input()->field()->text($this->lng->txt('title'))->withRequired(true)
575  ], $this->lng->txt('mail_rename_folder'))
576  ]
577  );
578 
579  $request = $this->http->request();
580  if ($request->getMethod() === 'POST') {
581  $form = $form->withRequest($request);
582  $data = $form->getData();
583  if (!empty($data['folder']['title'])) {
584  if ($this->mbox->renameFolder($this->folder->getFolderId(), (string) $data['folder']['title'])) {
585  $this->tpl->setOnScreenMessage(
587  $this->lng->txt('mail_folder_name_changed'),
588  true
589  );
590  $this->redirectToFolder();
591  } else {
592  $this->tpl->setOnScreenMessage(
594  $this->lng->txt('mail_folder_exists')
595  );
596  }
597  }
598  }
599  $this->tpl->setContent($this->ui_renderer->render($form));
600  $this->tpl->printToStdout();
601  }
602 
603  protected function getFilterUI(): MailFilterUI
604  {
605  return new MailFilterUI(
606  $this->ctrl->getFormAction($this, self::CMD_SHOW_FOLDER),
607  ilSearchSettings::getInstance()->enabledLucene(),
610  $this->ui_service->filter(),
611  $this->lng,
612  new DateTimeZone($this->user->getTimeZone()),
613  );
614  }
615 
620  protected function getFilteredSearch(): MailFolderSearch
621  {
622  return new MailFolderSearch(
623  $this->folder,
624  $this->getFilterUI()->getData(),
625  ilSearchSettings::getInstance()->enabledLucene(),
626  );
627  }
628 
632  protected function getMailIdsFromRequest(): array
633  {
634  // table actions have a prefix, controller commands and modal items have none
635  foreach (
636  [
637  self::URL_BUILDER_PREFIX . URLBuilder::SEPARATOR . self::PARAM_MAIL_ID,
638  self::PARAM_MAIL_ID,
639  self::PARAM_INTERRUPTIVE_ITEMS
640  ] as $param
641  ) {
642  foreach (
643  [
644  $this->http->wrapper()->post(),
645  $this->http->wrapper()->query()
646  ] as $wrapper
647  ) {
648  if ($wrapper->has($param)) {
649  return $wrapper->retrieve(
650  $param,
651  $this->refinery->byTrying([
652  $this->refinery->kindlyTo()->listOf($this->refinery->kindlyTo()->int()),
653  $this->refinery->always([])
654  ])
655  );
656  }
657  }
658  }
659 
660  return [];
661  }
662 
667  protected function moveSingleMail(): void
668  {
669  $mailIds = $this->getMailIdsFromRequest();
670  if (count($mailIds) !== 1) {
671  $this->showMail();
672  $this->tpl->setOnScreenMessage('info', $this->lng->txt('mail_select_one'));
673  return;
674  }
675 
676  $newFolderId = $this->http->wrapper()->query()->retrieve(
677  'folder_id',
678  $this->refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->refinery->always(0)])
679  );
680  $redirectFolderId = $newFolderId;
681 
682  foreach ($mailIds as $mailId) {
683  $mailData = $this->umail->getMail($mailId);
684  if (isset($mailData['folder_id']) &&
685  is_numeric($mailData['folder_id']) &&
686  (int) $mailData['folder_id'] > 0) {
687  $redirectFolderId = (int) $mailData['folder_id'];
688  break;
689  }
690  }
691 
692  if ($this->umail->moveMailsToFolder($mailIds, $newFolderId)) {
693  $this->tpl->setOnScreenMessage('success', $this->lng->txt('mail_moved'), true);
694  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $redirectFolderId);
695  $this->ctrl->redirect($this, self::CMD_SHOW_FOLDER);
696  } else {
697  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('mail_move_error'));
698  $this->showMail();
699  }
700  }
701 
702  protected function deleteMails(): void
703  {
704  if (!$this->folder->isTrash()) {
705  $this->tpl->setOnScreenMessage(
707  $this->lng->txt('mail_operation_on_invalid_folder'),
708  true
709  );
710  $this->redirectToFolder();
711  }
712 
713  $this->umail->deleteMails($this->getMailIdsFromRequest());
714  $this->tpl->setOnScreenMessage(
716  $this->lng->txt('mail_deleted'),
717  true
718  );
719  $this->redirectToFolder();
720  }
721 
726  protected function confirmDeleteMails(array $mail_ids): void
727  {
728  $user_timezone = new DateTimeZone($this->user->getTimeZone());
729  $records = $this->getFilteredSearch()->forMailIds($mail_ids)->getPagedRecords(10, 0, null, null);
730  $items = [];
731  foreach ($records as $record) {
732  $prefix = '';
733  if (!empty($record->getSendTime())) {
734  $time = $record->getSendTime()->setTimezone($user_timezone);
735  $prefix = $time->format($this->user->getDateFormat()->toString()) . ' ';
736  }
737  $items[] = $this->ui_factory->modal()->interruptiveItem()->standard(
738  (string) $record->getMailId(),
739  $prefix . $this->refinery->encode()->htmlSpecialCharsAsEntities()->transform($record->getSubject())
740  );
741  }
742 
743  $modal = $this->ui_factory->modal()->interruptive(
744  $this->lng->txt('delete'),
745  $this->lng->txt('mail_sure_delete_' . (count($items) === 1 ? 's' : 'p')),
746  $this->ctrl->getFormAction($this, self::CMD_DELETE_MAILS)
747  )->withAffectedItems($items);
748 
749  $this->http->saveResponse(
750  $this->http->response()->withBody(
751  Streams::ofString($this->ui_renderer->renderAsync($modal))
752  )
753  );
754  $this->http->sendResponse();
755  $this->http->close();
756  }
757 
758  protected function showMail(): void
759  {
760  $ui_components = [];
761 
762  $mailId = $this->getMailIdsFromRequest()[0] ?? 0;
763  if ($mailId <= 0) {
764  $this->error->raiseError($this->lng->txt('permission_denied'), $this->error->MESSAGE);
765  }
766 
767  $mailData = $this->umail->getMail($mailId);
768  if ($mailData === null) {
769  $this->error->raiseError($this->lng->txt('permission_denied'), $this->error->MESSAGE);
770  }
771 
772  $this->umail->markRead([$mailId]);
773 
774  $this->tpl->setTitle($this->lng->txt('mail_mails_of'));
775 
776  $this->tabs->clearTargets();
777  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData['folder_id']);
778  $this->tabs->setBackTarget(
779  $this->lng->txt('back_to_folder'),
780  $this->ctrl->getFormAction($this, self::CMD_SHOW_FOLDER)
781  );
782  $this->ctrl->clearParameters($this);
783 
784  $this->ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
785  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData['folder_id']);
786  $this->toolbar->setFormAction($this->ctrl->getFormAction($this, self::CMD_SHOW_MAIL));
787  $this->ctrl->clearParameters($this);
788 
789  $form = new ilPropertyFormGUI();
790  $form->setId('MailContent');
791  $form->setPreventDoubleSubmission(false);
792  $form->setTableWidth('100%');
793  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData['folder_id']);
794  $this->ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
795  $form->setFormAction($this->ctrl->getFormAction($this, self::CMD_SHOW_MAIL));
796  $this->ctrl->clearParameters($this);
797  $form->setTitle($this->lng->txt('mail_mails_of'));
798 
800  $sender = ilObjectFactory::getInstanceByObjId($mailData['sender_id'], false);
801  $replyBtn = null;
802  if ($sender instanceof ilObjUser && $sender->getId() !== 0 && !$sender->isAnonymous()) {
803  $this->ctrl->setParameterByClass(
804  ilMailFormGUI::class,
805  self::PARAM_FOLDER_ID,
806  $mailData['folder_id']
807  );
808  $this->ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_MAIL_ID, $mailId);
809  $this->ctrl->setParameterByClass(ilMailFormGUI::class, 'type', ilMailFormGUI::MAIL_FORM_TYPE_REPLY);
810  $replyBtn = $this->ui_factory->button()->primary(
811  $this->lng->txt('reply'),
812  $this->ctrl->getLinkTargetByClass(ilMailFormGUI::class)
813  );
814  $this->toolbar->addStickyItem($replyBtn);
815  $this->ctrl->clearParametersByClass(ilMailFormGUI::class);
816  }
817 
818  $this->ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_FOLDER_ID, $mailData['folder_id']);
819  $this->ctrl->setParameterByClass(ilMailFormGUI::class, self::PARAM_MAIL_ID, $mailId);
820  $this->ctrl->setParameterByClass(ilMailFormGUI::class, 'type', ilMailFormGUI::MAIL_FORM_TYPE_FORWARD);
821  if ($replyBtn === null) {
822  $fwdBtn = $this->ui_factory->button()->primary(
823  $this->lng->txt('forward'),
824  $this->ctrl->getLinkTargetByClass(ilMailFormGUI::class)
825  );
826  $this->toolbar->addStickyItem($fwdBtn);
827  } else {
828  $fwdBtn = $this->ui_factory->button()->standard(
829  $this->lng->txt('forward'),
830  $this->ctrl->getLinkTargetByClass(ilMailFormGUI::class)
831  );
832  $this->toolbar->addComponent($fwdBtn);
833  }
834  $this->ctrl->clearParametersByClass(ilMailFormGUI::class);
835 
836  if ($sender && $sender->getId() && !$sender->isAnonymous()) {
837  $linked_fullname = $sender->getPublicName();
838  $avatar = $this->ui_factory->symbol()->avatar()->picture(
839  $sender->getPersonalPicturePath('xsmall'),
840  $sender->getPublicName()
841  );
842 
843  if (in_array(ilObjUser::_lookupPref($sender->getId(), 'public_profile'), ['y', 'g'])) {
844  $this->ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
845  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData['folder_id']);
846  $this->ctrl->setParameter($this, self::PARAM_USER_ID, $sender->getId());
847  $linked_fullname = '<br /><a class="mailusername" href="' . $this->ctrl->getLinkTarget(
848  $this,
849  self::CMD_SHOW_USER
850  ) . '" title="' . $linked_fullname . '">' . $linked_fullname . '</a>';
851  $this->ctrl->clearParameters($this);
852  }
853 
854  $from = new ilCustomInputGUI($this->lng->txt('from') . ':');
855  $from->setHtml($this->ui_renderer->render($avatar) . ' ' . $linked_fullname);
856  } elseif (!$sender || !$sender->getId()) {
857  $from = new ilCustomInputGUI($this->lng->txt('from') . ':');
858  $from->setHtml(trim(($mailData['import_name'] ?? '') . ' (' . $this->lng->txt('user_deleted') . ')'));
859  } else {
860  $from = new ilCustomInputGUI($this->lng->txt('from') . ':');
861  $from->setHtml(
862  $this->ui_renderer->render(
863  $this->ui_factory
864  ->symbol()
865  ->avatar()
866  ->picture(ilUtil::getImagePath('logo/HeaderIconAvatar.svg'), ilMail::_getIliasMailerName())
867  ) . '<br />' . ilMail::_getIliasMailerName()
868  );
869  }
870  $form->addItem($from);
871 
872  $to = new ilCustomInputGUI($this->lng->txt('mail_to') . ':');
873  $to->setHtml(
875  $this->umail->formatNamesForOutput($mailData['rcp_to'] ?? ''),
876  false
877  )
878  );
879  $form->addItem($to);
880 
881  if ($mailData['rcp_cc']) {
882  $cc = new ilCustomInputGUI($this->lng->txt('mail_cc') . ':');
883  $cc->setHtml(
885  $this->umail->formatNamesForOutput($mailData['rcp_cc']),
886  false
887  )
888  );
889  $form->addItem($cc);
890  }
891 
892  if ($mailData['rcp_bcc']) {
893  $bcc = new ilCustomInputGUI($this->lng->txt('mail_bcc') . ':');
894  $bcc->setHtml(
896  $this->umail->formatNamesForOutput($mailData['rcp_bcc']),
897  false
898  )
899  );
900  $form->addItem($bcc);
901  }
902 
903  $subject = new ilCustomInputGUI($this->lng->txt('subject') . ':');
904  $subject->setHtml(ilUtil::htmlencodePlainString($mailData['m_subject'] ?? '', true));
905  $form->addItem($subject);
906 
907  $date = new ilCustomInputGUI($this->lng->txt('mail_sent_datetime') . ':');
908  $date->setHtml(
910  new ilDateTime($mailData['send_time'], IL_CAL_DATETIME)
911  )
912  );
913  $form->addItem($date);
914 
915  $message = new ilCustomInputGUI($this->lng->txt('message') . ':');
916  $message->setHtml(ilUtil::htmlencodePlainString($mailData['m_message'] ?? '', true));
917  $form->addItem($message);
918 
919  if ($mailData['attachments']) {
920  $att = new ilCustomInputGUI($this->lng->txt('attachments') . ':');
921 
922  $radiog = new ilRadioGroupInputGUI('', 'filename');
923  foreach ($mailData['attachments'] as $file) {
924  $radiog->addOption(new ilRadioOption($file, md5($file)));
925  }
926 
927  $att->setHtml($radiog->render());
928  $form->addCommandButton(self::CMD_DELIVER_FILE, $this->lng->txt('download'));
929  $form->addItem($att);
930  }
931 
932  $current_folder = $this->mbox->getFolderData((int) $mailData['folder_id']);
933  if ($current_folder === null) {
934  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('mail_operation_on_invalid_folder'), true);
935  $this->ctrl->setParameterByClass(ilMailGUI::class, self::PARAM_FOLDER_ID, $this->mbox->getInboxFolder());
936  $this->ctrl->redirectByClass(ilMailGUI::class);
937  }
938 
939  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $this->folder->getFolderId());
940  $this->tabs->addTab(
941  'current_folder',
942  $current_folder->getTitle(),
943  $this->ctrl->getLinkTarget($this, self::CMD_SHOW_FOLDER)
944  );
945  $this->ctrl->clearParameters($this);
946  $this->tabs->activateTab('current_folder');
947 
948  $move_links = [];
949  $folders = $this->mbox->getSubFolders();
950  foreach ($folders as $folder) {
951  if ((!$folder->isTrash() || !$current_folder->isTrash()) &&
952  $folder->getFolderId() !== $mailData['folder_id']) {
953  $move_links[] = $this->ui_factory->button()->shy(
954  sprintf(
955  $this->lng->txt('mail_move_to_folder_x'),
956  $folder->getTitle()
957  ) . ($folder->isTrash() ? ' (' . $this->lng->txt('delete') . ')' : ''),
958  '#',
959  )->withOnLoadCode(static fn($id): string => "
960  document.getElementById('$id').addEventListener('click', function(e) {
961  const frm = this.closest('form'),
962  action = new URL(frm.action),
963  action_params = new URLSearchParams(action.search);
964 
965  action_params.delete('cmd');
966  action_params.append('cmd', '" . self::CMD_MOVE_SINGLE_MAIL . "');
967  action_params.delete('folder_id');
968  action_params.append('folder_id', '" . $folder->getFolderId() . "');
969 
970  action.search = action_params.toString();
971 
972  frm.action = action.href;
973  frm.submit();
974 
975  e.preventDefault();
976  e.stopPropagation();
977 
978  return false;
979  });");
980  }
981  }
982 
983  if ($this->folder->isTrash()) {
984  $this->ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
985  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData['folder_id']);
986  $modal = $this->ui_factory->modal()->interruptive(
987  $this->lng->txt('delete'),
988  $this->lng->txt('mail_sure_delete_s'),
989  $this->ctrl->getLinkTarget($this, self::CMD_DELETE_MAILS)
990  )->withAffectedItems([
991  $this->ui_factory->modal()->interruptiveItem()->standard(
992  (string) $mailId,
994  new ilDateTime($mailData['send_time'], IL_CAL_DATETIME)
995  ) . ' ' . $mailData['m_subject']
996  )
997  ]);
998  $this->toolbar->addComponent(
999  $this->ui_factory->button()->standard(
1000  $this->lng->txt('delete'),
1001  '#'
1002  )->withOnClick($modal->getShowSignal())
1003  );
1004  $this->ctrl->clearParameters($this);
1005 
1006  $ui_components[] = $modal;
1007  }
1008 
1009  if ($move_links !== []) {
1010  $this->toolbar->addComponent(
1011  $this->ui_factory->dropdown()->standard($move_links)
1012  ->withLabel($this->lng->txt('mail_move_to_folder_btn_label'))
1013  );
1014  }
1015 
1016  $this->toolbar->addSeparator();
1017 
1018  $this->ctrl->setParameter($this, self::PARAM_MAIL_ID, $mailId);
1019  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $mailData['folder_id']);
1020  $print_url = $this->ctrl->getLinkTarget($this, self::CMD_PRINT_MAIL);
1021  $this->ctrl->clearParameters($this);
1022  $print_btn = $this->ui_factory->button()
1023  ->standard($this->lng->txt('print'), '#')
1024  ->withOnLoadCode(static fn($id): string => "
1025  document.getElementById('$id').addEventListener('click', function() {
1026  const frm = this.closest('form'),
1027  action = frm.action;
1028 
1029  frm.action = '$print_url';
1030  frm.target = '_blank';
1031  frm.submit();
1032 
1033  frm.action = action;
1034  frm.removeAttribute('target');
1035 
1036  return false;
1037  });
1038  ");
1039  $this->toolbar->addComponent($print_btn);
1040 
1041  $prevMail = $this->umail->getPreviousMail($mailId);
1042  $nextMail = $this->umail->getNextMail($mailId);
1043  if (is_array($prevMail) || is_array($nextMail)) {
1044  $this->toolbar->addSeparator();
1045 
1046  if ($prevMail && $prevMail[self::PARAM_MAIL_ID]) {
1047  $this->ctrl->setParameter($this, self::PARAM_MAIL_ID, $prevMail[self::PARAM_MAIL_ID]);
1048  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $this->folder->getFolderId());
1049  $prevBtn = $this->ui_factory->button()
1050  ->standard(
1051  $this->lng->txt('previous'),
1052  $this->ctrl->getLinkTarget($this, self::CMD_SHOW_MAIL)
1053  );
1054  $this->toolbar->addComponent($prevBtn);
1055  $this->ctrl->clearParameters($this);
1056  }
1057 
1058  if ($nextMail && $nextMail[self::PARAM_MAIL_ID]) {
1059  $this->ctrl->setParameter($this, self::PARAM_MAIL_ID, $nextMail[self::PARAM_MAIL_ID]);
1060  $this->ctrl->setParameter($this, self::PARAM_FOLDER_ID, $this->folder->getFolderId());
1061  $nextBtn = $this->ui_factory->button()
1062  ->standard(
1063  $this->lng->txt('next'),
1064  $this->ctrl->getLinkTarget($this, self::CMD_SHOW_MAIL)
1065  );
1066  $this->toolbar->addComponent($nextBtn);
1067  $this->ctrl->clearParameters($this);
1068  }
1069  }
1070 
1071  $this->tpl->setContent($form->getHTML() . $this->ui_renderer->render($ui_components));
1072  $this->tpl->printToStdout();
1073  }
1074 
1075  protected function printMail(): void
1076  {
1077  $tplprint = new ilTemplate('tpl.mail_print.html', true, true, 'components/ILIAS/Mail');
1078 
1079  $mailId = $this->getMailIdsFromRequest()[0] ?? 0;
1080  $mailData = $this->umail->getMail($mailId);
1081 
1082  $sender = ilObjectFactory::getInstanceByObjId($mailData['sender_id'], false);
1083 
1084  $tplprint->setVariable('TXT_FROM', $this->lng->txt('from'));
1085  if ($sender instanceof ilObjUser && $sender->getId() !== 0 && !$sender->isAnonymous()) {
1086  $tplprint->setVariable('FROM', $sender->getPublicName());
1087  } elseif (!$sender instanceof ilObjUser || 0 === $sender->getId()) {
1088  $tplprint->setVariable(
1089  'FROM',
1090  trim(($mailData['import_name'] ?? '') . ' (' . $this->lng->txt('user_deleted') . ')')
1091  );
1092  } else {
1093  $tplprint->setVariable('FROM', ilMail::_getIliasMailerName());
1094  }
1095 
1096  $tplprint->setVariable('TXT_TO', $this->lng->txt('mail_to'));
1097  $tplprint->setVariable('TO', $mailData['rcp_to']);
1098 
1099  if ($mailData['rcp_cc']) {
1100  $tplprint->setCurrentBlock('cc');
1101  $tplprint->setVariable('TXT_CC', $this->lng->txt('mail_cc'));
1102  $tplprint->setVariable('CC', $mailData['rcp_cc']);
1103  $tplprint->parseCurrentBlock();
1104  }
1105 
1106  if ($mailData['rcp_bcc']) {
1107  $tplprint->setCurrentBlock('bcc');
1108  $tplprint->setVariable('TXT_BCC', $this->lng->txt('mail_bcc'));
1109  $tplprint->setVariable('BCC', $mailData['rcp_bcc']);
1110  $tplprint->parseCurrentBlock();
1111  }
1112 
1113  $tplprint->setVariable('TXT_SUBJECT', $this->lng->txt('subject'));
1114  $tplprint->setVariable('SUBJECT', htmlspecialchars($mailData['m_subject']));
1115 
1116  $tplprint->setVariable('TXT_DATE', $this->lng->txt('date'));
1117  $tplprint->setVariable(
1118  'DATE',
1119  ilDatePresentation::formatDate(new ilDateTime($mailData['send_time'], IL_CAL_DATETIME))
1120  );
1121 
1122  $tplprint->setVariable('TXT_MESSAGE', $this->lng->txt('message'));
1123  $tplprint->setVariable('MAIL_MESSAGE', nl2br(htmlspecialchars($mailData['m_message'])));
1124 
1125  $tplprint->show();
1126  }
1127 
1128  protected function deliverFile(): void
1129  {
1130  $mailId = $this->http->wrapper()->query()->retrieve(
1131  self::PARAM_MAIL_ID,
1132  $this->refinery->byTrying([$this->refinery->kindlyTo()->int(), $this->refinery->always(0)])
1133  );
1134  if ($mailId <= 0) {
1135  $this->error->raiseError($this->lng->txt('permission_denied'), $this->error->MESSAGE);
1136  }
1137 
1138  $filename = $this->http->wrapper()->post()->retrieve(
1139  'filename',
1140  $this->refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->refinery->always('')])
1141  );
1142 
1143  if (is_string(ilSession::get('filename')) && ilSession::get('filename') !== '') {
1144  $filename = ilSession::get('filename');
1145  ilSession::set('filename', null);
1146  }
1147 
1148  try {
1149  if ($mailId > 0 && $filename !== '') {
1150  while (str_contains((string) $filename, '..')) {
1151  $filename = str_replace('..', '', $filename);
1152  }
1153 
1154  $mailFileData = new ilFileDataMail($this->user->getId());
1155  try {
1156  $file = $mailFileData->getAttachmentPathAndFilenameByMd5Hash($filename, (int) $mailId);
1157  ilFileDelivery::deliverFileLegacy($file['path'], $file['filename']);
1158  } catch (OutOfBoundsException $e) {
1159  throw new ilMailException('mail_error_reading_attachment', $e->getCode(), $e);
1160  }
1161  } else {
1162  $this->tpl->setOnScreenMessage('info', $this->lng->txt('mail_select_attachment'));
1163  $this->showMail();
1164  }
1165  } catch (Exception $e) {
1166  $this->tpl->setOnScreenMessage('failure', $this->lng->txt($e->getMessage()), true);
1167  $this->redirectToFolder();
1168  }
1169  }
1170 
1171  protected function deliverAttachments(): void
1172  {
1173  try {
1174  $mailId = $this->getMailIdsFromRequest()[0] ?? 0;
1175  $mailData = $this->umail->getMail($mailId);
1176  if (null === $mailData || [] === (array) $mailData['attachments']) {
1177  throw new ilMailException('mail_error_reading_attachment');
1178  }
1179 
1180  $type = $this->http->wrapper()->query()->retrieve(
1181  'type',
1182  $this->refinery->byTrying([$this->refinery->kindlyTo()->string(), $this->refinery->always('')])
1183  );
1184 
1185  $mailFileData = new ilFileDataMail($this->user->getId());
1186  if (count($mailData['attachments']) === 1) {
1187  $attachment = current($mailData['attachments']);
1188 
1189  try {
1190  if ('draft' === $type) {
1191  if (!$mailFileData->checkFilesExist([$attachment])) {
1192  throw new OutOfBoundsException('');
1193  }
1194  $pathToFile = $mailFileData->getAbsoluteAttachmentPoolPathByFilename($attachment);
1195  $fileName = $attachment;
1196  } else {
1197  $file = $mailFileData->getAttachmentPathAndFilenameByMd5Hash(
1198  md5($attachment),
1199  $mailId
1200  );
1201  $pathToFile = $file['path'];
1202  $fileName = $file['filename'];
1203  }
1204  ilFileDelivery::deliverFileLegacy($pathToFile, $fileName);
1205  } catch (OutOfBoundsException $e) {
1206  throw new ilMailException('mail_error_reading_attachment', $e->getCode(), $e);
1207  }
1208  } else {
1209  $mailFileData->deliverAttachmentsAsZip(
1210  $mailData['m_subject'],
1211  $mailId,
1212  $mailData['attachments'],
1213  'draft' === $type
1214  );
1215  }
1216  } catch (Exception $e) {
1217  $this->tpl->setOnScreenMessage('failure', $this->lng->txt($e->getMessage()), true);
1218  $this->redirectToFolder();
1219  }
1220  }
1221 }
getAttachmentPathAndFilenameByMd5Hash(string $md5FileHash, int $mailId)
static get(string $a_var)
This class represents an option in a radio group.
readonly GlobalHttpState $http
readonly ilCtrlInterface $ctrl
const IL_CAL_DATETIME
static getUserObjectById(int $usr_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
final const MAIL_FORM_TYPE_DRAFT
This class handles all operations on files (attachments) in directory ilias_data/mail.
readonly ilUIService $ui_service
readonly ilTabsGUI $tabs
static _getIliasMailerName()
readonly ilGlobalTemplateInterface $tpl
static _lookupPref(int $a_usr_id, string $a_keyword)
final const MAIL_FORM_TYPE_REPLY
readonly Factory $ui_factory
$components
Filter input for mail folders.
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
static htmlencodePlainString(string $a_str, bool $a_make_links_clickable, bool $a_detect_goto_links=false)
Encodes a plain text string into HTML for display in a browser.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
confirmDeleteMails(array $mail_ids)
Confirm the deletion of selected mails in async modal.
GUI class for public user profile presentation.
ilMailFolderGUI:
static http()
Fetches the global http state from ILIAS.
This class represents a property in a property form.
readonly ilObjUser $user
readonly ilLanguage $lng
This is how the factory for UI elements looks.
Definition: Factory.php:37
initRequest()
Init class variables that can be determined in an actual request.
Mail Box class Base class for creating and handling mail boxes.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$param
Definition: xapitoken.php:46
global $DIC
Definition: shib_login.php:22
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
MailFolderData $folder
readonly Refinery $refinery
$filename
Definition: buildRTE.php:78
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
moveSingleMail()
Move a single mail to a folder Called from showMail page.
static _getHttpPath()
final const MAIL_FORM_TYPE_FORWARD
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
readonly Renderer $ui_renderer
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
readonly ilToolbarGUI $toolbar
$message
Definition: xapiexit.php:31
readonly ilErrorHandling $error
getFilteredSearch()
Searcher for mails in the folder, initialized with the current filter values needed for table display...
URLBuilder.
Definition: URLBuilder.php:40
readonly DataFactory $data_factory
static set(string $a_var, $a_val)
Set a value.
static _lookupLogin(int $a_user_id)