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.ilObjBlogAccess.php
Go to the documentation of this file.
1
<?php
2
23
class
ilObjBlogAccess
extends
ilObjectAccess
24
{
25
protected
ilObjUser
$user
;
26
protected
ilAccessHandler
$access
;
27
28
public
function
__construct
()
29
{
30
global
$DIC
;
31
32
$this->
user
= $DIC->user();
33
$this->
access
= $DIC->access();
34
}
35
36
public
static
function
_getCommands
(): array
37
{
38
return
array(
39
array(
"permission"
=>
"read"
,
"cmd"
=>
"preview"
,
"lang_var"
=>
"show"
,
"default"
=>
true
),
40
array(
"permission"
=>
"write"
,
"cmd"
=>
"render"
,
"lang_var"
=>
"edit"
),
41
array(
"permission"
=>
"contribute"
,
"cmd"
=>
"render"
,
"lang_var"
=>
"edit"
),
42
array(
"permission"
=>
"write"
,
"cmd"
=>
"edit"
,
"lang_var"
=>
"settings"
),
43
array(
"permission"
=>
"write"
,
"cmd"
=>
"export"
,
"lang_var"
=>
"export_html"
)
44
);
45
}
46
47
public
static
function
_checkGoto
(
string
$target): bool
48
{
49
global
$DIC
;
50
51
$ilAccess = $DIC->access();
52
53
$t_arr = explode(
"_"
, $target);
54
55
if
(substr($target, -3) ===
"wsp"
) {
56
return
ilSharedResourceGUI::hasAccess
($t_arr[1]);
57
}
58
59
if
($t_arr[0] !==
"blog"
|| ((
int
) $t_arr[1]) <= 0) {
60
return
false
;
61
}
62
63
// #12648
64
if
($ilAccess->checkAccess(
"read"
,
""
, $t_arr[1]) ||
65
$ilAccess->checkAccess(
"visible"
,
""
, $t_arr[1])) {
66
return
true
;
67
}
68
return
false
;
69
}
70
71
public
function
canBeDelivered
(
ilWACPath
$ilWACPath): bool
72
{
73
$ilUser
=
$this->user
;
74
$ilAccess =
$this->access
;
75
if
(preg_match(
"/\\/blog_([\\d]*)\\//uim"
, $ilWACPath->
getPath
(),
$results
)) {
76
$obj_id =
$results
[1];
77
if
($obj_id ==
""
) {
78
return
false
;
79
}
80
81
// personal workspace
82
$tree =
new
ilWorkspaceTree
(0);
83
$node_id = $tree->lookupNodeId((
int
) $obj_id);
84
if
($node_id) {
85
$access_handler =
new
ilWorkspaceAccessHandler
($tree);
86
if
($access_handler->checkAccessOfUser($tree,
$ilUser
->getId(),
"read"
,
"view"
, $node_id,
"blog"
)) {
87
return
true
;
88
}
89
}
90
// repository (RBAC)
91
else
{
92
$ref_ids =
ilObject::_getAllReferences
((
int
) $obj_id);
93
foreach
($ref_ids as
$ref_id
) {
94
if
($ilAccess->checkAccessOfUser(
$ilUser
->getId(),
"read"
,
"view"
,
$ref_id
,
"blog"
, (
int
) $obj_id)) {
95
return
true
;
96
}
97
}
98
}
99
}
100
101
return
false
;
102
}
103
104
public
static
function
isCommentsExportPossible
(
int
$blog_id): bool
105
{
106
global
$DIC
;
107
108
$setting = $DIC->settings();
109
$notes = $DIC->notes();
110
$privacy =
ilPrivacySettings::getInstance
();
111
if
($setting->get(
"disable_comments"
)) {
112
return
false
;
113
}
114
if
(!$privacy->enabledCommentsExport()) {
115
return
false
;
116
}
117
if
(!$notes->domain()->commentsActive($blog_id)) {
118
return
false
;
119
}
120
return
true
;
121
}
122
}
ILIAS\Repository\access
access()
Definition:
trait.GlobalDICDomainServices.php:46
ilObjBlogAccess\_checkGoto
static _checkGoto(string $target)
Definition:
class.ilObjBlogAccess.php:47
ilObjectAccess
ilObjBlogAccess\$access
ilAccessHandler $access
Definition:
class.ilObjBlogAccess.php:26
ilObjBlogAccess
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilObjBlogAccess.php:23
ilObject\_getAllReferences
static _getAllReferences(int $id)
get all reference ids for object ID
Definition:
class.ilObject.php:816
ilWorkspaceAccessHandler
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilWorkspaceAccessHandler.php:24
ilObjBlogAccess\canBeDelivered
canBeDelivered(ilWACPath $ilWACPath)
Definition:
class.ilObjBlogAccess.php:71
ilWACPath
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilWACPath.php:25
ilWorkspaceTree
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilWorkspaceTree.php:24
ILIAS\Repository\user
user()
Definition:
trait.GlobalDICDomainServices.php:61
$DIC
global $DIC
Definition:
feed.php:28
ilWACPath\getPath
getPath()
Definition:
class.ilWACPath.php:413
ilObjUser
$ref_id
$ref_id
Definition:
ltiauth.php:67
ilPrivacySettings\getInstance
static getInstance()
Definition:
class.ilPrivacySettings.php:70
ilAccessHandler
ilObjBlogAccess\isCommentsExportPossible
static isCommentsExportPossible(int $blog_id)
Definition:
class.ilObjBlogAccess.php:104
ilSharedResourceGUI\hasAccess
static hasAccess(int $a_node_id, bool $a_is_portfolio=false)
Definition:
class.ilSharedResourceGUI.php:168
$results
$results
Definition:
save_question_post_data.php:8
ilObjBlogAccess\$user
ilObjUser $user
Definition:
class.ilObjBlogAccess.php:25
ilObjBlogAccess\_getCommands
static _getCommands()
Definition:
class.ilObjBlogAccess.php:36
$ilUser
$ilUser
Definition:
imgupload.php:34
ilObjBlogAccess\__construct
__construct()
Definition:
class.ilObjBlogAccess.php:28
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
Modules
Blog
classes
class.ilObjBlogAccess.php
Generated on Fri Apr 4 2025 22:01:34 for ILIAS by
1.8.13 (using
Doxyfile
)