ILIAS  trunk Revision v11.0_alpha-1843-g9e1fad99175
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Report.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\UI\Component as C;
26 
31 class Report extends Panel implements C\Panel\Report
32 {
33  use HasViewControls;
34  use ComponentHelper;
35 
39  public function __construct(string $title, $content)
40  {
41  $types = [C\Panel\Sub::class];
42  $content = $this->toArray($content);
43  $this->checkArgListElements("content", $content, $types);
44 
46  }
47 }
trait HasViewControls
Trait for panels supporting view controls.
__construct(string $title, $content)
Definition: Report.php:39
__construct(Container $dic, ilPlugin $plugin)