ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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.ilTestProcessLockFileStorage.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
require_once
'Services/FileSystem/classes/class.ilFileSystemStorage.php'
;
5
12
class
ilTestProcessLockFileStorage
extends
ilFileSystemStorage
13
{
14
public
function
__construct
(
int
$contextId)
15
{
16
parent::__construct
(
ilFileSystemStorage::STORAGE_DATA
,
true
, $contextId);
17
}
18
27
protected
function
getPathPrefix
()
28
{
29
return
'ilTestProcessLocks'
;
30
}
31
41
protected
function
getPathPostfix
()
42
{
43
return
'context'
;
44
}
45
46
public
function
create
()
47
{
48
set_error_handler(
function
($severity,
$message
, $file, $line) {
49
throw
new
ErrorException(
$message
, $severity, 0, $file, $line);
50
});
51
52
try
{
53
ilUtil::makeDirParents
($this->
getPath
());
54
restore_error_handler();
55
}
catch
(
Exception
$e
) {
56
restore_error_handler();
57
}
58
59
if
(!file_exists($this->
getPath
())) {
60
throw
new
ErrorException(sprintf(
'Could not find directory: %s'
, $this->
getPath
()));
61
}
62
63
return
true
;
64
}
65
}
ilUtil\makeDirParents
static makeDirParents($a_dir)
Create a new directory and all parent directories.
Definition:
class.ilUtil.php:2207
ilTestProcessLockFileStorage\__construct
__construct(int $contextId)
Definition:
class.ilTestProcessLockFileStorage.php:14
Vendor\Package\$e
$e
Definition:
example_cleaned.php:31
ilFileSystemStorage\STORAGE_DATA
const STORAGE_DATA
Definition:
class.ilFileSystemStorage.php:37
ilFileSystemStorage\getPath
getPath()
Get path.
Definition:
class.ilFileSystemStorage.php:295
ilTestProcessLockFileStorage\getPathPostfix
getPathPostfix()
Get directory name.
Definition:
class.ilTestProcessLockFileStorage.php:41
ilFileSystemStorage
Definition:
class.ilFileSystemStorage.php:34
ilTestProcessLockFileStorage
Definition:
class.ilTestProcessLockFileStorage.php:12
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:30
$message
$message
Definition:
xapiexit.php:14
ilTestProcessLockFileStorage\create
create()
Definition:
class.ilTestProcessLockFileStorage.php:46
ilTestProcessLockFileStorage\getPathPrefix
getPathPrefix()
Get path prefix.
Definition:
class.ilTestProcessLockFileStorage.php:27
Exception
Modules
Test
classes
class.ilTestProcessLockFileStorage.php
Generated on Thu Apr 3 2025 20:00:56 for ILIAS by
1.8.13 (using
Doxyfile
)