ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
class.WeekGridEntry.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  protected int $start;
30  protected int $end;
31  protected string $html;
32 
33  public function __construct(
34  int $start,
35  int $end,
36  string $html
37  ) {
38  $this->start = $start;
39  $this->end = $end;
40  $this->html = $html;
41  }
42 
43  public function getStart(): int
44  {
45  return $this->start;
46  }
47 
48  public function getEnd(): int
49  {
50  return $this->end;
51  }
52 
53  public function getHTML(): string
54  {
55  return $this->html;
56  }
57 }
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)