ILIAS
trunk Revision v11.0_alpha-1749-g1a06bdef097
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
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:142
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:22
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 Wed Apr 9 2025 23:02:53 for ILIAS by
1.8.13 (using
Doxyfile
)