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.ilSubmissionsZipJob.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\BackgroundTasks\Types\SingleType
;
20
use
ILIAS\BackgroundTasks\Implementation\Tasks\AbstractJob
;
21
use
ILIAS\BackgroundTasks\Implementation\Values\ScalarValues\StringValue
;
22
use
ILIAS\BackgroundTasks\Observer
;
23
use
ILIAS\BackgroundTasks\Types\Type
;
24
use
ILIAS\BackgroundTasks\Value
;
25
32
class
ilSubmissionsZipJob
extends
AbstractJob
33
{
34
protected
ilLogger
$logger
;
35
36
public
function
__construct
()
37
{
38
$this->
logger
=
$GLOBALS
[
'DIC'
]->logger()->exc();
39
}
40
41
public
function
getInputTypes
(): array
42
{
43
return
44
[
45
new
SingleType
(StringValue::class)
46
];
47
}
48
49
public
function
getOutputType
():
Type
50
{
51
return
new
SingleType
(StringValue::class);
52
}
53
54
public
function
isStateless
(): bool
55
{
56
return
true
;
57
}
58
63
public
function
run
(
64
array
$input
,
65
Observer
$observer
66
):
Value
{
67
$tmpdir = $input[0]->getValue();
68
69
$this->
logger
->debug(
"Calling zip..."
);
70
$this->
logger
->debug(
"... dir: "
. $tmpdir);
71
$this->
logger
->debug(
"... file: "
. $tmpdir .
'.zip'
);
72
ilFileUtils::zip
($tmpdir, $tmpdir .
'.zip'
);
73
74
// delete temp directory
75
$this->
logger
->debug(
"Deleting dir: "
. $tmpdir);
76
ilFileUtils::delDir
($tmpdir);
77
78
$this->
logger
->debug(
"Check zip file exists."
);
79
if
(is_file($tmpdir .
'.zip'
)) {
80
$this->
logger
->debug(
"File ok."
);
81
}
else
{
82
$this->
logger
->debug(
"File missing."
);
83
}
84
85
$zip_file_name =
new
StringValue
();
86
$zip_file_name->setValue($tmpdir .
'.zip'
);
87
return
$zip_file_name;
88
}
89
90
public
function
getExpectedTimeOfTaskInSeconds
():
int
91
{
92
return
30;
93
}
94
}
ilLogger
SingleType
ilSubmissionsZipJob\__construct
__construct()
Definition:
class.ilSubmissionsZipJob.php:36
StringValue
ILIAS\BackgroundTasks\Value
Definition:
Value.php:29
ILIAS\BackgroundTasks\Types\Type
Definition:
Type.php:21
AbstractJob
Observer
ILIAS\BackgroundTasks\Types\SingleType
Definition:
SingleType.php:21
$GLOBALS
$GLOBALS["DIC"]
Definition:
wac.php:53
ilSubmissionsZipJob\getInputTypes
getInputTypes()
Definition:
class.ilSubmissionsZipJob.php:41
ILIAS\BackgroundTasks\Observer
Definition:
Observer.php:21
ILIAS\BackgroundTasks\Implementation\Tasks\AbstractJob
Definition:
AbstractJob.php:28
ilFileUtils\delDir
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
Definition:
class.ilFileUtils.php:484
ilSubmissionsZipJob
Description of class class.
Definition:
class.ilSubmissionsZipJob.php:32
ILIAS\AdvancedMetaData\Data\FieldDefinition\Type
Type
Definition:
Type.php:23
ilSubmissionsZipJob\$logger
ilLogger $logger
Definition:
class.ilSubmissionsZipJob.php:34
ilSubmissionsZipJob\run
run(array $input, Observer $observer)
Definition:
class.ilSubmissionsZipJob.php:63
ilSubmissionsZipJob\getOutputType
getOutputType()
Definition:
class.ilSubmissionsZipJob.php:49
ILIAS\Repository\logger
logger()
Definition:
trait.GlobalDICDomainServices.php:71
ilFileUtils\zip
static zip(string $a_dir, string $a_file, bool $compress_content=false)
Definition:
class.ilFileUtils.php:459
ilSubmissionsZipJob\isStateless
isStateless()
Definition:
class.ilSubmissionsZipJob.php:54
ilSubmissionsZipJob\getExpectedTimeOfTaskInSeconds
getExpectedTimeOfTaskInSeconds()
Definition:
class.ilSubmissionsZipJob.php:90
ILIAS\BackgroundTasks\Implementation\Values\ScalarValues\StringValue
Definition:
StringValue.php:23
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
Value
ILIAS\BackgroundTasks\Implementation\Tasks\AbstractTask\$input
array $input
Definition:
AbstractTask.php:44
components
ILIAS
Exercise
classes
BackgroundTasks
class.ilSubmissionsZipJob.php
Generated on Wed Apr 2 2025 23:02:44 for ILIAS by
1.8.13 (using
Doxyfile
)