ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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.SkillProfile.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Skill\Profile
;
22
28
class
SkillProfile
29
{
30
protected
int
$id
= 0;
31
protected
string
$title
=
""
;
32
protected
string
$description
=
""
;
33
protected
int
$skill_tree_id
= 0;
34
protected
string
$image_id
=
""
;
35
protected
int
$ref_id
= 0;
36
37
public
function
__construct
(
38
int
$id,
39
string
$title,
40
string
$description,
41
int
$skill_tree_id,
42
string
$image_id =
""
,
43
int
$ref_id = 0
44
) {
45
$this->
id
=
$id
;
46
$this->title =
$title
;
47
$this->description =
$description
;
48
$this->skill_tree_id =
$skill_tree_id
;
49
$this->image_id =
$image_id
;
50
$this->ref_id =
$ref_id
;
51
}
52
53
public
function
getId
():
int
54
{
55
return
$this->id
;
56
}
57
58
public
function
getTitle
(): string
59
{
60
return
$this->title
;
61
}
62
63
public
function
getDescription
(): string
64
{
65
return
$this->description
;
66
}
67
68
public
function
getSkillTreeId
():
int
69
{
70
return
$this->skill_tree_id
;
71
}
72
73
public
function
getImageId
(): string
74
{
75
return
$this->image_id
;
76
}
77
78
public
function
getRefId
():
int
79
{
80
return
$this->ref_id
;
81
}
82
}
ILIAS\Skill\Profile\SkillProfile\__construct
__construct(int $id, string $title, string $description, int $skill_tree_id, string $image_id="", int $ref_id=0)
Definition:
class.SkillProfile.php:37
ILIAS\Skill\Profile\SkillProfile
Skill profile.
Definition:
class.SkillProfile.php:28
ILIAS\Skill\Profile\SkillProfile\$description
string $description
Definition:
class.SkillProfile.php:32
ILIAS\Skill\Profile\SkillProfile\getTitle
getTitle()
Definition:
class.SkillProfile.php:58
ILIAS\Skill\Profile\SkillProfile\$skill_tree_id
int $skill_tree_id
Definition:
class.SkillProfile.php:33
ILIAS\Skill\Profile\SkillProfile\$image_id
string $image_id
Definition:
class.SkillProfile.php:34
ILIAS\Skill\Profile\SkillProfile\getId
getId()
Definition:
class.SkillProfile.php:53
ILIAS\Skill\Profile\SkillProfile\getDescription
getDescription()
Definition:
class.SkillProfile.php:63
ILIAS\Skill\Profile\SkillProfile\getRefId
getRefId()
Definition:
class.SkillProfile.php:78
ILIAS\Skill\Profile\SkillProfile\getImageId
getImageId()
Definition:
class.SkillProfile.php:73
ILIAS\Skill\Profile\SkillProfile\$title
string $title
Definition:
class.SkillProfile.php:31
ILIAS\Skill\Profile
Definition:
class.SkillProfile.php:21
ILIAS\Skill\Profile\SkillProfile\$ref_id
int $ref_id
Definition:
class.SkillProfile.php:35
ILIAS\Skill\Profile\SkillProfile\$id
int $id
Definition:
class.SkillProfile.php:30
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Skill\Profile\SkillProfile\getSkillTreeId
getSkillTreeId()
Definition:
class.SkillProfile.php:68
components
ILIAS
Skill
Profile
class.SkillProfile.php
Generated on Wed Apr 2 2025 23:03:35 for ILIAS by
1.8.13 (using
Doxyfile
)