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.ilTestProcessLockFileStorage.php
Go to the documentation of this file.
1
<?php
24
class
ilTestProcessLockFileStorage
extends
ilFileSystemAbstractionStorage
25
{
26
public
function
__construct
(
int
$contextId)
27
{
28
parent::__construct
(
ilFileSystemAbstractionStorage::STORAGE_DATA
,
true
, $contextId);
29
}
30
39
protected
function
getPathPrefix
(): string
40
{
41
return
'ilTestProcessLocks'
;
42
}
43
53
protected
function
getPathPostfix
(): string
54
{
55
return
'context'
;
56
}
57
58
public
function
create
(): void
59
{
60
set_error_handler(
function
($severity,
$message
, $file, $line):
void
{
61
throw
new
ErrorException
(
$message
, $severity, 0, $file, $line);
62
});
63
64
try
{
65
parent::create();
66
restore_error_handler();
67
}
catch
(
Exception
$e
) {
68
restore_error_handler();
69
}
70
71
if
(!$this->
getFileSystemService
()->
has
($this->path)) {
72
throw
new
ErrorException
(sprintf(
'Could not find directory: %s'
, $this->
getPath
()));
73
}
74
}
75
}
ilFileSystemAbstractionStorage\getPath
getPath()
Definition:
class.ilFileSystemAbstractionStorage.php:285
ilTestProcessLockFileStorage\__construct
__construct(int $contextId)
Definition:
class.ilTestProcessLockFileStorage.php:26
ilFileSystemAbstractionStorage\getFileSystemService
getFileSystemService()
Definition:
class.ilFileSystemAbstractionStorage.php:74
Vendor\Package\$e
$e
Definition:
example_cleaned.php:49
ILIAS\GlobalScreen\has
has(string $class_name)
Definition:
SingletonTrait.php:61
ErrorException
ilTestProcessLockFileStorage\getPathPostfix
getPathPostfix()
Get directory name.
Definition:
class.ilTestProcessLockFileStorage.php:53
ilFileSystemAbstractionStorage\STORAGE_DATA
const STORAGE_DATA
Definition:
class.ilFileSystemAbstractionStorage.php:29
ilTestProcessLockFileStorage
Definition:
class.ilTestProcessLockFileStorage.php:24
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
$message
$message
Definition:
xapiexit.php:32
ilTestProcessLockFileStorage\create
create()
Definition:
class.ilTestProcessLockFileStorage.php:58
ilFileSystemAbstractionStorage
Definition:
class.ilFileSystemAbstractionStorage.php:26
ilTestProcessLockFileStorage\getPathPrefix
getPathPrefix()
Get path prefix.
Definition:
class.ilTestProcessLockFileStorage.php:39
Exception
Modules
Test
classes
class.ilTestProcessLockFileStorage.php
Generated on Thu Apr 3 2025 22:01:38 for ILIAS by
1.8.13 (using
Doxyfile
)