ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
Standard.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
23 use ILIAS\UI\Component as C;
25 
32 class Standard extends Popover implements C\Popover\Standard
33 {
37  protected array $content;
38 
43  {
44  parent::__construct($signal_generator);
45  $content = $this->toArray($content);
46  $types = array(C\Component::class );
47  $this->checkArgListElements('content', $content, $types);
48  $this->content = $content;
49  }
50 
54  public function getContent(): array
55  {
56  return $this->content;
57  }
58 }
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...
Definition: Factory.php:21
SignalGeneratorInterface $signal_generator
Definition: Popover.php:44
__construct($content, SignalGeneratorInterface $signal_generator)
Definition: Standard.php:42
__construct(Container $dic, ilPlugin $plugin)