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
class.ilUsersGalleryUserImpl.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
class
ilUsersGalleryUserImpl
implements
ilUsersGalleryUser
22
{
23
public
function
__construct
(
24
protected
ilObjUser
$aggregated_user,
25
protected
string
$public_name,
26
protected
string
$sortable_public_name
27
) {
28
}
29
30
public
function
hasPublicProfile
(): bool
31
{
32
global
$DIC
;
33
34
return
(
35
(!$DIC->user()->isAnonymous() && $this->aggregated_user->getPref(
'public_profile'
) ===
'y'
) ||
36
$this->aggregated_user->getPref(
'public_profile'
) ===
'g'
37
);
38
}
39
40
public
function
getPublicName
(): string
41
{
42
return
$this->public_name;
43
}
44
45
public
function
getSortablePublicName
(): string
46
{
47
return
$this->sortable_public_name;
48
}
49
50
public
function
getAggregatedUser
():
ilObjUser
51
{
52
return
$this->aggregated_user;
53
}
54
}
ilUsersGalleryUserImpl\getAggregatedUser
getAggregatedUser()
Definition:
class.ilUsersGalleryUserImpl.php:50
ilUsersGalleryUserImpl
Definition:
class.ilUsersGalleryUserImpl.php:21
ilUsersGalleryUser
Definition:
interface.ilUsersGalleryUser.php:21
ilUsersGalleryUserImpl\__construct
__construct(protected ilObjUser $aggregated_user, protected string $public_name, protected string $sortable_public_name)
Definition:
class.ilUsersGalleryUserImpl.php:23
ilUsersGalleryUserImpl\hasPublicProfile
hasPublicProfile()
Definition:
class.ilUsersGalleryUserImpl.php:30
ilObjUser
ilUsersGalleryUserImpl\getPublicName
getPublicName()
Definition:
class.ilUsersGalleryUserImpl.php:40
$DIC
global $DIC
Definition:
shib_login.php:22
ilUsersGalleryUserImpl\getSortablePublicName
getSortablePublicName()
Definition:
class.ilUsersGalleryUserImpl.php:45
components
ILIAS
User
classes
Gallery
class.ilUsersGalleryUserImpl.php
Generated on Thu Apr 3 2025 23:04:13 for ILIAS by
1.8.13 (using
Doxyfile
)