ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ShowOnScreenMessage.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
28 {
29  public function __construct(
30  private readonly PageFragment $inner,
31  private readonly string $type,
32  private readonly string $txt,
33  private readonly bool $keep
34  ) {
35  }
36 
37  public function render(ilGlobalTemplateInterface $main_template, Renderer $renderer): string
38  {
39  $main_template->setOnScreenMessage($this->type, $this->txt, $this->keep);
40  return $this->inner->render($main_template, $renderer);
41  }
42 }
setOnScreenMessage(string $type, string $a_txt, bool $a_keep=false)
Set a message to be displayed to the user.
$renderer
render(ilGlobalTemplateInterface $main_template, Renderer $renderer)
$txt
Definition: error.php:31
__construct(private readonly PageFragment $inner, private readonly string $type, private readonly string $txt, private readonly bool $keep)