ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilTestProcessLockerFactory.php
Go to the documentation of this file.
1
<?php
2
25
class
ilTestProcessLockerFactory
26
{
30
protected
$settings
;
31
35
protected
$db
;
36
40
protected
$contextId
;
41
46
public
function
__construct
(
ilSetting
$settings
,
ilDBInterface
$db
)
47
{
48
$this->
settings
=
$settings
;
49
$this->db =
$db
;
50
}
51
52
public
function
getContextId
(): ?
int
53
{
54
return
$this->contextId
;
55
}
56
57
public
function
withContextId
(
int
$contextId
): self
58
{
59
$clone = clone $this;
60
$clone->contextId =
$contextId
;
61
62
return
$clone;
63
}
64
65
private
function
getLockModeSettingValue
(): ?string
66
{
67
return
$this->
settings
->get(
'ass_process_lock_mode'
,
ilObjAssessmentFolder::ASS_PROC_LOCK_MODE_NONE
);
68
}
69
73
public
function
getLocker
():
ilTestProcessLocker
74
{
75
switch
($this->
getLockModeSettingValue
()) {
76
case
ilObjAssessmentFolder::ASS_PROC_LOCK_MODE_NONE
:
77
78
$locker =
new
ilTestProcessLockerNone
();
79
break
;
80
81
case
ilObjAssessmentFolder::ASS_PROC_LOCK_MODE_FILE
:
82
83
$storage =
new
ilTestProcessLockFileStorage
((
int
) $this->
getContextId
());
84
$storage->create();
85
86
$locker =
new
ilTestProcessLockerFile
($storage);
87
break
;
88
89
case
ilObjAssessmentFolder::ASS_PROC_LOCK_MODE_DB
:
90
91
$locker =
new
ilTestProcessLockerDb
($this->db);
92
break
;
93
}
94
95
return
$locker;
96
}
97
98
public
function
retrieveLockerForNamedOperation
():
ilTestProcessLocker
99
{
100
if
($this->
getLocker
() instanceof
ilTestProcessLockerFile
) {
101
return
$this->
getLocker
();
102
}
103
104
return
new
ilTestProcessLockerNone
();
105
}
106
}
ilTestProcessLockerFactory\__construct
__construct(ilSetting $settings, ilDBInterface $db)
Definition:
class.ilTestProcessLockerFactory.php:46
ilTestProcessLockerFactory\withContextId
withContextId(int $contextId)
Definition:
class.ilTestProcessLockerFactory.php:57
ilObjAssessmentFolder\ASS_PROC_LOCK_MODE_DB
const ASS_PROC_LOCK_MODE_DB
Definition:
class.ilObjAssessmentFolder.php:34
ilTestProcessLockerFactory\$settings
$settings
Definition:
class.ilTestProcessLockerFactory.php:30
ilTestProcessLockerNone
Definition:
class.ilTestProcessLockerNone.php:25
ilTestProcessLockerFactory\$db
$db
Definition:
class.ilTestProcessLockerFactory.php:35
ilObjAssessmentFolder\ASS_PROC_LOCK_MODE_NONE
const ASS_PROC_LOCK_MODE_NONE
Definition:
class.ilObjAssessmentFolder.php:32
ilObjAssessmentFolder\ASS_PROC_LOCK_MODE_FILE
const ASS_PROC_LOCK_MODE_FILE
Definition:
class.ilObjAssessmentFolder.php:33
ilTestProcessLockerFactory
Definition:
class.ilTestProcessLockerFactory.php:25
ilTestProcessLockerFactory\getLockModeSettingValue
getLockModeSettingValue()
Definition:
class.ilTestProcessLockerFactory.php:65
ilTestProcessLockerFactory\getLocker
getLocker()
Definition:
class.ilTestProcessLockerFactory.php:73
ilTestProcessLockerFactory\retrieveLockerForNamedOperation
retrieveLockerForNamedOperation()
Definition:
class.ilTestProcessLockerFactory.php:98
ilDBInterface
ilTestProcessLockerFile
Definition:
class.ilTestProcessLockerFile.php:25
ILIAS\Repository\settings
settings()
Definition:
trait.GlobalDICDomainServices.php:91
ilTestProcessLockerFactory\getContextId
getContextId()
Definition:
class.ilTestProcessLockerFactory.php:52
ilTestProcessLockFileStorage
Definition:
class.ilTestProcessLockFileStorage.php:24
ilTestProcessLockerDb
Definition:
class.ilTestProcessLockerDb.php:25
ilTestProcessLocker
Definition:
class.ilTestProcessLocker.php:25
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilSetting
ilTestProcessLockerFactory\$contextId
$contextId
Definition:
class.ilTestProcessLockerFactory.php:40
Modules
Test
classes
class.ilTestProcessLockerFactory.php
Generated on Thu Apr 3 2025 22:01:38 for ILIAS by
1.8.13 (using
Doxyfile
)