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.ilRepoStandardUploadHandlerGUI.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\FileUpload\Handler\AbstractCtrlAwareUploadHandler
;
22
use
ILIAS\FileUpload\Handler\FileInfoResult
;
23
use
ILIAS\FileUpload\Handler\HandlerResult
;
24
use
ILIAS\UI\Component\Dropzone\File\Wrapper
;
25
use
ILIAS\FileUpload\Location
;
26
use
ILIAS\FileUpload\Handler\BasicFileInfoResult
;
27
use
ILIAS\FileUpload\Handler\BasicHandlerResult
;
28
use
ILIAS\UI\Component\Input\Field\Group
;
29
33
class
ilRepoStandardUploadHandlerGUI
extends
AbstractCtrlAwareUploadHandler
34
{
35
protected
array
$ctrl_path
;
36
protected
?
ilLogger
$log
=
null
;
37
protected
Closure
$result_handler
;
38
protected
string
$file_id_parameter
=
""
;
39
40
public
function
__construct
(
41
Closure
$result_handler,
42
string
$file_id_parameter,
43
string
$logger_id =
""
,
44
array $ctrl_path = []
45
) {
46
global
$DIC
;
47
$this->ctrl_path =
$ctrl_path
;
48
parent::__construct
();
49
50
if
($logger_id !==
""
) {
51
$this->log =
ilLoggerFactory::getLogger
($logger_id);
52
}
53
$this->result_handler =
$result_handler
;
54
$this->file_id_parameter =
$file_id_parameter
;
55
}
56
57
protected
function
getCtrlPath
(): array
58
{
59
$path
=
$this->ctrl_path
;
60
$path
[] = static::class;
61
return
$path
;
62
}
63
public
function
getUploadURL
(): string
64
{
65
return
$this->
ctrl
->getLinkTargetByClass($this->
getCtrlPath
(), self::CMD_UPLOAD);
66
}
67
68
72
public
function
getExistingFileInfoURL
(): string
73
{
74
return
$this->
ctrl
->getLinkTargetByClass($this->
getCtrlPath
(), self::CMD_INFO);
75
}
76
77
81
public
function
getFileRemovalURL
(): string
82
{
83
return
$this->
ctrl
->getLinkTargetByClass($this->
getCtrlPath
(), self::CMD_REMOVE);
84
}
85
86
protected
function
debug
(
string
$mess): void
87
{
88
if
(!is_null($this->log)) {
89
$this->log->debug($mess);
90
}
91
}
92
93
protected
function
getUploadResult
():
HandlerResult
94
{
95
$this->
debug
(
"checking for uploads..."
);
96
if
($this->
upload
->hasUploads()) {
97
$this->
debug
(
"has upload..."
);
98
try
{
99
$this->
upload
->process();
100
$this->
debug
(
"nr of results: "
. count($this->
upload
->getResults()));
101
foreach
($this->
upload
->getResults(
102
) as $result) {
// in this version, there will only be one upload at the time
103
$rh =
$this->result_handler
;
104
$result = $rh($this->
upload
, $result);
105
}
106
}
catch
(
Exception
$e
) {
107
$result =
new
BasicHandlerResult
(
108
$this->
getFileIdentifierParameterName
(),
109
BasicHandlerResult::STATUS_FAILED,
110
''
,
111
$e->getMessage()
112
);
113
}
114
$this->
debug
(
"end of 'has_uploads'"
);
115
}
else
{
116
$this->
debug
(
"has no upload..."
);
117
}
118
return
$result;
119
}
120
121
protected
function
getRemoveResult
(
string
$identifier):
HandlerResult
122
{
123
return
new
BasicHandlerResult
(
124
$this->
getFileIdentifierParameterName
(),
125
HandlerResult::STATUS_OK,
126
$identifier,
127
''
128
);
129
}
130
131
public
function
getInfoResult
(
string
$identifier): ?
FileInfoResult
132
{
133
return
null
;
134
}
135
136
public
function
getInfoForExistingFiles
(array $file_ids): array
137
{
138
return
[];
139
}
140
141
public
function
getFileIdentifierParameterName
(): string
142
{
143
return
$this->file_id_parameter
;
144
}
145
}
ilLogger
ilRepoStandardUploadHandlerGUI\$ctrl_path
array $ctrl_path
Definition:
class.ilRepoStandardUploadHandlerGUI.php:35
ilRepoStandardUploadHandlerGUI\getUploadURL
getUploadURL()
Definition:
class.ilRepoStandardUploadHandlerGUI.php:63
ilRepoStandardUploadHandlerGUI\getCtrlPath
getCtrlPath()
Definition:
class.ilRepoStandardUploadHandlerGUI.php:57
ilLoggerFactory\getLogger
static getLogger(string $a_component_id)
Get component logger.
Definition:
class.ilLoggerFactory.php:89
ilRepoStandardUploadHandlerGUI\getInfoResult
getInfoResult(string $identifier)
Definition:
class.ilRepoStandardUploadHandlerGUI.php:131
BasicHandlerResult
Closure
Vendor\Package\$e
$e
Definition:
example_cleaned.php:49
ilRepoStandardUploadHandlerGUI\$file_id_parameter
string $file_id_parameter
Definition:
class.ilRepoStandardUploadHandlerGUI.php:38
Location
BasicFileInfoResult
AbstractCtrlAwareUploadHandler
$path
$path
Definition:
ltiservices.php:29
ilRepoStandardUploadHandlerGUI
Definition:
class.ilRepoStandardUploadHandlerGUI.php:33
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ilRepoStandardUploadHandlerGUI\getRemoveResult
getRemoveResult(string $identifier)
Definition:
class.ilRepoStandardUploadHandlerGUI.php:121
ILIAS\Repository\ctrl
ctrl()
Definition:
trait.GlobalDICGUIServices.php:63
ilRepoStandardUploadHandlerGUI\getUploadResult
getUploadResult()
Definition:
class.ilRepoStandardUploadHandlerGUI.php:93
ilRepoStandardUploadHandlerGUI\debug
debug(string $mess)
Definition:
class.ilRepoStandardUploadHandlerGUI.php:86
ilRepoStandardUploadHandlerGUI\$log
ilLogger $log
Definition:
class.ilRepoStandardUploadHandlerGUI.php:36
FileInfoResult
ilRepoStandardUploadHandlerGUI\getExistingFileInfoURL
getExistingFileInfoURL()
Definition:
class.ilRepoStandardUploadHandlerGUI.php:72
Wrapper
$DIC
global $DIC
Definition:
shib_login.php:22
ilRepoStandardUploadHandlerGUI\__construct
__construct(Closure $result_handler, string $file_id_parameter, string $logger_id="", array $ctrl_path=[])
Definition:
class.ilRepoStandardUploadHandlerGUI.php:40
HandlerResult
ILIAS\MetaData\OERExposer\OAIPMH\Handler\BasicHandlerResult
Class BasicHandlerResult.
Definition:
BasicHandlerResult.php:28
ILIAS\MetaData\OERExposer\OAIPMH\Handler\HandlerResult
Interface HandlerResult.
Definition:
HandlerResult.php:30
ILIAS\MetaData\OERExposer\OAIPMH\Handler\FileInfoResult
Interface FileInfoResult.
Definition:
FileInfoResult.php:30
ilRepoStandardUploadHandlerGUI\$result_handler
Closure $result_handler
Definition:
class.ilRepoStandardUploadHandlerGUI.php:37
ILIAS\MetaData\OERExposer\OAIPMH\Handler\AbstractCtrlAwareUploadHandler
Class ilCtrlAwareUploadHandler.
Definition:
AbstractCtrlAwareUploadHandler.php:33
ilRepoStandardUploadHandlerGUI\getInfoForExistingFiles
getInfoForExistingFiles(array $file_ids)
Definition:
class.ilRepoStandardUploadHandlerGUI.php:136
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ILIAS\ILIASObject\Creation\Group
Definition:
AddNewItemElementTypes.php:26
ILIAS\Repository\upload
upload()
Definition:
trait.GlobalDICGUIServices.php:94
ilRepoStandardUploadHandlerGUI\getFileIdentifierParameterName
getFileIdentifierParameterName()
Definition:
class.ilRepoStandardUploadHandlerGUI.php:141
ilRepoStandardUploadHandlerGUI\getFileRemovalURL
getFileRemovalURL()
Definition:
class.ilRepoStandardUploadHandlerGUI.php:81
Exception
components
ILIAS
Repository
Service
Form
class.ilRepoStandardUploadHandlerGUI.php
Generated on Wed Apr 2 2025 23:03:27 for ILIAS by
1.8.13 (using
Doxyfile
)