ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
Report.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2016 Timon Amstutz <timon.amstutz@ilub.unibe.ch> Extended GPL, see docs/LICENSE */
4 
6 
7 use ILIAS\UI\Component as C;
9 
14 class Report extends Panel implements C\Panel\Report {
15  use ComponentHelper;
16 
21  public function __construct($title,$content) {
22  $types = [C\Panel\Sub::class];
23  $content = $this->toArray($content);
24  $this->checkArgListElements("content", $content, $types);
25 
26  parent::__construct($title,$content);
27  }
28 }