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.ilObjCourseVerificationAccess.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
14
class
ilObjCourseVerificationAccess
extends
ilObjectAccess
15
{
28
public
static
function
_getCommands
()
29
{
30
$commands = array();
31
$commands[] = array(
"permission"
=>
"read"
,
"cmd"
=>
"view"
,
"lang_var"
=>
"show"
,
"default"
=>
true
);
32
return
$commands;
33
}
34
35
public
static
function
_checkGoto
($a_target)
36
{
37
global
$DIC
;
38
39
$ilAccess = $DIC[
'ilAccess'
];
40
41
$t_arr = explode(
"_"
, $a_target);
42
43
// #11021
44
// personal workspace context: do not force normal login
45
if
(isset($t_arr[2]) && $t_arr[2] ==
"wsp"
) {
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
return
true
;
52
}
53
return
false
;
54
}
55
}
ilObjectAccess
ilObjCourseVerificationAccess\_checkGoto
static _checkGoto($a_target)
Definition:
class.ilObjCourseVerificationAccess.php:35
ilObjCourseVerificationAccess\_getCommands
static _getCommands()
get commands
Definition:
class.ilObjCourseVerificationAccess.php:28
$DIC
global $DIC
Definition:
goto.php:24
ilSharedResourceGUI\hasAccess
static hasAccess($a_node_id, $a_is_portfolio=false)
Definition:
class.ilSharedResourceGUI.php:199
ilObjCourseVerificationAccess
Class ilObjCourseVerificationAccess.
Definition:
class.ilObjCourseVerificationAccess.php:14
Modules
Course
classes
Verification
class.ilObjCourseVerificationAccess.php
Generated on Wed Apr 2 2025 21:01:00 for ILIAS by
1.8.13 (using
Doxyfile
)