ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
class.SkillProfileCompletion.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
SkillProfileCompletion
28
{
29
protected
int
$profile_id
= 0;
30
protected
int
$user_id
= 0;
31
protected
string
$date
=
""
;
32
protected
bool
$fulfilled
=
false
;
33
34
public
function
__construct
(
35
int
$profile_id,
36
int
$user_id,
37
string
$date,
38
bool
$fulfilled
39
) {
40
$this->profile_id =
$profile_id
;
41
$this->user_id =
$user_id
;
42
$this->date =
$date
;
43
$this->fulfilled =
$fulfilled
;
44
}
45
46
public
function
getProfileId
():
int
47
{
48
return
$this->profile_id
;
49
}
50
51
public
function
getUserId
():
int
52
{
53
return
$this->user_id
;
54
}
55
56
public
function
getDate
(): string
57
{
58
return
$this->date
;
59
}
60
61
public
function
getFulfilled
(): bool
62
{
63
return
$this->fulfilled
;
64
}
65
}
ILIAS\Skill\Profile\SkillProfileCompletion\getFulfilled
getFulfilled()
Definition:
class.SkillProfileCompletion.php:61
ILIAS\Skill\Profile\SkillProfileCompletion\$user_id
int $user_id
Definition:
class.SkillProfileCompletion.php:30
ILIAS\Skill\Profile\SkillProfileCompletion\$profile_id
int $profile_id
Definition:
class.SkillProfileCompletion.php:29
ILIAS\Skill\Profile\SkillProfileCompletion
Definition:
class.SkillProfileCompletion.php:27
ILIAS\Skill\Profile\SkillProfileCompletion\getDate
getDate()
Definition:
class.SkillProfileCompletion.php:56
ILIAS\Skill\Profile\SkillProfileCompletion\$date
string $date
Definition:
class.SkillProfileCompletion.php:31
ILIAS\Skill\Profile\SkillProfileCompletion\getProfileId
getProfileId()
Definition:
class.SkillProfileCompletion.php:46
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\SkillProfileCompletion\__construct
__construct(int $profile_id, int $user_id, string $date, bool $fulfilled)
Definition:
class.SkillProfileCompletion.php:34
ILIAS\Skill\Profile\SkillProfileCompletion\$fulfilled
bool $fulfilled
Definition:
class.SkillProfileCompletion.php:32
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ILIAS\Skill\Profile\SkillProfileCompletion\getUserId
getUserId()
Definition:
class.SkillProfileCompletion.php:51
Services
Skill
Profile
class.SkillProfileCompletion.php
Generated on Wed Sep 10 2025 14:11:54 for ILIAS by
1.8.13 (using
Doxyfile
)