ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilCountPDFPagesPreProcessors.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\Filesystem\Stream\FileStream
;
20
use
ILIAS\FileUpload\DTO\Metadata
;
21
use
ILIAS\FileUpload\DTO\ProcessingStatus
;
22
use
ILIAS\FileUpload\Processor\PreProcessor
;
23
use
ILIAS\FileUpload\MimeType
;
24
30
class
ilCountPDFPagesPreProcessors
implements
PreProcessor
31
{
32
public
const
PAGE_COUNT
=
'page_count'
;
33
private
ilCountPDFPages
$page_counter
;
34
35
public
function
__construct
()
36
{
37
$this->page_counter =
new
ilCountPDFPages
();
38
}
39
40
public
function
process
(
FileStream
$stream,
Metadata
$metadata): \
ILIAS
\FileUpload\DTO\
ProcessingStatus
41
{
42
if
(
43
$this->page_counter->isAvailable()
44
&& $metadata->
getMimeType
() === MimeType::APPLICATION__PDF
45
) {
46
$path_to_pdf = $stream->getMetadata(
'uri'
);
47
$metadata->
additionalMetaData
()->put(
48
self::PAGE_COUNT,
49
(
string
) $this->page_counter->extractAmountOfPagesByPath($path_to_pdf)
50
);
51
}
52
53
return
new
ProcessingStatus
(
54
ProcessingStatus::OK,
55
'ilCountPDFPagesPreProcessors'
56
);
57
}
58
}
ilCountPDFPagesPreProcessors\process
process(FileStream $stream, Metadata $metadata)
This method gets invoked by the file upload service to process the file with the help of the processo...
Definition:
class.ilCountPDFPagesPreProcessors.php:40
ILIAS\FileUpload\Processor\PreProcessor
Class PreProcessor.
Definition:
PreProcessor.php:35
ILIAS\FileUpload\DTO\ProcessingStatus
Class ProcessingStatus.
Definition:
ProcessingStatus.php:36
ilCountPDFPagesPreProcessors\PAGE_COUNT
const PAGE_COUNT
Definition:
class.ilCountPDFPagesPreProcessors.php:32
ILIAS
Class ChatMainBarProvider .
MimeType
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\FileUpload\DTO\Metadata\getMimeType
getMimeType()
Client supplied mime type of the uploaded.
Definition:
Metadata.php:102
ILIAS\FileUpload\DTO\Metadata\additionalMetaData
additionalMetaData()
Provides a string map implementation which allows the processors to store additional values...
Definition:
Metadata.php:131
ProcessingStatus
ILIAS\FileUpload\DTO\Metadata
Class Metadata.
Definition:
Metadata.php:21
ilCountPDFPagesPreProcessors\__construct
__construct()
Definition:
class.ilCountPDFPagesPreProcessors.php:35
Metadata
FileStream
ilCountPDFPagesPreProcessors
Class ilCountPDFPagesPreProcessors.
Definition:
class.ilCountPDFPagesPreProcessors.php:30
ilCountPDFPages
Class ilCountPDFPages.
Definition:
class.ilCountPDFPages.php:32
ilCountPDFPagesPreProcessors\$page_counter
ilCountPDFPages $page_counter
Definition:
class.ilCountPDFPagesPreProcessors.php:33
ILIAS\Filesystem\Stream\FileStream
Interface FileStream.
Definition:
FileStream.php:33
PreProcessor
Modules
File
classes
PreProcessors
class.ilCountPDFPagesPreProcessors.php
Generated on Fri Apr 4 2025 22:01:47 for ILIAS by
1.8.13 (using
Doxyfile
)