ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilObjLearningModuleAccess.php
Go to the documentation of this file.
1
<?php
2
22
class
ilObjLearningModuleAccess
extends
ilObjContentObjectAccess
implements
ilConditionHandling
,
ilWACCheckingClass
23
{
24
protected
static
?array
$lm_set
=
null
;
25
26
public
function
__construct
()
27
{
28
global
$DIC
;
29
parent::__construct
();
30
31
$this->
access
= $DIC->access();
32
}
33
37
public
static
function
getConditionOperators
(): array
38
{
39
// currently only one mode "ilConditionHandler::OPERATOR_LP"
40
// which is automatically added by condition handling, if lp is activated
41
return
array();
42
}
43
44
45
public
static
function
checkCondition
(
int
$a_trigger_obj_id,
string
$a_operator,
string
$a_value,
int
$a_usr_id): bool
46
{
47
return
true
;
48
}
49
50
51
public
static
function
_lookupSetting
(
string
$a_set): ?string
52
{
53
if
(!is_array(
self::$lm_set
)) {
54
$lm_set =
new
ilSetting
(
"lm"
);
55
self::$lm_set
= $lm_set->getAll();
56
}
57
58
return
self::$lm_set
[$a_set] ??
null
;
59
}
60
61
public
static
function
_getCommands
(): array
62
{
63
if
(self::_lookupSetting(
"lm_starting_point"
) ==
"first"
) {
64
$commands = array(
65
array(
"permission"
=>
"read"
,
"cmd"
=>
"view"
,
"lang_var"
=>
"show"
,
66
"default"
=>
true
),
67
array(
"permission"
=>
"read"
,
"cmd"
=>
"continue"
,
"lang_var"
=>
"continue_work"
)
68
);
69
}
else
{
70
$commands = array(
71
array(
"permission"
=>
"read"
,
"cmd"
=>
"continue"
,
"lang_var"
=>
"continue_work"
,
"default"
=>
true
)
72
);
73
}
74
$commands[] = array(
"permission"
=>
"write"
,
"cmd"
=>
"edit"
,
"lang_var"
=>
"edit_content"
);
75
$commands[] = array(
"permission"
=>
"write"
,
"cmd"
=>
"properties"
,
"lang_var"
=>
"settings"
);
76
77
return
$commands;
78
}
79
80
81
public
function
canBeDelivered
(
ilWACPath
$ilWACPath):
bool
82
{
83
$ilAccess =
$this->access
;
87
preg_match(
"/lm_data\\/lm_([0-9]*)\\//ui"
, $ilWACPath->
getPath
(),
$results
);
88
foreach
(
ilObject2::_getAllReferences
(
$results
[1]) as
$ref_id
) {
89
if
($ilAccess->checkAccess(
'read'
,
''
,
$ref_id
)) {
90
return
true
;
91
}
92
}
93
94
return
false
;
95
}
96
}
ILIAS\Repository\access
access()
Definition:
trait.GlobalDICDomainServices.php:51
ilWACCheckingClass\canBeDelivered
canBeDelivered(ilWACPath $ilWACPath)
ilObject\_getAllReferences
static _getAllReferences(int $id)
get all reference ids for object ID
Definition:
class.ilObject.php:809
ilConditionHandling
Interface for condition handling.
Definition:
interface.ilConditionHandling.php:25
ilObjLearningModuleAccess\getConditionOperators
static getConditionOperators()
Get possible conditions operators.
Definition:
class.ilObjLearningModuleAccess.php:37
ilWACPath
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilWACPath.php:26
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilWACPath\getPath
getPath()
Definition:
class.ilWACPath.php:416
$ref_id
$ref_id
Definition:
ltiauth.php:65
ilObjLearningModuleAccess\_lookupSetting
static _lookupSetting(string $a_set)
Definition:
class.ilObjLearningModuleAccess.php:51
ilObjLearningModuleAccess\__construct
__construct()
Definition:
class.ilObjLearningModuleAccess.php:26
ilObjLearningModuleAccess
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilObjLearningModuleAccess.php:22
ilObjLearningModuleAccess\$lm_set
static array $lm_set
Definition:
class.ilObjLearningModuleAccess.php:24
$DIC
global $DIC
Definition:
shib_login.php:22
ilObjContentObjectAccess
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilObjContentObjectAccess.php:22
$results
$results
Definition:
save_question_post_data.php:22
ilWACCheckingClass
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
interface.ilWACCheckingClass.php:24
ilObjLearningModuleAccess\_getCommands
static _getCommands()
Definition:
class.ilObjLearningModuleAccess.php:61
$lm_set
$lm_set
Definition:
storeScorm2004.php:42
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ilObjLearningModuleAccess\checkCondition
static checkCondition(int $a_trigger_obj_id, string $a_operator, string $a_value, int $a_usr_id)
check condition for a specific user and object
Definition:
class.ilObjLearningModuleAccess.php:45
ilObjContentObjectAccess\$access
ilAccessHandler $access
Definition:
class.ilObjContentObjectAccess.php:27
ilSetting
components
ILIAS
LearningModule
classes
class.ilObjLearningModuleAccess.php
Generated on Wed Apr 2 2025 23:03:04 for ILIAS by
1.8.13 (using
Doxyfile
)