ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
EmbeddedApplicationGSProvider.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
35 use ILIAS\Data\URI;
37 
42 {
46  private const USE_METABAR = 1;
50  private const USE_MODE_INFO = 2;
51  private int $display_mode = self::USE_MODE_INFO;
52  public const EMBEDDED_APPLICATION = 'embedded_application';
54 
55  public function __construct(Container $dic)
56  {
57  parent::__construct($dic);
58  global $DIC;
59  $this->signal_generator = $DIC["ui.signal_generator"];
60  }
61 
63  {
64  return $this->context_collection->repository();
65  }
66 
67 
68  public function getPageBuilderDecorator(CalledContexts $screen_context_stack): ?PageBuilderModification
69  {
70  if ($this->display_mode !== self::USE_MODE_INFO) {
71  return null;
72  }
73  if (!$screen_context_stack->current()->getAdditionalData()->exists(self::EMBEDDED_APPLICATION)) {
74  return null;
75  }
76  $embedded_application = $screen_context_stack->current()->getAdditionalData()->get(
77  self::EMBEDDED_APPLICATION
78  );
79  if (!$embedded_application instanceof EmbeddedApplication) {
80  return null;
81  }
82 
83  return $this->factory->page()->withHighPriority()->withModification(
84  function (PagePartProvider $p) use ($embedded_application): Page {
85  $uif = $this->dic->ui()->factory();
86  $builder = new StandardPageBuilder();
87  $page_part_provider = new EmbeddedApplicationPagePartProvider(
88  $p,
89  $embedded_application
90  );
91 
92  $back_to = $this->dic->ctrl()->getLinkTargetByClass(
93  \ilWOPIEmbeddedApplicationGUI::class,
95  );
96  $back_to = new URI(rtrim(ILIAS_HTTP_PATH, '/') . '/' . ltrim($back_to, './'));
98  $page = $builder->build($page_part_provider);
99  if (!$embedded_application->isInline()) {
100  $page = $page->withModeInfo(
101  $uif->mainControls()->modeInfo(
102  $this->dic->language()->txt('close_wopi_editor'),
103  $back_to
104  )
105  );
106  $page = $page->withSystemInfos([]);
107  }
108 
109  return $page;
110  }
111  );
112  }
113 
114  public function getMetaBarModification(CalledContexts $screen_context_stack): ?MetaBarModification
115  {
116  if ($this->display_mode !== self::USE_METABAR) {
117  return null;
118  }
119  if (!$screen_context_stack->current()->getAdditionalData()->exists(self::EMBEDDED_APPLICATION)) {
120  return null;
121  }
122 
123  $embedded_application = $screen_context_stack->current()->getAdditionalData()->get(
124  self::EMBEDDED_APPLICATION
125  );
126  if (!$embedded_application instanceof EmbeddedApplication) {
127  return null;
128  }
129 
130  if ($embedded_application->isInline()) {
131  return null;
132  }
133 
134  $button = $this->buildCloseButton($embedded_application);
135 
136  return $this->factory->metabar()->withHighPriority()->withModification(
137  fn(?MetaBar $metabar): ?Metabar => $metabar !== null
138  ? $metabar->withClearedEntries()
139  ->withAdditionalEntry(
140  'close_editor',
141  $button
142  )
143  : null
144  );
145  }
146 
147  protected function buildCloseButton(
148  EmbeddedApplication $embedded_application,
149  ): Bulky {
150  $uif = $this->dic->ui()->factory();
151  $back_target = $embedded_application->getBackTarget();
152  $signal = $this->signal_generator->create();
153  $signal->addOption('target_url', (string) $back_target);
154  return $uif->button()->bulky(
155  $uif->symbol()->glyph()->close(),
156  $this->dic->language()->txt('close'),
157  (string) $back_target
158  )->withOnClick(
159  $signal
160  )->withOnLoadCode(fn($id): string => "il.WOPI.bindCloseSignal('$id', '{$signal->getId()}');");
161  }
162 }
withClearedEntries()
Get a copy of this MetaBar without any entries.
factory()
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
This describes a bulky button.
Definition: Bulky.php:28
This describes the Page.
Definition: Page.php:30
This describes the MetaBar.
Definition: MetaBar.php:32
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
$dic
Definition: result.php:31