ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.Service.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Export
;
22
26
class
Service
27
{
28
protected
static
array
$instance
= [];
29
public
function
__construct
()
30
{
31
}
32
33
public
function
internal
():
InternalService
34
{
35
return
self::$instance[
"internal"
] ??=
new
InternalService
();
36
}
37
38
public
function
domain
():
ExternalDomainService
39
{
40
return
self::$instance[
"domain"
] ??=
new
ExternalDomainService
(
41
$this->
internal
()->
domain
()
42
);
43
}
44
45
}
ILIAS\Export\Service\__construct
__construct()
Definition:
class.Service.php:29
ILIAS\Export\Service\$instance
static array $instance
Definition:
class.Service.php:28
ILIAS\Export\Service\domain
function domain()
Definition:
class.Service.php:38
ILIAS\Export
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Export\Service
Definition:
class.Service.php:26
ILIAS\Export\InternalService
Export internal service.
Definition:
class.InternalService.php:27
ILIAS\Export\ExternalDomainService
Definition:
class.ExternalDomainService.php:25
components
ILIAS
Export
Service
class.Service.php
Generated on Sun Aug 31 2025 23:02:16 for ILIAS by
1.8.13 (using
Doxyfile
)