58 $this->lng->loadLanguageModule(
"svy");
83 $survey_ids = $this->inv_manager->getOpenInvitationsOfUser($user_id);
84 if (count($survey_ids) > 0) {
85 $obj_ids = $this->set_repo->getObjIdsForSurveyIds($survey_ids);
86 $access = $this->set_repo->getAccessSettings($survey_ids);
87 foreach ($obj_ids as $survey_id => $obj_id) {
91 $tasks[] = $this->task_service->derived()->factory()->task(
94 (
int)
$access[$survey_id]->getEndDate(),
95 (
int)
$access[$survey_id]->getStartDate()
102 $survey_ids = $this->svy_360_manager->getOpenSurveysForRater($user_id);
103 if (count($survey_ids) > 0) {
104 $obj_ids = $this->set_repo->getObjIdsForSurveyIds($survey_ids);
105 $access = $this->set_repo->getAccessSettings($survey_ids);
106 foreach ($obj_ids as $survey_id => $obj_id) {
110 $tasks[] = $this->task_service->derived()->factory()->task(
113 (
int)
$access[$survey_id]->getEndDate(),
114 (
int)
$access[$survey_id]->getStartDate()
121 $survey_ids = $this->svy_360_manager->getOpenSurveysForAppraisee($user_id);
122 if (count($survey_ids) > 0) {
123 $obj_ids = $this->set_repo->getObjIdsForSurveyIds($survey_ids);
124 $access = $this->set_repo->getAccessSettings($survey_ids);
125 foreach ($obj_ids as $survey_id => $obj_id) {
129 $tasks[] = $this->task_service->derived()->factory()->task(
132 (
int)
$access[$survey_id]->getEndDate(),
133 (
int)
$access[$survey_id]->getStartDate()
155 if (
$access->checkAccessOfUser($user_id, $perm,
"", $ref_id)) {
getFirstRefIdWithPermission($perm, int $obj_id, int $user_id)
Get first ref id for an object id with permission.
static _lookupTitle($a_id)
lookup object title
static _getAllReferences($a_id)
get all reference ids of object
__construct(\ilTaskService $task_service, \ilAccess $access, \ilLanguage $lng)
Constructor.
getTasks(int $user_id)
Get providers.ilDerivedTask[]
Survey settings db repository.
isActive()
Is provider active?bool
Exercise derived task provider.