19 declare(strict_types=1);
31 public static function handleCode(
int $a_ref_id,
string $a_type,
string $a_code): void
34 $main_tpl = $DIC->ui()->mainTemplate();
36 $lng = $DIC->language();
37 $tree = $DIC->repositoryTree();
39 $lng->loadLanguageModule($a_type);
41 self::useCode($a_code, $a_ref_id);
43 $main_tpl->setOnScreenMessage(
'success', sprintf(
$lng->txt($a_type .
"_admission_link_success_registration"), $title),
true);
46 switch ($e->getCode()) {
48 $main_tpl->setOnScreenMessage(
'success', $e->getMessage(),
true);
51 $main_tpl->setOnScreenMessage(
'failure',
$lng->txt($a_type .
"_admission_link_failure_membership_limited"),
true);
54 $main_tpl->setOnScreenMessage(
'failure',
$lng->txt($a_type .
"_admission_link_failure_registration_period"),
true);
57 $main_tpl->setOnScreenMessage(
'failure',
$lng->txt($a_type .
"_admission_link_failure_invalid_code"),
true);
60 $main_tpl->setOnScreenMessage(
'failure',
$lng->txt($a_type .
'_admission_link_failure_offline'),
true);
63 $main_tpl->setOnScreenMessage(
'failure',
$lng->txt($a_type .
'_admission_link_failure_availability'),
true);
66 $main_tpl->setOnScreenMessage(
'failure', $e->getMessage(),
true);
69 $parent_id = $tree->getParentId($a_ref_id);
83 protected static function useCode(
string $a_code,
int $a_endnode): void
87 $tree = $DIC->repositoryTree();
88 $ilUser = $DIC->user();
90 $obj_ids = self::lookupObjectsByCode($a_code);
94 'Admission code is not valid',
99 foreach ($tree->getPathId($a_endnode) as
$ref_id) {
118 $map =
"23456789abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ";
121 $max = strlen($map) - 1;
122 for ($loop = 1; $loop <= self::CODE_LENGTH; $loop++) {
123 $code .= $map[random_int(0, $max)];
static handleCode(int $a_ref_id, string $a_type, string $a_code)
const ADDED_TO_WAITINGLIST
Stores registration keys for key based registration on courses and groups.
const REGISTRATION_INVALID_OFFLINE
const OUT_OF_REGISTRATION_PERIOD
static lookupObjectsByCode(string $a_code)
static _lookupObjId(int $ref_id)
static _lookupTitle(int $obj_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
static _lookupObjectId(int $ref_id)
const ADMISSION_LINK_INVALID
membership registration exception
static lookupObjectsByCode(string $a_code)
Get all objects with enabled access codes.
static redirect(string $a_script)
static generateCode()
Generate new registration key.
const REGISTRATION_INVALID_AVAILABILITY
static useCode(string $a_code, int $a_endnode)
Use a registration code and assign the logged in user to the (parent) course/group that offer the cod...
static lookupObjectsByCode(string $a_code)