ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.SkillProfileUserAssignment.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Skill\Profile
;
22
26
class
SkillProfileUserAssignment
implements
SkillProfileAssignmentInterface
27
{
28
protected
string
$type
=
"user"
;
29
protected
string
$name
=
""
;
30
protected
int
$id
= 0;
31
32
public
function
__construct
(
33
string
$name,
34
int
$id
35
) {
36
$this->name =
$name
;
37
$this->
id
=
$id
;
38
}
39
40
public
function
getType
(): string
41
{
42
return
$this->type
;
43
}
44
45
public
function
getName
(): string
46
{
47
return
$this->name
;
48
}
49
50
public
function
getId
():
int
51
{
52
return
$this->id
;
53
}
54
}
ILIAS\Skill\Profile\SkillProfileUserAssignment\$type
string $type
Definition:
class.SkillProfileUserAssignment.php:28
ILIAS\Skill\Profile\SkillProfileUserAssignment\getType
getType()
Definition:
class.SkillProfileUserAssignment.php:40
ILIAS\Skill\Profile\SkillProfileUserAssignment\__construct
__construct(string $name, int $id)
Definition:
class.SkillProfileUserAssignment.php:32
ILIAS\Skill\Profile\SkillProfileUserAssignment\$name
string $name
Definition:
class.SkillProfileUserAssignment.php:29
ILIAS\Skill\Profile\SkillProfileUserAssignment\getName
getName()
Definition:
class.SkillProfileUserAssignment.php:45
ILIAS\Skill\Profile\SkillProfileAssignmentInterface
Definition:
interface.SkillProfileAssignmentInterface.php:26
ILIAS\Skill\Profile\SkillProfileUserAssignment\$id
int $id
Definition:
class.SkillProfileUserAssignment.php:30
ILIAS\Skill\Profile
Definition:
class.SkillProfile.php:21
ILIAS\Skill\Profile\SkillProfileUserAssignment
Definition:
class.SkillProfileUserAssignment.php:26
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Skill\Profile\SkillProfileUserAssignment\getId
getId()
Definition:
class.SkillProfileUserAssignment.php:50
components
ILIAS
Skill
Profile
class.SkillProfileUserAssignment.php
Generated on Sun Aug 31 2025 23:03:44 for ILIAS by
1.8.13 (using
Doxyfile
)