ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ ilDoc Overview
class.SkillProfileUserAssignment.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
22
namespace
ILIAS\Skill\Profile
;
23
27
class
SkillProfileUserAssignment
implements
SkillProfileAssignmentInterface
28
{
29
protected
string
$type
=
"user"
;
30
protected
string
$name
=
""
;
31
protected
int
$id
= 0;
32
33
public
function
__construct
(
34
string
$name,
35
int
$id
36
) {
37
$this->name =
$name
;
38
$this->
id
=
$id
;
39
}
40
41
public
function
getType
(): string
42
{
43
return
$this->type
;
44
}
45
46
public
function
getName
(): string
47
{
48
return
$this->name
;
49
}
50
51
public
function
getId
():
int
52
{
53
return
$this->id
;
54
}
55
}
ILIAS\Skill\Profile\SkillProfileUserAssignment\$type
string $type
Definition:
class.SkillProfileUserAssignment.php:29
ILIAS\Skill\Profile\SkillProfileUserAssignment\getType
getType()
Definition:
class.SkillProfileUserAssignment.php:41
ILIAS\Skill\Profile\SkillProfileUserAssignment\__construct
__construct(string $name, int $id)
Definition:
class.SkillProfileUserAssignment.php:33
ILIAS\Skill\Profile\SkillProfileUserAssignment\$name
string $name
Definition:
class.SkillProfileUserAssignment.php:30
ILIAS\Skill\Profile\SkillProfileUserAssignment\getName
getName()
Definition:
class.SkillProfileUserAssignment.php:46
ILIAS\Skill\Profile\SkillProfileAssignmentInterface
Definition:
interface.SkillProfileAssignmentInterface.php:27
ILIAS\Skill\Profile\SkillProfileUserAssignment\$id
int $id
Definition:
class.SkillProfileUserAssignment.php:31
ILIAS\Skill\Profile
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.SkillProfile.php:22
ILIAS\Skill\Profile\SkillProfileUserAssignment
Definition:
class.SkillProfileUserAssignment.php:27
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Skill\Profile\SkillProfileUserAssignment\getId
getId()
Definition:
class.SkillProfileUserAssignment.php:51
components
ILIAS
Skill
Profile
class.SkillProfileUserAssignment.php
Generated on Wed Sep 10 2025 15:16:21 for ILIAS by
1.8.13 (using
Doxyfile
)