19 declare(strict_types=1);
61 if (
null == $settings) {
62 $settings = $DIC->settings();
76 $this->registration_type = $a_type;
84 $ret = (
int)
$ilSetting->get(
'new_registration_type', (
string) self::IL_REG_DISABLED);
86 if ($ret < 1 || $ret > 5) {
88 $ret = self::IL_REG_DISABLED;
95 return $this->registration_type !== self::IL_REG_DISABLED;
100 return $this->registration_type === self::IL_REG_DIRECT;
105 return $this->registration_type === self::IL_REG_APPROVE;
110 return $this->registration_type === self::IL_REG_ACTIVATION;
115 return $this->registration_type === self::IL_REG_CODES;
125 $this->password_generation_enabled = $a_status;
135 $this->access_limitation = $a_access_limitation;
140 $this->approve_recipient_logins = $a_rec_string;
141 $this->approve_recipient_ids = [];
144 foreach (explode(
',', trim($this->approve_recipient_logins)) as $login) {
146 $this->approve_recipient_ids[] = $uid;
163 return implode(
',', $this->unknown);
168 return $this->role_type === self::IL_REG_ROLES_FIXED;
173 return $this->role_type === self::IL_REG_ROLES_EMAIL;
178 $this->role_type = $a_type;
183 $this->reg_hash_life_time = $a_lifetime;
189 return max($this->reg_hash_life_time, self::REG_HASH_LIFETIME_MIN_VALUE);
194 $this->reg_allow_codes = $a_allow_codes;
207 static function (
string $value):
string {
210 explode(
";", trim($a_value))
213 $this->allowed_domains = $a_value;
226 $login_arr = $login_arr ?: [];
228 foreach ($login_arr as $recipient) {
229 if (!$recipient = trim($recipient)) {
233 $this->unknown[] = $recipient;
238 if (count($this->unknown)) {
239 return self::ERR_UNKNOWN_RCP;
242 return self::ERR_MISSING_RCP;
249 $this->
settings->set(
'reg_role_assignment', (
string) $this->role_type);
250 $this->
settings->set(
'new_registration_type', (
string) $this->registration_type);
251 $this->
settings->set(
'passwd_reg_auto_generate', (
string) $this->password_generation_enabled);
252 $this->
settings->set(
'approve_recipient', addslashes(serialize($this->approve_recipient_ids)));
253 $this->
settings->set(
'reg_access_limitation', (
string) $this->access_limitation);
254 $this->
settings->set(
'reg_hash_life_time', (
string) $this->reg_hash_life_time);
255 $this->
settings->set(
'reg_allow_codes', (
string) $this->reg_allow_codes);
256 $this->
settings->set(
'reg_allowed_domains', implode(
';', $this->allowed_domains));
263 $this->registration_type = self::_lookupRegistrationType();
265 $this->role_type = (
int) $this->
settings->get(
'reg_role_assignment',
'1');
266 $this->password_generation_enabled = (bool) $this->
settings->get(
'passwd_reg_auto_generate');
267 $this->access_limitation = (bool) $this->
settings->get(
'reg_access_limitation');
268 $this->reg_hash_life_time = (
int) $this->
settings->get(
'reg_hash_life_time');
269 $this->reg_allow_codes = (bool) $this->
settings->get(
'reg_allow_codes');
271 $this->approve_recipient_ids = unserialize(
272 stripslashes($this->
settings->get(
'approve_recipient', serialize([]))),
273 [
'allowed_classes' =>
false]
278 foreach ($this->approve_recipient_ids as
$id) {
280 $tmp_logins[] = $login;
283 $this->approve_recipient_logins = implode(
',', $tmp_logins);
static _lookupRegistrationType()
setAllowCodes(bool $a_allow_codes)
setAllowedDomains(string $a_value)
array $approve_recipient_ids
__construct(?ilSetting $settings=null)
setRegistrationType(int $a_type)
static _lookupId($a_user_str)
registrationCodeRequired()
getApproveRecipientLogins()
const REG_HASH_LIFETIME_MIN_VALUE
setPasswordGenerationStatus(bool $a_status)
setApproveRecipientLogins(string $a_rec_string)
passwordGenerationEnabled()
const IL_REG_ERROR_NO_PERM
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const IL_REG_ROLE_UNDEFINED
automaticRoleAssignmentEnabled()
const IL_REG_ERROR_UNKNOWN
Class ilObjAuthSettingsGUI.
setRegistrationHashLifetime(int $a_lifetime)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
bool $password_generation_enabled
setAccessLimitation(bool $a_access_limitation)
string $approve_recipient_logins
getRegistrationHashLifetime()
static _lookupLogin(int $a_user_id)