ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.WeekGridEntry.php
Go to the documentation of this file.
1<?php
2
19declare(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}
__construct(int $start, int $end, string $html)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...