ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
◀ 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.ilMStListCompetencesSkill.php
Go to the documentation of this file.
1
<?php
22
class
ilMStListCompetencesSkill
23
{
24
protected
int
$skill_node_id
;
25
protected
string
$skill_title
;
26
protected
string
$skill_level
;
27
protected
string
$login
;
28
protected
string
$last_name
;
29
protected
string
$first_name
;
30
protected
string
$email
;
31
protected
int
$user_id
;
32
33
public
function
__construct
(
34
int
$skill_node_id,
35
string
$skill_title,
36
string
$skill_level,
37
string
$login,
38
string
$last_name,
39
string
$first_name,
40
string
$email,
41
int
$user_id
42
) {
43
$this->skill_node_id =
$skill_node_id
;
44
$this->skill_title =
$skill_title
;
45
$this->skill_level =
$skill_level
;
46
$this->
login
=
$login
;
47
$this->last_name =
$last_name
;
48
$this->first_name =
$first_name
;
49
$this->email =
$email
;
50
$this->user_id =
$user_id
;
51
}
52
53
final
public
function
getSkillNodeId
():
int
54
{
55
return
$this->skill_node_id
;
56
}
57
58
final
public
function
setSkillNodeId
(
int
$skill_node_id): void
59
{
60
$this->skill_node_id =
$skill_node_id
;
61
}
62
63
final
public
function
getSkillTitle
(): string
64
{
65
return
$this->skill_title
;
66
}
67
68
final
public
function
setSkillTitle
(
string
$skill_title): void
69
{
70
$this->skill_title =
$skill_title
;
71
}
72
73
final
public
function
getSkillLevel
(): string
74
{
75
return
$this->skill_level
;
76
}
77
78
final
public
function
setSkillLevel
(
string
$skill_level): void
79
{
80
$this->skill_level =
$skill_level
;
81
}
82
83
final
public
function
getLogin
(): string
84
{
85
return
$this->login
;
86
}
87
88
final
public
function
setLogin
(
string
$login): void
89
{
90
$this->
login
=
$login
;
91
}
92
93
final
public
function
getLastName
(): string
94
{
95
return
$this->last_name
;
96
}
97
98
final
public
function
setLastName
(
string
$last_name): void
99
{
100
$this->last_name =
$last_name
;
101
}
102
103
final
public
function
getFirstName
(): string
104
{
105
return
$this->first_name
;
106
}
107
108
final
public
function
setFirstName
(
string
$first_name): void
109
{
110
$this->first_name =
$first_name
;
111
}
112
113
final
public
function
getEmail
(): string
114
{
115
return
$this->email
;
116
}
117
118
final
public
function
setEmail
(
string
$email): void
119
{
120
$this->email =
$email
;
121
}
122
123
final
public
function
getUserId
():
int
124
{
125
return
$this->user_id
;
126
}
127
128
final
public
function
setUserId
(
int
$user_id): void
129
{
130
$this->user_id =
$user_id
;
131
}
132
}
ilMStListCompetencesSkill\$skill_level
string $skill_level
Definition:
class.ilMStListCompetencesSkill.php:26
ilMStListCompetencesSkill
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilMStListCompetencesSkill.php:22
ilMStListCompetencesSkill\setSkillTitle
setSkillTitle(string $skill_title)
Definition:
class.ilMStListCompetencesSkill.php:68
ilMStListCompetencesSkill\$first_name
string $first_name
Definition:
class.ilMStListCompetencesSkill.php:29
ilMStListCompetencesSkill\$skill_title
string $skill_title
Definition:
class.ilMStListCompetencesSkill.php:25
ilMStListCompetencesSkill\getFirstName
getFirstName()
Definition:
class.ilMStListCompetencesSkill.php:103
ilMStListCompetencesSkill\getSkillNodeId
getSkillNodeId()
Definition:
class.ilMStListCompetencesSkill.php:53
ILIAS\UI\examples\Symbol\Glyph\Login\login
login()
description: > Example for rendring a login glyph.
Definition:
login.php:41
ilMStListCompetencesSkill\__construct
__construct(int $skill_node_id, string $skill_title, string $skill_level, string $login, string $last_name, string $first_name, string $email, int $user_id)
Definition:
class.ilMStListCompetencesSkill.php:33
ilMStListCompetencesSkill\getSkillLevel
getSkillLevel()
Definition:
class.ilMStListCompetencesSkill.php:73
ilMStListCompetencesSkill\setLogin
setLogin(string $login)
Definition:
class.ilMStListCompetencesSkill.php:88
ilMStListCompetencesSkill\setEmail
setEmail(string $email)
Definition:
class.ilMStListCompetencesSkill.php:118
ilMStListCompetencesSkill\setSkillNodeId
setSkillNodeId(int $skill_node_id)
Definition:
class.ilMStListCompetencesSkill.php:58
ilMStListCompetencesSkill\setLastName
setLastName(string $last_name)
Definition:
class.ilMStListCompetencesSkill.php:98
ilMStListCompetencesSkill\getEmail
getEmail()
Definition:
class.ilMStListCompetencesSkill.php:113
ilMStListCompetencesSkill\getSkillTitle
getSkillTitle()
Definition:
class.ilMStListCompetencesSkill.php:63
ilMStListCompetencesSkill\$skill_node_id
int $skill_node_id
Definition:
class.ilMStListCompetencesSkill.php:24
ilMStListCompetencesSkill\getLastName
getLastName()
Definition:
class.ilMStListCompetencesSkill.php:93
ilMStListCompetencesSkill\$last_name
string $last_name
Definition:
class.ilMStListCompetencesSkill.php:28
ilMStListCompetencesSkill\getUserId
getUserId()
Definition:
class.ilMStListCompetencesSkill.php:123
ilMStListCompetencesSkill\getLogin
getLogin()
Definition:
class.ilMStListCompetencesSkill.php:83
ilMStListCompetencesSkill\setUserId
setUserId(int $user_id)
Definition:
class.ilMStListCompetencesSkill.php:128
ilMStListCompetencesSkill\setSkillLevel
setSkillLevel(string $skill_level)
Definition:
class.ilMStListCompetencesSkill.php:78
ilMStListCompetencesSkill\setFirstName
setFirstName(string $first_name)
Definition:
class.ilMStListCompetencesSkill.php:108
ilMStListCompetencesSkill\$user_id
int $user_id
Definition:
class.ilMStListCompetencesSkill.php:31
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilMStListCompetencesSkill\$login
string $login
Definition:
class.ilMStListCompetencesSkill.php:27
ilMStListCompetencesSkill\$email
string $email
Definition:
class.ilMStListCompetencesSkill.php:30
components
ILIAS
MyStaff
classes
ListCompetences
Skills
class.ilMStListCompetencesSkill.php
Generated on Sat Apr 5 2025 23:03:42 for ILIAS by
1.8.13 (using
Doxyfile
)