38 $this->run_repo = $repo_service->
execution()->run();
41 $this->set_repo = $repo_service->
settings();
53 $appraisees = $this->appr_repo->getAppraiseesForRater($rater_user_id);
56 $finished_ids = array_map(
static function (array
$i):
string {
57 return $i[
"survey_id"] .
":" . $i[
"appr_id"];
58 }, $this->run_repo->getFinishedAppraiseesForRater($rater_user_id));
59 $open_appraisees = array_filter($appraisees,
static function (array $i) use ($finished_ids):
bool {
60 return !in_array($i[
"survey_id"] .
":" . $i[
"appr_id"], $finished_ids,
true);
64 $open_surveys = array_unique(array_column($open_appraisees,
"survey_id"));
67 $closed_appr = $this->appr_repo->getClosedAppraiseesForSurveys($open_surveys);
68 $closed_appr_ids = array_map(
static function (array $i):
string {
69 return $i[
"survey_id"] .
":" . $i[
"appr_id"];
72 $open_appraisees = array_filter($open_appraisees,
static function (array $i) use ($closed_appr_ids):
bool {
73 return !in_array($i[
"survey_id"] .
":" . $i[
"appr_id"], $closed_appr_ids,
true);
75 $open_surveys = array_unique(array_column($open_appraisees,
"survey_id"));
78 $has_ended = $this->set_repo->hasEnded($open_surveys);
79 $open_surveys = array_filter($open_surveys,
static function (
int $i) use ($has_ended):
bool {
80 return !($has_ended[
$i] ??
false);
94 $open_surveys = $this->appr_repo->getUnclosedSurveysForAppraisee($appr_user_id);
97 $has_ended = $this->set_repo->hasEnded($open_surveys);
98 $open_surveys = array_filter($open_surveys,
static function (
int $i) use ($has_ended):
bool {
99 return !($has_ended[
$i] ??
false);
102 return $open_surveys;
Apraisee / Rater DB repository Tables: svy_360_rater, svy_360_appr.
RunDBRepository $run_repo
getOpenSurveysForAppraisee(int $appr_user_id)
Get open surveys for rater.
SettingsDBRepository $set_repo
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(InternalRepoService $repo_service)
AppraiseeDBRepository $appr_repo
Survey internal data service.
getOpenSurveysForRater(int $rater_user_id)
Get open surveys for rater.
Survey settings db repository.