ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ ilDoc Overview
class.WeekGridEntry.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
18
namespace
ILIAS\BookingManager\BookingProcess
;
19
24
class
WeekGridEntry
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
}
ILIAS\BookingManager\BookingProcess
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.BookingProcessManager.php:18
ILIAS\BookingManager\BookingProcess\WeekGridEntry\__construct
__construct(int $start, int $end, string $html)
Definition:
class.WeekGridEntry.php:30
ILIAS\BookingManager\BookingProcess\WeekGridEntry\$html
string $html
Definition:
class.WeekGridEntry.php:28
ILIAS\BookingManager\BookingProcess\WeekGridEntry\getStart
getStart()
Definition:
class.WeekGridEntry.php:40
ILIAS\BookingManager\BookingProcess\WeekGridEntry\$start
int $start
Definition:
class.WeekGridEntry.php:26
ILIAS\BookingManager\BookingProcess\WeekGridEntry\getHTML
getHTML()
Definition:
class.WeekGridEntry.php:50
ILIAS\BookingManager\BookingProcess\WeekGridEntry\$end
int $end
Definition:
class.WeekGridEntry.php:27
ILIAS\Repository\html
html()
Definition:
trait.GlobalDICGUIServices.php:78
ILIAS\BookingManager\BookingProcess\WeekGridEntry\getEnd
getEnd()
Definition:
class.WeekGridEntry.php:45
ILIAS\BookingManager\BookingProcess\WeekGridEntry
Definition:
class.WeekGridEntry.php:24
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
BookingManager
BookingProcess
class.WeekGridEntry.php
Generated on Wed Sep 10 2025 15:15:08 for ILIAS by
1.8.13 (using
Doxyfile
)