ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.WeekGridEntry.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\BookingManager\BookingProcess
;
22
27
class
WeekGridEntry
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
}
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:21
ILIAS\BookingManager\BookingProcess\WeekGridEntry\__construct
__construct(int $start, int $end, string $html)
Definition:
class.WeekGridEntry.php:33
ILIAS\BookingManager\BookingProcess\WeekGridEntry\$html
string $html
Definition:
class.WeekGridEntry.php:31
ILIAS\BookingManager\BookingProcess\WeekGridEntry\getStart
getStart()
Definition:
class.WeekGridEntry.php:43
ILIAS\BookingManager\BookingProcess\WeekGridEntry\$start
int $start
Definition:
class.WeekGridEntry.php:29
ILIAS\BookingManager\BookingProcess\WeekGridEntry\getHTML
getHTML()
Definition:
class.WeekGridEntry.php:53
ILIAS\BookingManager\BookingProcess\WeekGridEntry\$end
int $end
Definition:
class.WeekGridEntry.php:30
ILIAS\Repository\html
html()
Definition:
trait.GlobalDICGUIServices.php:78
ILIAS\BookingManager\BookingProcess\WeekGridEntry\getEnd
getEnd()
Definition:
class.WeekGridEntry.php:48
ILIAS\BookingManager\BookingProcess\WeekGridEntry
Definition:
class.WeekGridEntry.php:27
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
BookingManager
BookingProcess
class.WeekGridEntry.php
Generated on Sun Aug 31 2025 23:02:25 for ILIAS by
1.8.13 (using
Doxyfile
)