ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.ContainerSkill.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\Skill\Profile\SkillProfile
;
24
use
ILIAS\Skill\GapAnalysisSkill
;
25
29
class
ContainerSkill
implements
GapAnalysisSkill
30
{
31
protected
int
$skill_id
= 0;
32
protected
int
$tref_id
= 0;
33
protected
int
$cont_obj_id
= 0;
34
protected
string
$title
=
""
;
35
protected
?
SkillProfile
$profile
=
null
;
36
37
public
function
__construct
(
38
int
$skill_id,
39
int
$tref_id,
40
int
$cont_obj_id,
41
string
$title =
""
,
42
?
SkillProfile
$profile =
null
43
) {
44
$this->skill_id =
$skill_id
;
45
$this->tref_id =
$tref_id
;
46
$this->cont_obj_id =
$cont_obj_id
;
47
$this->title =
$title
;
48
$this->
profile
=
$profile
;
49
}
50
51
public
function
getBaseSkillId
():
int
52
{
53
return
$this->skill_id
;
54
}
55
56
public
function
getTrefId
():
int
57
{
58
return
$this->tref_id
;
59
}
60
61
public
function
getContainerObjectId
():
int
62
{
63
return
$this->cont_obj_id
;
64
}
65
66
public
function
getTitle
(): string
67
{
68
return
$this->title
;
69
}
70
71
public
function
getProfile
(): ?
SkillProfile
72
{
73
return
$this->profile
;
74
}
75
}
ILIAS\Container\Skills\ContainerSkill\getProfile
getProfile()
Definition:
class.ContainerSkill.php:71
ILIAS\Skill\Profile\SkillProfile
Skill profile.
Definition:
class.SkillProfile.php:28
ILIAS\Container\Skills\ContainerSkill\$title
string $title
Definition:
class.ContainerSkill.php:34
ILIAS\Container\Skills\ContainerSkill\$tref_id
int $tref_id
Definition:
class.ContainerSkill.php:32
ILIAS\Container\Skills
Definition:
class.ContainerMemberSkill.php:21
ILIAS\Container\Skills\ContainerSkill\__construct
__construct(int $skill_id, int $tref_id, int $cont_obj_id, string $title="", ?SkillProfile $profile=null)
Definition:
class.ContainerSkill.php:37
ILIAS\Container\Skills\ContainerSkill\getTrefId
getTrefId()
Definition:
class.ContainerSkill.php:56
ILIAS\Repository\profile
profile()
Definition:
trait.GlobalDICDomainServices.php:111
ILIAS\Container\Skills\ContainerSkill\$cont_obj_id
int $cont_obj_id
Definition:
class.ContainerSkill.php:33
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:144
ILIAS\Container\Skills\ContainerSkill\getBaseSkillId
getBaseSkillId()
Definition:
class.ContainerSkill.php:51
ILIAS\Container\Skills\ContainerSkill
Definition:
class.ContainerSkill.php:29
ILIAS\Container\Skills\ContainerSkill\$profile
SkillProfile $profile
Definition:
class.ContainerSkill.php:35
ILIAS\Container\Skills\ContainerSkill\getTitle
getTitle()
Definition:
class.ContainerSkill.php:66
ILIAS\Container\Skills\ContainerSkill\$skill_id
int $skill_id
Definition:
class.ContainerSkill.php:31
SkillProfile
ILIAS\Container\Skills\ContainerSkill\getContainerObjectId
getContainerObjectId()
Definition:
class.ContainerSkill.php:61
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Skill\GapAnalysisSkill
Definition:
interface.GapAnalysisSkill.php:26
GapAnalysisSkill
components
ILIAS
Container
Skills
classes
class.ContainerSkill.php
Generated on Sun Aug 31 2025 23:02:37 for ILIAS by
1.8.13 (using
Doxyfile
)