ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
class.ContainerSkill.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
22
namespace
ILIAS\Container\Skills
;
23
24
use
ILIAS\Skill\Profile\SkillProfile
;
25
use
ILIAS\Skill\GapAnalysisSkill
;
26
30
class
ContainerSkill
implements
GapAnalysisSkill
31
{
32
protected
int
$skill_id
= 0;
33
protected
int
$tref_id
= 0;
34
protected
int
$cont_obj_id
= 0;
35
protected
string
$title
=
""
;
36
protected
?
SkillProfile
$profile
= null;
37
38
public
function
__construct
(
39
int
$skill_id,
40
int
$tref_id,
41
int
$cont_obj_id,
42
string
$title =
""
,
43
SkillProfile
$profile = null
44
) {
45
$this->skill_id =
$skill_id
;
46
$this->tref_id =
$tref_id
;
47
$this->cont_obj_id =
$cont_obj_id
;
48
$this->title =
$title
;
49
$this->
profile
=
$profile
;
50
}
51
52
public
function
getBaseSkillId
():
int
53
{
54
return
$this->skill_id
;
55
}
56
57
public
function
getTrefId
():
int
58
{
59
return
$this->tref_id
;
60
}
61
62
public
function
getContainerObjectId
():
int
63
{
64
return
$this->cont_obj_id
;
65
}
66
67
public
function
getTitle
(): string
68
{
69
return
$this->title
;
70
}
71
72
public
function
getProfile
(): ?
SkillProfile
73
{
74
return
$this->profile
;
75
}
76
}
ILIAS\Container\Skills\ContainerSkill\getProfile
getProfile()
Definition:
class.ContainerSkill.php:72
ILIAS\Skill\Profile\SkillProfile
Skill profile.
Definition:
class.SkillProfile.php:29
ILIAS\Container\Skills\ContainerSkill\$title
string $title
Definition:
class.ContainerSkill.php:35
ILIAS\Container\Skills\ContainerSkill\$tref_id
int $tref_id
Definition:
class.ContainerSkill.php:33
ILIAS\Container\Skills
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ContainerMemberSkill.php:22
ILIAS\Container\Skills\ContainerSkill\getTrefId
getTrefId()
Definition:
class.ContainerSkill.php:57
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:38
ILIAS\Container\Skills\ContainerSkill\$cont_obj_id
int $cont_obj_id
Definition:
class.ContainerSkill.php:34
ILIAS\Container\Skills\ContainerSkill\getBaseSkillId
getBaseSkillId()
Definition:
class.ContainerSkill.php:52
ILIAS\Container\Skills\ContainerSkill
Definition:
class.ContainerSkill.php:30
ILIAS\Container\Skills\ContainerSkill\$profile
SkillProfile $profile
Definition:
class.ContainerSkill.php:36
ILIAS\Repository\profile
profile()
Definition:
trait.GlobalDICDomainServices.php:108
ILIAS\Container\Skills\ContainerSkill\getTitle
getTitle()
Definition:
class.ContainerSkill.php:67
ILIAS\Container\Skills\ContainerSkill\$skill_id
int $skill_id
Definition:
class.ContainerSkill.php:32
SkillProfile
ILIAS\Container\Skills\ContainerSkill\getContainerObjectId
getContainerObjectId()
Definition:
class.ContainerSkill.php:62
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Skill\GapAnalysisSkill
Definition:
interface.GapAnalysisSkill.php:27
GapAnalysisSkill
Services
Container
Skills
classes
class.ContainerSkill.php
Generated on Wed Sep 10 2025 14:11:23 for ILIAS by
1.8.13 (using
Doxyfile
)