44 ?: $DIC->skills()->internal()->repo()->getProfileCompletionRepo();
45 $this->tree_service = $DIC->repositoryTree();
46 $this->obj_definition = $DIC[
"objDefinition"];
56 string $gap_mode =
"",
57 string $gap_mode_type =
"",
58 int $gap_mode_obj_id = 0
62 foreach ($skills as $sk) {
63 $bs = new \ilBasicSkill($sk[
"base_skill_id"]);
64 if ($gap_mode ==
"max_per_type") {
65 $max = $bs->getMaxLevelPerType($sk[
"tref_id"], $gap_mode_type, $user_id);
66 } elseif ($gap_mode ==
"max_per_object") {
68 $sub_objects = $this->tree_service->getSubTree(
74 foreach ($sub_objects as
$ref_id) {
76 $max_tmp = $bs->getMaxLevelPerObject($sk[
"tref_id"], $obj_id, $user_id);
77 if ($max_tmp > $max) {
82 $max = $bs->getMaxLevelPerObject($sk[
"tref_id"], $gap_mode_obj_id, $user_id);
85 $max = $bs->getMaxLevel($sk[
"tref_id"], $user_id);
87 $actual_levels[$sk[
"base_skill_id"]][$sk[
"tref_id"]] = $max;
90 return $actual_levels;
96 string $gap_mode =
"",
97 string $gap_mode_type =
"",
98 int $gap_mode_obj_id = 0
111 string $gap_mode =
"",
112 string $gap_mode_type =
"",
113 int $gap_mode_obj_id = 0
117 foreach ($skills as $sk) {
118 $bs = new \ilBasicSkill($sk[
"base_skill_id"]);
119 if ($gap_mode ==
"max_per_type") {
120 $perc = $bs->getNextLevelFulfilmentPerType($sk[
"tref_id"], $gap_mode_type, $user_id);
121 } elseif ($gap_mode ==
"max_per_object") {
122 $perc = $bs->getNextLevelFulfilmentPerObject($sk[
"tref_id"], $gap_mode_obj_id, $user_id);
124 $perc = $bs->getNextLevelFulfilment($sk[
"tref_id"], $user_id);
126 $fuls[$sk[
"base_skill_id"]][$sk[
"tref_id"]] = $perc;
137 $profile = $this->profile_manager->getById($profile_id);
138 $profile_levels = $profile->getSkillLevels();
140 foreach ($profile_levels as $l) {
142 "base_skill_id" => $l[
"base_skill_id"],
143 "tref_id" => $l[
"tref_id"],
144 "level_id" => $l[
"level_id"]
151 foreach ($profile_levels as $profile) {
152 if ($actual_levels[$profile[
"base_skill_id"]][$profile[
"tref_id"]] >= $profile[
"level_id"]) {
157 if ($profile_count == 0) {
160 $progress = $achieved_count / $profile_count * 100;
162 return (
int) $progress;
182 $user_profiles = $this->profile_manager->getProfilesOfUser($user_id);
184 foreach ($user_profiles as $p) {
186 $profile_comps[$p[
"id"]] =
true;
188 $profile_comps[$p[
"id"]] =
false;
192 return $profile_comps;
198 public function getEntries(
int $user_id,
int $profile_id): array
200 return $this->profile_completion_repo->getEntries($user_id, $profile_id);
209 return $this->profile_completion_repo->getFulfilledEntriesForUser($user_id);
217 return $this->profile_completion_repo->getAllEntriesForUser($user_id);
225 return $this->profile_completion_repo->getAllEntriesForProfile($profile_id);
234 foreach ($completions as $profile_id => $fulfilled) {
236 $this->profile_completion_repo->addFulfilmentEntry($user_id, $profile_id);
238 $this->profile_completion_repo->addNonFulfilmentEntry($user_id, $profile_id);
249 $this->profile_completion_repo->addFulfilmentEntry($user_id, $profile_id);
251 $this->profile_completion_repo->addNonFulfilmentEntry($user_id, $profile_id);
260 $this->profile_completion_repo->deleteEntriesForProfile($profile_id);
268 $this->profile_completion_repo->deleteEntriesForUser($user_id);
writeCompletionEntryForSingleProfile(int $user_id, int $profile_id)
Write profile completion entry (fulfilled or non-fulfilled) of user for given profile.
getProfileProgress(int $user_id, int $profile_id)
Get progress in percent for a profile.
getActualNextLevelFulfilments(int $user_id, array $skills, string $gap_mode="", string $gap_mode_type="", int $gap_mode_obj_id=0)
getActualLastLevels(int $user_id, array $skills, string $gap_mode="", string $gap_mode_type="", int $gap_mode_obj_id=0)
deleteEntriesForProfile(int $profile_id)
Delete all profile completion entries for a profile.
SkillProfileManager $profile_manager
static getSupportedObjectTypes()
static _getAllReferences(int $id)
get all reference ids for object ID
getEntries(int $user_id, int $profile_id)
Get profile completion entries for given user-profile-combination.
writeCompletionEntryForAllProfiles(int $user_id)
Write profile completion entries (fulfilled or non-fulfilled) of user for all profiles.
deleteEntriesForUser(int $user_id)
Delete all profile completion entries for a user.
getAllEntriesForUser(int $user_id)
Get all profile completion entries for a user.
getAllEntriesForProfile(int $profile_id)
Get all completion entries for a single profile.
Repository for skill profile completion.
static _lookupObjectId(int $ref_id)
getFulfilledEntriesForUser(int $user_id)
Get all profile completion entries for a user.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(SkillProfileManager $profile_manager, ?SkillProfileCompletionDBRepository $profile_completion_repo=null)
getAllProfileCompletionsForUser(int $user_id)
Get all profiles of user which are fulfilled or non-fulfilled.
isProfileFulfilled(int $user_id, int $profile_id)
Check if a profile is fulfilled (progress = 100%)
ilObjectDefinition $obj_definition
SkillProfileCompletionDBRepository $profile_completion_repo
getActualMaxLevels(int $user_id, array $skills, string $gap_mode="", string $gap_mode_type="", int $gap_mode_obj_id=0)
Manages skill profile completion.
static _lookupType(int $id, bool $reference=false)