ILIAS
release_4-4 Revision
◀ 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
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
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.ilObjTestVerificationAccess.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
include_once(
"./Services/Object/classes/class.ilObjectAccess.php"
);
5
14
class
ilObjTestVerificationAccess
extends
ilObjectAccess
15
{
28
function
_getCommands
()
29
{
30
$commands = array();
31
$commands[] = array(
"permission"
=>
"read"
,
"cmd"
=>
"view"
,
"lang_var"
=>
"show"
,
"default"
=>
true
);
32
return
$commands;
33
}
34
35
function
_checkGoto
($a_target)
36
{
37
global $ilAccess;
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
{
45
include_once
"Services/PersonalWorkspace/classes/class.ilSharedResourceGUI.php"
;
46
return
ilSharedResourceGUI::hasAccess
($t_arr[1]);
47
}
48
49
if
($ilAccess->checkAccess(
"read"
,
""
, $t_arr[1]))
50
{
51
return
true
;
52
}
53
return
false
;
54
}
55
}
56
57
?>
ilObjTestVerificationAccess\_checkGoto
_checkGoto($a_target)
Definition:
class.ilObjTestVerificationAccess.php:35
ilObjTestVerificationAccess\_getCommands
_getCommands()
get commands
Definition:
class.ilObjTestVerificationAccess.php:28
ilSharedResourceGUI\hasAccess
static hasAccess($a_node_id, $a_is_portfolio=false)
Definition:
class.ilSharedResourceGUI.php:154
ilObjectAccess
Class ilObjectAccess.
Definition:
class.ilObjectAccess.php:16
ilObjTestVerificationAccess
Class ilObjTestVerificationAccess.
Definition:
class.ilObjTestVerificationAccess.php:14
Modules
Test
classes
class.ilObjTestVerificationAccess.php
Generated on Mon Dec 21 2020 19:01:06 for ILIAS by
1.8.13 (using
Doxyfile
)