ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
class.WeekGridEntry.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
16
namespace
ILIAS\BookingManager\BookingProcess
;
17
22
class
WeekGridEntry
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
}
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:28
ILIAS\BookingManager\BookingProcess\WeekGridEntry\$html
string $html
Definition:
class.WeekGridEntry.php:26
ILIAS\BookingManager\BookingProcess\WeekGridEntry\getStart
getStart()
Definition:
class.WeekGridEntry.php:38
ILIAS\BookingManager\BookingProcess\WeekGridEntry\$start
int $start
Definition:
class.WeekGridEntry.php:24
ILIAS\BookingManager\BookingProcess\WeekGridEntry\getHTML
getHTML()
Definition:
class.WeekGridEntry.php:48
ILIAS\BookingManager\BookingProcess\WeekGridEntry\$end
int $end
Definition:
class.WeekGridEntry.php:25
ILIAS\Repository\html
html()
Definition:
trait.GlobalDICGUIServices.php:78
ILIAS\BookingManager\BookingProcess\WeekGridEntry\getEnd
getEnd()
Definition:
class.WeekGridEntry.php:43
ILIAS\BookingManager\BookingProcess\WeekGridEntry
Definition:
class.WeekGridEntry.php:22
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
Modules
BookingManager
BookingProcess
class.WeekGridEntry.php
Generated on Wed Sep 10 2025 14:10:41 for ILIAS by
1.8.13 (using
Doxyfile
)