3 declare(strict_types=1);
37 protected \ILIAS\Survey\Access\AccessManager
$access;
51 $this->feature_config = $this->domain_service->modeFeatureConfig($survey->
getMode());
54 $this->run_manager = $domain_service->
execution()->run($survey, $user_id);
67 if ($access->canRead() &&
68 $feature_config->usesAppraisees() &&
69 $survey->get360SelfAppraisee() &&
70 !$survey->isAppraisee($user_id) &&
86 if ($feature_config->usesAppraisees()) {
90 if ($this->run_manager->hasStarted() && $this->run_manager->hasFinished()) {
108 $this->survey->hasViewOwnResults()) {
122 $this->survey->hasMailConfirmation()) {
133 if ($this->
access->canStartSurvey()) {
137 !$this->survey->isAccessibleWithoutCode()) {
148 $anon_session = $this->repo_service->execution()->runSession();
149 if ($feature_config->usesAppraisees() &&
150 $anon_session->issetCode($survey->getId())) {
151 if (!$anon_session->isExternalRaterValidated($survey->getRefId())) {
152 $code = $anon_session->getCode($survey->getId());
153 $code_manager = $this->domain_service->code($survey, 0);
154 $feature_config = $this->domain_service->modeFeatureConfig($survey->getMode());
155 $access_manager = $this->domain_service->access($survey->getRefId(), 0);
157 if ($code_manager->exists($code)) {
158 $anonymous_id = $survey->getAnonymousIdByCode($code);
160 if (count($survey->getAppraiseesToRate(null, $anonymous_id))) {
161 $anon_session->setExternalRaterValidation($survey->getRefId(),
true);
166 $anon_session->setExternalRaterValidation($survey->getRefId(),
false);
178 if ($feature_config->usesAppraisees() &&
179 $survey->isAppraisee($this->user_id)) {
mustEnterCode(string $code="")
Check if user must enter code to start (and currently is able to start)
ILIAS Survey Execution RunManager $run_manager
Participant status manager.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
canMailUserResults()
Can the current user mail the confirmation.
ILIAS Survey Mode FeatureConfig $feature_config
cantStartAgain()
This will return true, if a survey without appraisees is finished Note: Code will be gathered from se...
Survey internal data service.
InternalDomainService $domain_service
canAddItselfAsAppraisee()
Checks if a user can add himself as an appraisee.
InternalRepoService $repo_service
__construct(InternalDomainService $domain_service, InternalRepoService $repo_service, \ilObjSurvey $survey, int $user_id)
Survey internal domain service.
canViewUserResults()
Can the current user see the own results.
ILIAS Survey Access AccessManager $access