ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
InterestedUserFieldChangeListener.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\User\Profile\ChangeListeners
;
22
23
use
ILIAS\Language\Language
;
24
29
class
InterestedUserFieldChangeListener
30
{
34
private
array
$attributes
= [];
35
36
public
function
__construct
(
37
private
readonly
Language
$lng
,
38
private
readonly
string
$name,
39
private
readonly
string
$field_name
40
) {
41
}
42
43
public
function
getName
(): string
44
{
45
return
$this->name;
46
}
47
48
public
function
getFieldName
(): string
49
{
50
return
$this->field_name;
51
}
52
56
public
function
getAttributes
(): array
57
{
58
return
$this->attributes
;
59
}
60
61
public
function
addAttribute
(
string
$attribute_name):
InterestedUserFieldAttribute
62
{
63
if
(!isset($this->attributes[$attribute_name])) {
64
$this->attributes[$attribute_name] =
new
InterestedUserFieldAttribute
(
65
$this->
lng
,
66
$attribute_name,
67
$this->field_name
68
);
69
}
70
return
$this->attributes[$attribute_name];
71
}
72
}
Language
ILIAS\User\Profile\ChangeListeners\InterestedUserFieldChangeListener\getAttributes
getAttributes()
Definition:
InterestedUserFieldChangeListener.php:56
ILIAS\User\Profile\ChangeListeners\InterestedUserFieldAttribute
Class InterestedUserFieldAttribute.
Definition:
InterestedUserFieldAttribute.php:29
ILIAS\User\Profile\ChangeListeners\InterestedUserFieldChangeListener\getName
getName()
Definition:
InterestedUserFieldChangeListener.php:43
ILIAS\User\Profile\ChangeListeners\InterestedUserFieldChangeListener\__construct
__construct(private readonly Language $lng, private readonly string $name, private readonly string $field_name)
Definition:
InterestedUserFieldChangeListener.php:36
ILIAS\User\Profile\ChangeListeners\InterestedUserFieldChangeListener\addAttribute
addAttribute(string $attribute_name)
Definition:
InterestedUserFieldChangeListener.php:61
ILIAS\Repository\lng
lng()
Definition:
trait.GlobalDICDomainServices.php:61
ILIAS\User\Profile\ChangeListeners\InterestedUserFieldChangeListener
Class InterestedUserFieldChangeListener.
Definition:
InterestedUserFieldChangeListener.php:29
ILIAS\User\Profile\ChangeListeners
Definition:
ChangedUserFieldAttribute.php:21
ILIAS\User\Profile\ChangeListeners\InterestedUserFieldChangeListener\getFieldName
getFieldName()
Definition:
InterestedUserFieldChangeListener.php:48
$lng
global $lng
Definition:
privfeed.php:31
ILIAS\User\Profile\ChangeListeners\InterestedUserFieldChangeListener\$attributes
array $attributes
Definition:
InterestedUserFieldChangeListener.php:34
ILIAS\Language\Language
Definition:
Language.php:23
components
ILIAS
User
src
Profile
ChangeListeners
InterestedUserFieldChangeListener.php
Generated on Thu Apr 3 2025 23:04:13 for ILIAS by
1.8.13 (using
Doxyfile
)