35 $this->profile_manager = $internal_service->
manager()->getProfileManager();
36 $this->profile_completion_manager = $internal_service->
manager()->getProfileCompletionManager();
44 return $this->profile_manager->getById($profile_id);
47 public function delete(
int $profile_id):
void 49 $this->profile_manager->delete($profile_id);
50 $this->profile_completion_manager->deleteEntriesForProfile($profile_id);
55 $title = $this->profile_manager->lookupTitle($profile_id);
61 $ref_id = $this->profile_manager->lookupRefId($profile_id);
67 return $this->profile_manager->getProfilesOfUser($user_id);
72 $profiles = $this->profile_manager->getAllGlobalProfiles();
78 $this->profile_manager->addRoleToProfile($profile_id, $role_id);
86 $this->profile_manager->updateRefIdAfterImport($profile_id, $new_ref_id);
94 $this->profile_completion_manager->writeCompletionEntryForAllProfiles($user_id);
lookupRefId(int $profile_id)
addRoleToProfile(int $profile_id, int $role_id)
getProfilesOfUser(int $user_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
updateRefIdAfterImport(int $profile_id, int $new_ref_id)
Update the old ref id with the new ref id after import.
Profile SkillProfileManager $profile_manager
Profile SkillProfileCompletionManager $profile_completion_manager
writeCompletionEntryForAllProfiles(int $user_id)
Write profile completion entries (fulfilled or non-fulfilled) of user for all profiles.
lookupTitle(int $profile_id)
Manages skill profile completion.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(SkillInternalService $internal_service)