ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
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
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ViewManager.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Container\Content
;
22
26
class
ViewManager
27
{
28
private
int
$user_id
;
29
protected
ViewSessionRepository
$view_repo
;
30
31
public
function
__construct
(
32
ViewSessionRepository
$view_repo,
33
?
int
$user_id = null
34
) {
35
global
$DIC
;
// fixes 41305, to do: move to constructor
36
if
(is_null($user_id)) {
37
$this->user_id = $DIC->user()->getId();
38
}
else
{
39
$this->user_id =
$user_id
;
40
}
41
42
$this->view_repo =
$view_repo
;
43
}
44
45
public
function
setAdminView
(): void
46
{
47
if
(in_array($this->user_id, [
ANONYMOUS_USER_ID
, 0],
true
)) {
48
return
;
49
}
50
$this->view_repo->setAdminView();
51
}
52
53
public
function
setContentView
(): void
54
{
55
$this->view_repo->setContentView();
56
}
57
58
public
function
isAdminView
(): bool
59
{
60
return
$this->view_repo->isAdminView();
61
}
62
63
public
function
isContentView
(): bool
64
{
65
return
$this->view_repo->isContentView();
66
}
67
}
ILIAS\Container\Content\ViewManager\$user_id
int $user_id
Definition:
class.ViewManager.php:28
ANONYMOUS_USER_ID
const ANONYMOUS_USER_ID
Definition:
constants.php:27
ILIAS\Container\Content\ViewManager\__construct
__construct(ViewSessionRepository $view_repo, ?int $user_id=null)
Definition:
class.ViewManager.php:31
$DIC
global $DIC
Definition:
feed.php:28
ILIAS\Container\Content\ViewManager\$view_repo
ViewSessionRepository $view_repo
Definition:
class.ViewManager.php:29
ILIAS\Container\Content\ViewManager\isAdminView
isAdminView()
Definition:
class.ViewManager.php:58
ILIAS\Container\Content
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.BlockSessionRepository.php:21
ILIAS\Container\Content\ViewManager
Definition:
class.ViewManager.php:26
ILIAS\Container\Content\ViewManager\setAdminView
setAdminView()
Definition:
class.ViewManager.php:45
ILIAS\Container\Content\ViewSessionRepository
Stores view status.
Definition:
class.ViewSessionRepository.php:29
ILIAS\Container\Content\ViewManager\isContentView
isContentView()
Definition:
class.ViewManager.php:63
ILIAS\Container\Content\ViewManager\setContentView
setContentView()
Definition:
class.ViewManager.php:53
Services
Container
Content
class.ViewManager.php
Generated on Thu Apr 3 2025 22:01:50 for ILIAS by
1.8.13 (using
Doxyfile
)