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.ilObjLTIConsumerVerificationAccess.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
15
class
ilObjLTIConsumerVerificationAccess
extends
ilObjectAccess
16
{
17
public
static
function
_getCommands
()
18
{
19
$commands = array();
20
$commands[] = array(
"permission"
=>
"read"
,
"cmd"
=>
"view"
,
"lang_var"
=>
"show"
,
"default"
=>
true
);
21
return
$commands;
22
}
23
24
public
static
function
_checkGoto
($a_target)
25
{
26
global
$DIC
;
/* @var \ILIAS\DI\Container $DIC */
27
28
$t_arr = explode(
"_"
, $a_target);
29
30
// #11021
31
// personal workspace context: do not force normal login
32
if
(isset($t_arr[2]) && $t_arr[2] ==
"wsp"
) {
33
include_once
"Services/PersonalWorkspace/classes/class.ilSharedResourceGUI.php"
;
34
return
ilSharedResourceGUI::hasAccess
($t_arr[1]);
35
}
36
37
if
($DIC->access()->checkAccess(
"read"
,
""
, $t_arr[1])) {
38
return
true
;
39
}
40
return
false
;
41
}
42
}
ilObjectAccess
$DIC
global $DIC
Definition:
goto.php:24
ilSharedResourceGUI\hasAccess
static hasAccess($a_node_id, $a_is_portfolio=false)
Definition:
class.ilSharedResourceGUI.php:199
ilObjLTIConsumerVerificationAccess
Definition:
class.ilObjLTIConsumerVerificationAccess.php:15
ilObjLTIConsumerVerificationAccess\_checkGoto
static _checkGoto($a_target)
Definition:
class.ilObjLTIConsumerVerificationAccess.php:24
ilObjLTIConsumerVerificationAccess\_getCommands
static _getCommands()
Definition:
class.ilObjLTIConsumerVerificationAccess.php:17
Modules
LTIConsumer
classes
Verification
class.ilObjLTIConsumerVerificationAccess.php
Generated on Tue Apr 8 2025 21:01:22 for ILIAS by
1.8.13 (using
Doxyfile
)