ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilObjExerciseVerificationAccess.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
4
12
class
ilObjExerciseVerificationAccess
extends
ilObjectAccess
13
{
26
public
static
function
_getCommands
()
27
{
28
$commands = array();
29
$commands[] = array(
"permission"
=>
"read"
,
"cmd"
=>
"view"
,
"lang_var"
=>
"show"
,
"default"
=>
true
);
30
return
$commands;
31
}
32
33
public
static
function
_checkGoto
($a_target)
34
{
35
global
$DIC
;
36
37
$ilAccess = $DIC->access();
38
39
$t_arr = explode(
"_"
, $a_target);
40
41
// #11021
42
// personal workspace context: do not force normal login
43
if
(isset($t_arr[2]) && $t_arr[2] ==
"wsp"
) {
44
return
ilSharedResourceGUI::hasAccess
($t_arr[1]);
45
}
46
47
if
($ilAccess->checkAccess(
"read"
,
""
, $t_arr[1])) {
48
return
true
;
49
}
50
return
false
;
51
}
52
}
ilObjectAccess
ilObjExerciseVerificationAccess\_checkGoto
static _checkGoto($a_target)
Definition:
class.ilObjExerciseVerificationAccess.php:33
ilObjExerciseVerificationAccess\_getCommands
static _getCommands()
get commands
Definition:
class.ilObjExerciseVerificationAccess.php:26
$DIC
global $DIC
Definition:
goto.php:24
ilSharedResourceGUI\hasAccess
static hasAccess($a_node_id, $a_is_portfolio=false)
Definition:
class.ilSharedResourceGUI.php:199
ilObjExerciseVerificationAccess
Class ilObjExerciseVerificationAccess.
Definition:
class.ilObjExerciseVerificationAccess.php:12
Modules
Exercise
classes
class.ilObjExerciseVerificationAccess.php
Generated on Thu Apr 3 2025 21:00:54 for ILIAS by
1.8.13 (using
Doxyfile
)