ILIAS
trunk Revision v11.0_alpha-2645-g16283d3b3f8
◀ ilDoc Overview
Factory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Dropzone
;
22
23
use
ILIAS\UI\Component\Dropzone
as
D
;
24
28
class
Factory
implements
D\Factory
29
{
30
protected
File\Factory
$file_factory
;
31
32
public
function
__construct
(
File
\
Factory
$file_factory)
33
{
34
$this->file_factory =
$file_factory
;
35
}
36
37
public
function
file
():
File
\
Factory
38
{
39
return
$this->file_factory
;
40
}
41
}
ILIAS\UI\Implementation\Component\Dropzone\Factory\__construct
__construct(File\Factory $file_factory)
Definition:
Factory.php:32
ILIAS\UI\Implementation\Component\Dropzone\Factory\$file_factory
File Factory $file_factory
Definition:
Factory.php:30
ILIAS\UI\Implementation\Component\Dropzone\Factory\file
file()
description: purpose: > File dropzones are used to drop files from outside the browser window...
Definition:
Factory.php:37
ILIAS\UI\Implementation\Component\Dropzone\Factory
Definition:
Factory.php:28
ILIAS\UI\Implementation\Component\Dropzone
Definition:
Factory.php:21
ILIAS\File
Definition:
File.php:27
ILIAS\UI\Component\Dropzone
Definition:
Factory.php:21
components
ILIAS
UI
src
Implementation
Component
Dropzone
Factory.php
Generated on Mon Sep 1 2025 23:02:03 for ILIAS by
1.8.13 (using
Doxyfile
)