ILIAS
release_8 Revision v8.23
◀ ilDoc Overview
class.ilObjectService.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
use
ILIAS\Filesystem\Filesystems
;
22
use
ILIAS\FileUpload\FileUpload
;
23
24
class
ilObjectService
implements
ilObjectServiceInterface
25
{
26
protected
ilLanguage
$lng
;
27
protected
ilSetting
$settings
;
28
protected
Filesystems
$filesystem
;
29
protected
FileUpload
$upload
;
30
31
public
function
__construct
(
32
ilLanguage
$lng,
33
ilSetting
$settings,
34
Filesystems
$filesystem,
35
FileUpload
$upload
36
) {
37
$this->
lng
=
$lng
;
38
$this->
settings
=
$settings
;
39
$this->
filesystem
=
$filesystem
;
40
$this->
upload
=
$upload
;
41
}
42
43
public
function
language
():
ilLanguage
44
{
45
return
$this->lng
;
46
}
47
48
public
function
settings
():
ilSetting
49
{
50
return
$this->settings
;
51
}
52
53
public
function
filesystem
():
Filesystems
54
{
55
return
$this->filesystem
;
56
}
57
58
public
function
upload
():
FileUpload
59
{
60
return
$this->upload
;
61
}
62
63
public
function
commonSettings
():
ilObjectCommonSettings
64
{
65
return
new
ilObjectCommonSettings
($this);
66
}
67
}
ilObjectCommonSettings
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilObjectCommonSettings.php:21
ilLanguage
ilObjectService\upload
upload()
Definition:
class.ilObjectService.php:58
ilObjectService
Definition:
class.ilObjectService.php:24
ilObjectService\language
language()
Definition:
class.ilObjectService.php:43
ilObjectService\filesystem
filesystem()
Definition:
class.ilObjectService.php:53
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:56
Filesystems
ilObjectService\$upload
FileUpload $upload
Definition:
class.ilObjectService.php:29
ilObjectService\__construct
__construct(ilLanguage $lng, ilSetting $settings, Filesystems $filesystem, FileUpload $upload)
Definition:
class.ilObjectService.php:31
ilObjectService\settings
settings()
Definition:
class.ilObjectService.php:48
ILIAS\FileUpload\FileUpload
Class FileUpload.
Definition:
FileUpload.php:34
ilObjectService\commonSettings
commonSettings()
Definition:
class.ilObjectService.php:63
ilObjectService\$lng
ilLanguage $lng
Definition:
class.ilObjectService.php:26
ilObjectServiceInterface
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
interface.ilObjectServiceInterface.php:21
ilSetting
ILIAS\Filesystem\Filesystems
Class Filesystems.
Definition:
Filesystems.php:29
ilObjectService\$filesystem
Filesystems $filesystem
Definition:
class.ilObjectService.php:28
ilObjectService\$settings
ilSetting $settings
Definition:
class.ilObjectService.php:27
FileUpload
Services
Object
Service
classes
class.ilObjectService.php
Generated on Sun Aug 31 2025 22:02:29 for ILIAS by
1.8.13 (using
Doxyfile
)