ILIAS
trunk Revision v11.0_alpha-1769-g99a433fe2dc
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ScheduleManager.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\BookingManager\Schedule
;
22
23
use
ILIAS\BookingManager\InternalRepoService
;
24
use
ILIAS\BookingManager\InternalDataService
;
25
use
ILIAS\BookingManager\InternalDomainService
;
26
30
class
ScheduleManager
31
{
32
protected
int
$pool_id
;
33
protected
SchedulesDBRepository
$schedule_repo
;
34
protected
InternalRepoService
$repo
;
35
protected
InternalDataService
$data
;
36
protected
InternalDomainService
$domain
;
37
38
public
function
__construct
(
39
InternalDataService
$data,
40
InternalRepoService
$repo,
41
InternalDomainService
$domain,
42
int
$pool_id
43
) {
44
$this->schedule_repo = $repo->
schedules
();
45
$this->schedule_repo->loadDataOfPool($pool_id);
46
$this->pool_id =
$pool_id
;
47
}
48
49
public
function
getScheduleList
(): array
50
{
51
return
$this->schedule_repo->getScheduleList($this->pool_id);
52
}
53
54
public
function
hasSchedules
(): bool
55
{
56
return
$this->schedule_repo->hasSchedules($this->pool_id);
57
}
58
63
public
function
getScheduleData
(): array
64
{
65
return
$this->schedule_repo->getScheduleData($this->pool_id);
66
}
67
}
ILIAS\BookingManager\Schedule\ScheduleManager
Definition:
class.ScheduleManager.php:30
ILIAS\BookingManager\Schedule\ScheduleManager\$data
InternalDataService $data
Definition:
class.ScheduleManager.php:35
ILIAS\BookingManager\Schedule\ScheduleManager\$pool_id
int $pool_id
Definition:
class.ScheduleManager.php:32
InternalRepoService
ILIAS\BookingManager\Schedule\SchedulesDBRepository
Repo class for schedules.
Definition:
class.SchedulesDBRepository.php:25
ILIAS\BookingManager\InternalDomainService
Author: Alexander Killing killing@leifos.de
Definition:
class.InternalDomainService.php:34
ILIAS\BookingManager\Schedule\ScheduleManager\__construct
__construct(InternalDataService $data, InternalRepoService $repo, InternalDomainService $domain, int $pool_id)
Definition:
class.ScheduleManager.php:38
ILIAS\BookingManager\Schedule\ScheduleManager\getScheduleList
getScheduleList()
Definition:
class.ScheduleManager.php:49
ILIAS\BookingManager\Schedule\ScheduleManager\getScheduleData
getScheduleData()
Definition:
class.ScheduleManager.php:63
ILIAS\BookingManager\InternalRepoService
Definition:
class.InternalRepoService.php:32
InternalDomainService
ILIAS\BookingManager\Schedule\ScheduleManager\$schedule_repo
SchedulesDBRepository $schedule_repo
Definition:
class.ScheduleManager.php:33
ILIAS\BookingManager\InternalDataService
Repository internal data service.
Definition:
class.InternalDataService.php:32
ILIAS\BookingManager\InternalRepoService\schedules
schedules()
Definition:
class.InternalRepoService.php:72
ILIAS\BookingManager\Schedule\ScheduleManager\hasSchedules
hasSchedules()
Definition:
class.ScheduleManager.php:54
ILIAS\BookingManager\Schedule\ScheduleManager\$domain
InternalDomainService $domain
Definition:
class.ScheduleManager.php:36
ILIAS\BookingManager\Schedule
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ScheduleManager.php:21
InternalDataService
ILIAS\BookingManager\Schedule\ScheduleManager\$repo
InternalRepoService $repo
Definition:
class.ScheduleManager.php:34
components
ILIAS
BookingManager
Schedule
class.ScheduleManager.php
Generated on Sun Apr 13 2025 23:02:24 for ILIAS by
1.8.13 (using
Doxyfile
)