ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.WeekGridEntry.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 
17 
23 {
24  protected int $start;
25  protected int $end;
26  protected string $html;
27 
28  public function __construct(
29  int $start,
30  int $end,
31  string $html
32  ) {
33  $this->start = $start;
34  $this->end = $end;
35  $this->html = $html;
36  }
37 
38  public function getStart() : int
39  {
40  return $this->start;
41  }
42 
43  public function getEnd() : int
44  {
45  return $this->end;
46  }
47 
48  public function getHTML() : string
49  {
50  return $this->html;
51  }
52 }
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)