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
FileStreamConsumer.php
Go to the documentation of this file.
1
<?php declare(strict_types=1);
2
3
namespace
ILIAS\MainMenu\Storage\Consumer
;
4
5
use
ILIAS\Filesystem\Stream\FileStream
;
6
use
ILIAS\MainMenu\Storage\StorableResource
;
7
use
ILIAS\MainMenu\Storage\StorageHandler\StorageHandler
;
8
14
class
FileStreamConsumer
implements
StreamConsumer
15
{
16
20
private
$storage_handler
;
24
private
$resource
;
25
26
33
public
function
__construct
(
StorableResource
$resource
,
StorageHandler
$storage_handler
)
34
{
35
$this->resource =
$resource
;
36
$this->storage_handler =
$storage_handler
;
37
}
38
39
40
public
function
getStream
() :
FileStream
41
{
42
$revision = $this->resource->getCurrentRevision();
43
44
return
$this->storage_handler->getStream($revision);
45
}
46
}
ILIAS\MainMenu\Storage\Consumer\FileStreamConsumer
Definition:
FileStreamConsumer.php:14
ILIAS\MainMenu\Storage\Consumer\FileStreamConsumer\$storage_handler
$storage_handler
Definition:
FileStreamConsumer.php:20
ILIAS\MainMenu\Storage\StorageHandler\StorageHandler
Class FileResourceHandler.
Definition:
StorageHandler.php:17
ILIAS\MainMenu\Storage\Consumer
Definition:
ConsumerFactory.php:3
StorageHandler
StorableResource
ILIAS\MainMenu\Storage\Consumer\FileStreamConsumer\__construct
__construct(StorableResource $resource, StorageHandler $storage_handler)
DownloadConsumer constructor.
Definition:
FileStreamConsumer.php:33
ILIAS\MainMenu\Storage\Consumer\StreamConsumer
Interface StreamConsumer.
Definition:
StreamConsumer.php:13
ILIAS\MainMenu\Storage\Consumer\FileStreamConsumer\getStream
getStream()
Definition:
FileStreamConsumer.php:40
FileStream
ILIAS\MainMenu\Storage\Consumer\FileStreamConsumer\$resource
$resource
Definition:
FileStreamConsumer.php:24
ILIAS\MainMenu\Storage\StorableResource
Interface StorageResource.
Definition:
StorableResource.php:15
ILIAS\Filesystem\Stream\FileStream
Interface FileStream.
Definition:
FileStream.php:20
Services
MainMenu
classes
Storage
Consumer
FileStreamConsumer.php
Generated on Thu Apr 3 2025 20:01:09 for ILIAS by
1.8.13 (using
Doxyfile
)