ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
Legacy.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;
24 
28 class Legacy extends Secondary implements C\Panel\Secondary\Legacy
29 {
30  protected C\Legacy\Legacy $legacy;
31 
32  public function __construct(string $title, C\Legacy\Legacy $legacy)
33  {
34  $this->title = $title;
35  $this->legacy = $legacy;
36  }
37 
41  public function getLegacyComponent(): C\Legacy\Legacy
42  {
43  return $this->legacy;
44  }
45 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(string $title, C\Legacy\Legacy $legacy)
Definition: Legacy.php:32