ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MailGlobalScreenToolProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 use ilMailExplorer;
29 use ilMailGUI;
30 
36 {
37  final public const SHOW_MAIL_FOLDERS_TOOL = 'show_mail_folders_tool';
38 
40  {
41  return $this->context_collection->main()->repository()->administration();
42  }
43 
44  public function getToolsForContextStack(
45  CalledContexts $called_contexts
46  ): array {
47  $identification = function ($id): IdentificationInterface {
48  return $this->identification_provider->contextAwareIdentifier($id);
49  };
50 
51  $tools = [];
52 
53  $additional_data = $called_contexts->getLast()->getAdditionalData();
54  if ($additional_data->exists(self::SHOW_MAIL_FOLDERS_TOOL) &&
55  $additional_data->get(self::SHOW_MAIL_FOLDERS_TOOL) === true) {
56  $title = $this->dic->language()->txt('mail_folders');
57  $icon = $this->dic->ui()->factory()->symbol()->icon()->standard('mail', $title);
58 
59  $tools[] = $this->factory
60  ->tool($identification('mail_folders_tree'))
61  ->withTitle($title)
62  ->withSymbol($icon)
63  ->withContentWrapper(function (): Content {
64  $exp = new ilMailExplorer(new ilMailGUI(), $this->dic->user()->getId());
65 
66  return $this->dic->ui()->factory()->legacy()->content($exp->getHTML(true));
67  });
68  }
69 
70  return $tools;
71  }
72 }
factory()
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23