108 $this->skillLevelThresholdList->setTestId($testId);
110 $this->skill_profile_service = ($skill_profile_service == null)
111 ? $DIC->skills()->profile()
114 $this->questions = array();
115 $this->maxPointsByQuestion = array();
160 $this->skillQuestionAssignmentList->setParentObjId($questionList->
getParentObjId());
161 $this->skillQuestionAssignmentList->loadFromDb();
163 $this->skillLevelThresholdList->loadFromDb();
188 $this->reachedPointsByQuestion = array();
189 $this->skillPointAccounts = array();
190 $this->reachedSkillLevels = array();
196 $this->questions[] = $questionData[
'question_id'];
198 $this->maxPointsByQuestion[ $questionData[
'question_id'] ] = $questionData[
'points'];
207 foreach ($testResults as
$key => $result) {
208 if (
$key ===
'pass' ||
$key ===
'test') {
212 if (!$result[
'workedthrough']) {
216 $this->reachedPointsByQuestion[ $result[
'qid'] ] = $result[
'reached'];
222 foreach ($this->questions as $questionId) {
227 $assignments = $this->skillQuestionAssignmentList->getAssignmentsByQuestionId($questionId);
229 foreach ($assignments as $assignment) {
230 if ($assignment->hasEvalModeBySolution()) {
232 $assignment->getSolutionComparisonExpressionList()
235 $maxTestPoints = $this->maxPointsByQuestion[$questionId];
236 $reachedTestPoints = $this->reachedPointsByQuestion[$questionId];
239 $assignment->getSkillPoints(),
246 $assignment->getSkillBaseId(),
247 $assignment->getSkillTrefId(),
248 $assignment->getMaxSkillPoints(),
257 return isset($this->reachedPointsByQuestion[$questionId]);
263 $questionProvider->setQuestionId($expressionList->
getQuestionId());
265 foreach ($expressionList->
get() as $expression) {
269 $conditionComposite = $conditionParser->parse($expression->getExpression());
276 if ($compositeEvaluator->evaluate($conditionComposite)) {
277 return $expression->getPoints();
286 if ($reachedTestPoints < 0) {
287 $reachedTestPoints = 0;
292 if ($maxTestPoints > 0) {
293 $factor = $reachedTestPoints / $maxTestPoints;
296 return ($skillPoints * $factor);
301 $skillKey = $skillBaseId .
':' . $skillTrefId;
303 if (!isset($this->skillPointAccounts[$skillKey])) {
307 $this->skillPointAccounts[$skillKey]->addBooking($maxSkillPoints, $reachedSkillPoints);
312 foreach ($this->skillPointAccounts as $skillKey => $skillPointAccount) {
319 list($skillBaseId, $skillTrefId) = explode(
':', $skillKey);
322 $levels = $skill->getLevelData();
324 $reachedLevelId = null;
326 foreach ($levels as $level) {
327 $threshold = $this->skillLevelThresholdList->getThreshold($skillBaseId, $skillTrefId, $level[
'id']);
333 $reachedLevelId = $level[
'id'];
335 if ($skillPointAccount->getTotalReachedSkillPercent() <= $threshold->getThreshold()) {
340 if ($reachedLevelId) {
341 $this->reachedSkillLevels[] = array(
342 'sklBaseId' => $skillBaseId,
'sklTrefId' => $skillTrefId,
'sklLevelId' => $reachedLevelId
358 if ($reachedSkillLevel[
'sklTrefId'] > 0) {
365 $this->skill_profile_service->writeCompletionEntryForAllProfiles($this->
getUserId());
383 $DIC->logger()->root()->info(
384 "refId={$this->refId} / usrId={$this->getUserId()} / levelId={$skillLevelId} / trefId={$skillTrefId}" 392 $skillsMatchingNumAnswersBarrier = array();
394 foreach ($this->skillPointAccounts as $skillKey => $skillPointAccount) {
396 list($skillBaseId, $skillTrefId) = explode(
':', $skillKey);
398 $skillsMatchingNumAnswersBarrier[$skillKey] = array(
399 'base_skill_id' => (
int) $skillBaseId,
400 'tref_id' => (
int) $skillTrefId
405 return $skillsMatchingNumAnswersBarrier;
410 $uniqueSkills = array();
412 foreach ($this->skillQuestionAssignmentList->getUniqueAssignedSkills() as $skill) {
413 $skillKey = $skill[
'skill_base_id'] .
':' . $skill[
'skill_tref_id'];
415 $uniqueSkills[$skillKey] = array(
416 'base_skill_id' => (
int) $skill[
'skill_base_id'],
417 'tref_id' => (
int) $skill[
'skill_tref_id']
421 return $uniqueSkills;
426 $this->skillQuestionAssignmentList->isAssignedSkill($skillBaseId, $skillTrefId);
431 $matchingSkillProfiles = array();
433 $usersProfiles = $this->skill_profile_service->getProfilesOfUser($this->
getUserId());
435 foreach ($usersProfiles as $profileData) {
436 $profile = $this->skill_profile_service->getById($profileData[
'id']);
437 $assignedSkillLevels = $profile->getSkillLevels();
439 foreach ($assignedSkillLevels as $assignedSkillLevel) {
440 $skillBaseId = $assignedSkillLevel[
'base_skill_id'];
441 $skillTrefId = $assignedSkillLevel[
'tref_id'];
443 if ($this->skillQuestionAssignmentList->isAssignedSkill($skillBaseId, $skillTrefId)) {
444 $matchingSkillProfiles[$profileData[
'id']] = $profile->getTitle();
449 return $matchingSkillProfiles;
454 $noProfileMatchingSkills = $this->skillQuestionAssignmentList->getUniqueAssignedSkills();
456 foreach ($availableSkillProfiles as $skillProfileId => $skillProfileTitle) {
457 $profile = $this->skill_profile_service->getById($skillProfileId);
458 $assignedSkillLevels = $profile->getSkillLevels();
460 foreach ($assignedSkillLevels as $assignedSkillLevel) {
461 $skillBaseId = $assignedSkillLevel[
'base_skill_id'];
462 $skillTrefId = $assignedSkillLevel[
'tref_id'];
464 if ($this->skillQuestionAssignmentList->isAssignedSkill($skillBaseId, $skillTrefId)) {
465 unset($noProfileMatchingSkills[
"{$skillBaseId}:{$skillTrefId}"]);
470 return count($noProfileMatchingSkills);
init(ilAssQuestionList $questionList)
setNumRequiredBookingsForSkillTriggering($numRequiredBookingsForSkillTriggering)
evaluateSkillPointAccounts()
invokeSkillLevelTrigger($skillLevelId, $skillTrefId)
calculateReachedSkillPointsFromTestPoints($skillPoints, $maxTestPoints, $reachedTestPoints)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAssignedSkillMatchingSkillProfiles()
SkillProfileService $skill_profile_service
isAnsweredQuestion($questionId)
$numRequiredBookingsForSkillTriggering
isAssignedSkill($skillBaseId, $skillTrefId)
$skillQuestionAssignmentList
noProfileMatchingAssignedSkillExists($availableSkillProfiles)
initTestResultData($testResults)
__construct(ilDBInterface $db, $testId, $refId, SkillProfileService $skill_profile_service=null)
bookToSkillPointAccount($skillBaseId, $skillTrefId, $maxSkillPoints, $reachedSkillPoints)
static writeUserSkillLevelStatus(int $a_level_id, int $a_user_id, int $a_trigger_ref_id, int $a_tref_id=0, int $a_status=ilBasicSkill::ACHIEVED, bool $a_force=false, bool $a_self_eval=false, string $a_unique_identifier="", float $a_next_level_fulfilment=0.0, string $trigger_user_id="")
drawUpSkillPointAccounts()
getNumRequiredBookingsForSkillTriggering()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getSkillsInvolvedByAssignment()
static addPersonalSkill(int $a_user_id, int $a_skill_node_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initTestQuestionData(ilAssQuestionList $questionList)
doesNumBookingsExceedRequiredBookingsBarrier(ilTestSkillPointAccount $skillPointAccount)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
determineReachedSkillPointsWithSolutionCompare(ilAssQuestionSolutionComparisonExpressionList $expressionList)
getSkillsMatchingNumAnswersBarrier()