ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
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
k
l
m
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
5
include_once(
"./Services/Object/classes/class.ilObjectAccess.php"
);
6
15
class
ilObjExerciseVerificationAccess
extends
ilObjectAccess
16
{
29
function
_getCommands
()
30
{
31
$commands = array();
32
$commands[] = array(
"permission"
=>
"read"
,
"cmd"
=>
"view"
,
"lang_var"
=>
"show"
,
"default"
=>
true
);
33
return
$commands;
34
}
35
36
function
_checkGoto
($a_target)
37
{
38
global $ilAccess;
39
40
$t_arr = explode(
"_"
, $a_target);
41
42
// #11021
43
// personal workspace context: do not force normal login
44
if
(isset($t_arr[2]) && $t_arr[2] ==
"wsp"
)
45
{
46
include_once
"Services/PersonalWorkspace/classes/class.ilSharedResourceGUI.php"
;
47
return
ilSharedResourceGUI::hasAccess
($t_arr[1]);
48
}
49
50
if
($ilAccess->checkAccess(
"read"
,
""
, $t_arr[1]))
51
{
52
return
true
;
53
}
54
return
false
;
55
}
56
}
57
58
?>
ilObjExerciseVerificationAccess\_getCommands
_getCommands()
get commands
Definition:
class.ilObjExerciseVerificationAccess.php:29
ilSharedResourceGUI\hasAccess
static hasAccess($a_node_id, $a_is_portfolio=false)
Definition:
class.ilSharedResourceGUI.php:154
ilObjExerciseVerificationAccess
Class ilObjExerciseVerificationAccess.
Definition:
class.ilObjExerciseVerificationAccess.php:15
ilObjExerciseVerificationAccess\_checkGoto
_checkGoto($a_target)
Definition:
class.ilObjExerciseVerificationAccess.php:36
ilObjectAccess
Class ilObjectAccess.
Definition:
class.ilObjectAccess.php:16
Modules
Exercise
classes
class.ilObjExerciseVerificationAccess.php
Generated on Mon Mar 31 2025 19:00:35 for ILIAS by
1.8.13 (using
Doxyfile
)