ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
class.SkillInternalService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Container\Skills
;
22
23
use
ILIAS\HTTP
;
24
use
ILIAS\Refinery
;
25
29
class
SkillInternalService
30
{
31
protected
HTTP\Services
$http
;
32
protected
Refinery\Factory
$refinery
;
33
34
public
function
__construct
()
35
{
36
global
$DIC
;
37
38
$this->
http
= $DIC->http();
39
$this->
refinery
= $DIC->refinery();
40
}
41
42
public
function
repo
():
SkillInternalRepoService
43
{
44
return
new
SkillInternalRepoService
();
45
}
46
47
public
function
manager
():
SkillInternalManagerService
48
{
49
return
new
SkillInternalManagerService
();
50
}
51
55
public
function
factory
():
SkillInternalFactoryService
56
{
57
return
new
SkillInternalFactoryService
();
58
}
59
60
public
function
gui
(
61
?array $query_params =
null
,
62
?array $post_data =
null
63
):
SkillInternalGUIService
{
64
return
new
SkillInternalGUIService
(
65
$this->
http
,
66
$this->
refinery
,
67
$query_params = null,
68
$post_data = null
69
);
70
}
71
}
ILIAS\Container\Skills\SkillInternalFactoryService
Definition:
class.SkillInternalFactoryService.php:27
ILIAS\Container\Skills\SkillInternalGUIService
Definition:
class.SkillInternalGUIService.php:30
ILIAS\Container\Skills\SkillInternalManagerService
Definition:
class.SkillInternalManagerService.php:27
ILIAS\Container\Skills\SkillInternalRepoService
Definition:
class.SkillInternalRepoService.php:27
ILIAS\Container\Skills\SkillInternalService
Definition:
class.SkillInternalService.php:30
ILIAS\Container\Skills\SkillInternalService\$refinery
Refinery Factory $refinery
Definition:
class.SkillInternalService.php:32
ILIAS\Container\Skills\SkillInternalService\gui
gui(?array $query_params=null, ?array $post_data=null)
Definition:
class.SkillInternalService.php:60
ILIAS\Container\Skills\SkillInternalService\repo
repo()
Definition:
class.SkillInternalService.php:42
ILIAS\Container\Skills\SkillInternalService\manager
manager()
Definition:
class.SkillInternalService.php:47
ILIAS\Container\Skills\SkillInternalService\factory
factory()
Skill service repos.
Definition:
class.SkillInternalService.php:55
ILIAS\Container\Skills\SkillInternalService\__construct
__construct()
Definition:
class.SkillInternalService.php:34
ILIAS\Container\Skills\SkillInternalService\$http
HTTP Services $http
Definition:
class.SkillInternalService.php:31
return
return['delivery_method'=> 'php',]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
delivery_method.php:21
HTTP\Services
Definition:
CallbackDurationTest.php:21
ILIAS\Container\Skills
Definition:
class.ContainerMemberSkill.php:21
ILIAS\FileDelivery\http
static http()
Fetches the global http state from ILIAS.
Definition:
HttpServiceAware.php:55
ILIAS\HTTP
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Refinery
Definition:
ByTrying.php:21
ILIAS\Repository\refinery
refinery()
Definition:
trait.GlobalDICDomainServices.php:76
$DIC
global $DIC
Definition:
shib_login.php:26
components
ILIAS
Container
Skills
Service
class.SkillInternalService.php
Generated on Sat Oct 18 2025 23:02:49 for ILIAS by
1.9.4 (using
Doxyfile
)