ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DocumentModal.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 use Closure;
27 
29 {
33  public function __construct(
34  private readonly UIServices $ui,
35  private readonly Closure $content_as_component
36  ) {
37  }
38 
42  public function create(DocumentContent $content): array
43  {
44  $modal = $this->ui->factory()->modal()->lightbox([
45  $this->ui->factory()->modal()->lightboxTextPage(
46  $this->ui->renderer()->render(($this->content_as_component)($content)),
47  $content->title()
48  )
49  ]);
50 
51  $link = $this->ui->factory()->button()->shy($content->title(), '')->withOnClick(
52  $modal->getShowSignal()
53  );
54 
55  return [$link, $modal];
56  }
57 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides fluid interface to RBAC services.
Definition: UIServices.php:24
__construct(private readonly UIServices $ui, private readonly Closure $content_as_component)