ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilMStListCompetencesSkill.php
Go to the documentation of this file.
1
<?php
2
8
class
ilMStListCompetencesSkill
9
{
10
14
protected
$skill_node_id
;
18
protected
$skill_title
;
22
protected
$skill_level
;
26
protected
$login
;
30
protected
$last_name
;
34
protected
$first_name
;
38
protected
$email
;
42
protected
$user_id
;
43
44
55
public
function
__construct
(
int
$skill_node_id
,
string
$skill_title
,
string
$skill_level
,
string
$login
,
string
$last_name
,
string
$first_name
,
string
$email
,
int
$user_id
)
56
{
57
$this->skill_node_id =
$skill_node_id
;
58
$this->skill_title =
$skill_title
;
59
$this->skill_level =
$skill_level
;
60
$this->
login
=
$login
;
61
$this->last_name =
$last_name
;
62
$this->first_name =
$first_name
;
63
$this->email =
$email
;
64
$this->user_id =
$user_id
;
65
}
66
67
71
public
function
getSkillNodeId
() : int
72
{
73
return
$this->skill_node_id
;
74
}
75
76
80
public
function
setSkillNodeId
(
int
$skill_node_id
) : void
81
{
82
$this->skill_node_id =
$skill_node_id
;
83
}
84
85
89
public
function
getSkillTitle
() : string
90
{
91
return
$this->skill_title
;
92
}
93
94
98
public
function
setSkillTitle
(
string
$skill_title
) : void
99
{
100
$this->skill_title =
$skill_title
;
101
}
102
103
107
public
function
getSkillLevel
() : string
108
{
109
return
$this->skill_level
;
110
}
111
112
116
public
function
setSkillLevel
(
string
$skill_level
) : void
117
{
118
$this->skill_level =
$skill_level
;
119
}
120
121
125
public
function
getLogin
() : string
126
{
127
return
$this->login
;
128
}
129
130
134
public
function
setLogin
(
string
$login
) : void
135
{
136
$this->
login
=
$login
;
137
}
138
139
143
public
function
getLastName
() : string
144
{
145
return
$this->last_name
;
146
}
147
148
152
public
function
setLastName
(
string
$last_name
) : void
153
{
154
$this->last_name =
$last_name
;
155
}
156
157
161
public
function
getFirstName
() : string
162
{
163
return
$this->first_name
;
164
}
165
166
170
public
function
setFirstName
(
string
$first_name
) : void
171
{
172
$this->first_name =
$first_name
;
173
}
174
175
179
public
function
getEmail
() : string
180
{
181
return
$this->email
;
182
}
183
184
188
public
function
setEmail
(
string
$email
) : void
189
{
190
$this->email =
$email
;
191
}
192
193
197
public
function
getUserId
() : int
198
{
199
return
$this->user_id
;
200
}
201
202
206
public
function
setUserId
(
int
$user_id
) : void
207
{
208
$this->user_id =
$user_id
;
209
}
210
}
ilMStListCompetencesSkill\$skill_title
$skill_title
Definition:
class.ilMStListCompetencesSkill.php:18
ilMStListCompetencesSkill\$email
$email
Definition:
class.ilMStListCompetencesSkill.php:38
ilMStListCompetencesSkill\setSkillTitle
setSkillTitle(string $skill_title)
Definition:
class.ilMStListCompetencesSkill.php:98
ilMStListCompetencesSkill\$skill_level
$skill_level
Definition:
class.ilMStListCompetencesSkill.php:22
ilMStListCompetencesSkill\$first_name
$first_name
Definition:
class.ilMStListCompetencesSkill.php:34
ilMStListCompetencesSkill\getFirstName
getFirstName()
Definition:
class.ilMStListCompetencesSkill.php:161
ilMStListCompetencesSkill\getSkillNodeId
getSkillNodeId()
Definition:
class.ilMStListCompetencesSkill.php:71
login
login()
Definition:
login.php:2
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)
ilMStListCompetencesSkill constructor.
Definition:
class.ilMStListCompetencesSkill.php:55
ilMStListCompetencesSkill\getSkillLevel
getSkillLevel()
Definition:
class.ilMStListCompetencesSkill.php:107
ilMStListCompetencesSkill\setLogin
setLogin(string $login)
Definition:
class.ilMStListCompetencesSkill.php:134
ilMStListCompetencesSkill\setEmail
setEmail(string $email)
Definition:
class.ilMStListCompetencesSkill.php:188
ilMStListCompetencesSkill\setSkillNodeId
setSkillNodeId(int $skill_node_id)
Definition:
class.ilMStListCompetencesSkill.php:80
ilMStListCompetencesSkill\setLastName
setLastName(string $last_name)
Definition:
class.ilMStListCompetencesSkill.php:152
ilMStListCompetencesSkill\getEmail
getEmail()
Definition:
class.ilMStListCompetencesSkill.php:179
ilMStListCompetencesSkill\getSkillTitle
getSkillTitle()
Definition:
class.ilMStListCompetencesSkill.php:89
ilMStListCompetencesSkill\getLastName
getLastName()
Definition:
class.ilMStListCompetencesSkill.php:143
ilMStListCompetencesSkill\$user_id
$user_id
Definition:
class.ilMStListCompetencesSkill.php:42
ilMStListCompetencesSkill\getUserId
getUserId()
Definition:
class.ilMStListCompetencesSkill.php:197
ilMStListCompetencesSkill\$skill_node_id
$skill_node_id
Definition:
class.ilMStListCompetencesSkill.php:14
ilMStListCompetencesSkill\getLogin
getLogin()
Definition:
class.ilMStListCompetencesSkill.php:125
ilMStListCompetencesSkill\setUserId
setUserId(int $user_id)
Definition:
class.ilMStListCompetencesSkill.php:206
ilMStListCompetencesSkill\setSkillLevel
setSkillLevel(string $skill_level)
Definition:
class.ilMStListCompetencesSkill.php:116
ilMStListCompetencesSkill\setFirstName
setFirstName(string $first_name)
Definition:
class.ilMStListCompetencesSkill.php:170
ilMStListCompetencesSkill
ilMStListCompetencesSkill\$last_name
$last_name
Definition:
class.ilMStListCompetencesSkill.php:30
ilMStListCompetencesSkill\$login
$login
Definition:
class.ilMStListCompetencesSkill.php:26
Services
MyStaff
classes
ListCompetences
Skills
class.ilMStListCompetencesSkill.php
Generated on Mon Apr 14 2025 21:01:34 for ILIAS by
1.8.13 (using
Doxyfile
)