ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
class.InternalDataService.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\BookingManager
;
22
23
use
ilBookingPreferences
;
24
use
ilBookingPreferencesFactory
;
25
use
ILIAS\BookingManager\BookingProcess\WeekGridEntry
;
26
31
class
InternalDataService
32
{
33
protected
ilBookingPreferencesFactory
$preferences_factory
;
34
35
public
function
__construct
()
36
{
37
$this->preferences_factory =
new
ilBookingPreferencesFactory
();
38
//$this->..._factory = new ...\DataFactory();
39
}
40
41
public
function
preferences
(array $preferences):
ilBookingPreferences
42
{
43
return
$this->preferences_factory->preferences($preferences);
44
}
45
46
public
function
weekEntry
(
47
int
$start,
48
int
$end,
49
string
$html
50
) :
WeekGridEntry
{
51
return
new
WeekGridEntry
(
52
$start,
53
$end,
54
$html
55
);
56
}
57
}
ILIAS\BookingManager\InternalDataService\preferences
preferences(array $preferences)
Definition:
class.InternalDataService.php:41
ILIAS\BookingManager\InternalDataService\$preferences_factory
ilBookingPreferencesFactory $preferences_factory
Definition:
class.InternalDataService.php:33
WeekGridEntry
ILIAS\BookingManager
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilBookingPreferences
ILIAS\BookingManager\InternalDataService\weekEntry
weekEntry(int $start, int $end, string $html)
Definition:
class.InternalDataService.php:46
ILIAS\BookingManager\InternalDataService\__construct
__construct()
Definition:
class.InternalDataService.php:35
ilBookingPreferencesFactory
ILIAS\BookingManager\InternalDataService
Repository internal data service.
Definition:
class.InternalDataService.php:31
ILIAS\BookingManager\BookingProcess\WeekGridEntry
Definition:
class.WeekGridEntry.php:22
Modules
BookingManager
Service
class.InternalDataService.php
Generated on Wed Sep 10 2025 14:10:33 for ILIAS by
1.8.13 (using
Doxyfile
)