ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
class.ilExternalAuthUserAttributeMappingRule.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
class
ilExternalAuthUserAttributeMappingRule
22
{
23
protected
string
$attribute
=
''
;
24
protected
string
$external_attribute
=
''
;
25
protected
bool
$update_automatically
=
false
;
26
27
public
function
getExternalAttribute
(): string
28
{
29
return
$this->external_attribute
;
30
}
31
32
public
function
setExternalAttribute
(
string
$external_attribute): void
33
{
34
$this->external_attribute =
$external_attribute
;
35
}
36
37
public
function
getAttribute
(): string
38
{
39
return
$this->attribute
;
40
}
41
42
public
function
setAttribute
(
string
$attribute): void
43
{
44
$this->attribute =
$attribute
;
45
}
46
47
public
function
isAutomaticallyUpdated
(): bool
48
{
49
return
$this->update_automatically
;
50
}
51
52
public
function
updateAutomatically
(
bool
$update_automatically): void
53
{
54
$this->update_automatically =
$update_automatically
;
55
}
56
}
ilExternalAuthUserAttributeMappingRule\getAttribute
getAttribute()
Definition:
class.ilExternalAuthUserAttributeMappingRule.php:37
ilExternalAuthUserAttributeMappingRule\$update_automatically
bool $update_automatically
Definition:
class.ilExternalAuthUserAttributeMappingRule.php:25
ilExternalAuthUserAttributeMappingRule
Definition:
class.ilExternalAuthUserAttributeMappingRule.php:21
ilExternalAuthUserAttributeMappingRule\setExternalAttribute
setExternalAttribute(string $external_attribute)
Definition:
class.ilExternalAuthUserAttributeMappingRule.php:32
ilExternalAuthUserAttributeMappingRule\$attribute
string $attribute
Definition:
class.ilExternalAuthUserAttributeMappingRule.php:23
ilExternalAuthUserAttributeMappingRule\updateAutomatically
updateAutomatically(bool $update_automatically)
Definition:
class.ilExternalAuthUserAttributeMappingRule.php:52
ilExternalAuthUserAttributeMappingRule\setAttribute
setAttribute(string $attribute)
Definition:
class.ilExternalAuthUserAttributeMappingRule.php:42
ilExternalAuthUserAttributeMappingRule\isAutomaticallyUpdated
isAutomaticallyUpdated()
Definition:
class.ilExternalAuthUserAttributeMappingRule.php:47
ilExternalAuthUserAttributeMappingRule\$external_attribute
string $external_attribute
Definition:
class.ilExternalAuthUserAttributeMappingRule.php:24
ilExternalAuthUserAttributeMappingRule\getExternalAttribute
getExternalAttribute()
Definition:
class.ilExternalAuthUserAttributeMappingRule.php:27
components
ILIAS
Authentication
classes
External
UserAttributeMapping
class.ilExternalAuthUserAttributeMappingRule.php
Generated on Wed Sep 3 2025 23:02:11 for ILIAS by
1.8.13 (using
Doxyfile
)