ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ 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\HTTP
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Container\Skills\SkillInternalRepoService
Definition:
class.SkillInternalRepoService.php:26
ILIAS\Container\Skills\SkillInternalService
Definition:
class.SkillInternalService.php:29
ILIAS\Refinery
Definition:
ByTrying.php:21
ILIAS\Container\Skills\SkillInternalService\factory
factory()
Skill service repos.
Definition:
class.SkillInternalService.php:55
ILIAS\Container\Skills
Definition:
class.ContainerMemberSkill.php:21
ILIAS\Container\Skills\SkillInternalService\repo
repo()
Definition:
class.SkillInternalService.php:42
ILIAS\Container\Skills\SkillInternalFactoryService
Definition:
class.SkillInternalFactoryService.php:26
ILIAS\Container\Skills\SkillInternalService\manager
manager()
Definition:
class.SkillInternalService.php:47
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:144
HTTP\Services
Definition:
CallbackDurationTest.php:21
ILIAS\Container\Skills\SkillInternalManagerService
Definition:
class.SkillInternalManagerService.php:26
ILIAS\Repository\refinery
refinery()
Definition:
trait.GlobalDICDomainServices.php:76
ILIAS\FileDelivery\http
static http()
Fetches the global http state from ILIAS.
Definition:
HttpServiceAware.php:55
$DIC
global $DIC
Definition:
shib_login.php:26
ILIAS\Container\Skills\SkillInternalService\gui
gui(?array $query_params=null, ?array $post_data=null)
Definition:
class.SkillInternalService.php:60
ILIAS\Container\Skills\SkillInternalService\__construct
__construct()
Definition:
class.SkillInternalService.php:34
ILIAS\Container\Skills\SkillInternalGUIService
Definition:
class.SkillInternalGUIService.php:29
ILIAS\Container\Skills\SkillInternalService\$http
HTTP Services $http
Definition:
class.SkillInternalService.php:31
ILIAS\Container\Skills\SkillInternalService\$refinery
Refinery Factory $refinery
Definition:
class.SkillInternalService.php:32
components
ILIAS
Container
Skills
Service
class.SkillInternalService.php
Generated on Sun Aug 31 2025 23:02:38 for ILIAS by
1.8.13 (using
Doxyfile
)