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.ilAssQuestionProcessLockFileStorage.php
Go to the documentation of this file.
1
<?php
24
class
ilAssQuestionProcessLockFileStorage
extends
ilFileSystemAbstractionStorage
25
{
26
private
$subPath
;
27
28
public
function
__construct
(
int
$questionId, $userId)
29
{
30
parent::__construct
(
ilFileSystemAbstractionStorage::STORAGE_DATA
,
true
, $questionId);
31
32
$this->
initSubPath
($userId);
33
}
34
43
protected
function
getPathPrefix
(): string
44
{
45
return
'ilAssQuestionProcessLocks'
;
46
}
47
57
protected
function
getPathPostfix
(): string
58
{
59
return
'question'
;
60
}
61
62
public
function
getPath
(): string
63
{
64
return
parent::getPath() .
'/'
.
$this->subPath
;
65
}
66
67
public
function
create
(): void
68
{
69
set_error_handler(
function
($severity,
$message
, $file, $line):
void
{
70
throw
new
ErrorException
(
$message
, $severity, 0, $file, $line);
71
});
72
73
try
{
74
parent::create($this->
getPath
());
75
restore_error_handler();
76
}
catch
(
Exception
$e
) {
77
restore_error_handler();
78
}
79
80
if
(!$this->
getFileSystemService
()->
has
($this->path)) {
81
throw
new
ErrorException
(sprintf(
'Could not find directory: %s'
, $this->
getPath
()));
82
}
83
}
84
85
private
function
initSubPath
($userId): void
86
{
87
$userId = (string) $userId;
88
89
$path
= array();
90
91
for
(
$i
= 0, $max = strlen($userId);
$i
< $max;
$i
++) {
92
$path
[] = substr($userId,
$i
, 1);
93
}
94
95
$this->subPath = implode(
'/'
,
$path
);
96
}
97
}
ilAssQuestionProcessLockFileStorage
Definition:
class.ilAssQuestionProcessLockFileStorage.php:24
ilAssQuestionProcessLockFileStorage\getPathPrefix
getPathPrefix()
Get path prefix.
Definition:
class.ilAssQuestionProcessLockFileStorage.php:43
ilFileSystemAbstractionStorage\getFileSystemService
getFileSystemService()
Definition:
class.ilFileSystemAbstractionStorage.php:74
Vendor\Package\$e
$e
Definition:
example_cleaned.php:49
ilAssQuestionProcessLockFileStorage\__construct
__construct(int $questionId, $userId)
Definition:
class.ilAssQuestionProcessLockFileStorage.php:28
ILIAS\GlobalScreen\has
has(string $class_name)
Definition:
SingletonTrait.php:61
ilAssQuestionProcessLockFileStorage\$subPath
$subPath
Definition:
class.ilAssQuestionProcessLockFileStorage.php:26
ilAssQuestionProcessLockFileStorage\create
create()
Definition:
class.ilAssQuestionProcessLockFileStorage.php:67
ilAssQuestionProcessLockFileStorage\initSubPath
initSubPath($userId)
Definition:
class.ilAssQuestionProcessLockFileStorage.php:85
ErrorException
ilAssQuestionProcessLockFileStorage\getPath
getPath()
Definition:
class.ilAssQuestionProcessLockFileStorage.php:62
ilAssQuestionProcessLockFileStorage\getPathPostfix
getPathPostfix()
Get directory name.
Definition:
class.ilAssQuestionProcessLockFileStorage.php:57
ilFileSystemAbstractionStorage\STORAGE_DATA
const STORAGE_DATA
Definition:
class.ilFileSystemAbstractionStorage.php:29
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
$message
$message
Definition:
xapiexit.php:32
ilFileSystemAbstractionStorage
Definition:
class.ilFileSystemAbstractionStorage.php:26
ilFileSystemAbstractionStorage\$path
string $path
Definition:
class.ilFileSystemAbstractionStorage.php:37
$i
$i
Definition:
metadata.php:41
Exception
Modules
TestQuestionPool
classes
class.ilAssQuestionProcessLockFileStorage.php
Generated on Thu Apr 3 2025 22:01:40 for ILIAS by
1.8.13 (using
Doxyfile
)