ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Report.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24use ILIAS\UI\Implementation\Component\ComponentHelper;
26
31class Report extends Panel implements C\Panel\Report
32{
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}
__construct(string $title, $content)
Definition: Report.php:39
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
trait HasViewControls
Trait for panels supporting view controls.