ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
class.WeekGridEntry.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
19 
25 {
26  protected int $start;
27  protected int $end;
28  protected string $html;
29 
30  public function __construct(
31  int $start,
32  int $end,
33  string $html
34  ) {
35  $this->start = $start;
36  $this->end = $end;
37  $this->html = $html;
38  }
39 
40  public function getStart(): int
41  {
42  return $this->start;
43  }
44 
45  public function getEnd(): int
46  {
47  return $this->end;
48  }
49 
50  public function getHTML(): string
51  {
52  return $this->html;
53  }
54 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(int $start, int $end, string $html)