3 declare(strict_types=1);
38 protected \ilLanguage
$lng;
50 $this->survey_ref_id = $survey->
getRefId();
55 $this->
lng = $domain_service->lng();
63 if (!$this->
access->canManageCodes()) {
64 throw new \ilPermissionException($this->
lng->txt(
"permission_denied") .
65 " (" . $this->survey_ref_id .
")");
73 public function deleteAll(
bool $force =
false): void
86 public function delete(
string $code):
void 90 $repo->
delete($this->survey_id, $code);
96 public function exists(
string $code): bool
99 return $repo->
exists($this->survey_id, $code);
133 return $this->code_repo->addCodes($this->survey_id, $nr);
148 return $this->code_repo->updateExternalData(
165 return $this->code_repo->getAll($this->survey_id);
176 return $this->code_repo->getAllData($this->survey_id);
190 $this->code_repo->bindUser($this->survey_id, $code, $user_id);
199 return $this->code_repo->getByUserId($this->survey_id, $user_id);
205 return $this->code_repo->getByCodeId($this->survey_id, $code_id);
213 return $this->code_repo->getByUserKey($this->survey_id, $user_key);
getByUserKey(string $user_key)
Get code object for an access key.
access(int $ref_id, int $user_id)
getAllData()
Get all codes of a survey.
updateExternalData(int $code_id, string $email, string $last_name, string $first_name, int $sent)
Update external data of a code.
delete(int $survey_id, string $code)
Delete single code.
deleteAll(bool $force=false)
Delete all codes of survey.
exists(string $code)
Does code exist in survey?
getByCodeId(int $code_id)
bindUser(string $code, int $user_id)
Bind registered user to a code.
deleteAll(int $survey_id)
Delete all codes of a survey.
__construct(CodeDBRepo $code_repo, InternalDataService $data, \ilObjSurvey $survey, InternalDomainService $domain_service, int $user_id)
add(Code $code)
Saves a survey access code for a registered user to the database.
addCodes(int $nr)
Add multiple new codes.
getAll()
Get all access keys of a survey.
InternalDataService $data
exists(int $survey_id, string $code)
Does code exist in survey?
add(int $survey_id, string $code="", int $user_id=0, string $email="", string $last_name="", string $first_name="", int $sent=0, int $tstamp=0)
Saves a survey access code for a registered user to the database.
getByUserId(int $user_id)
Get access key for a registered user.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Survey internal data service.
Survey internal domain service.