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
FileInformation.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\ResourceStorage\Information
;
22
23
use
DateTimeImmutable
;
24
29
class
FileInformation
implements
Information
30
{
31
protected
string
$title
=
''
;
32
protected
string
$suffix
=
''
;
33
protected
string
$mime_type
=
''
;
34
protected
int
$size
= 0;
35
protected
?\DateTimeImmutable
$creation_date
=
null
;
36
37
public
function
getTitle
(): string
38
{
39
return
$this->title
;
40
}
41
42
public
function
setTitle
(
string
$title): self
43
{
44
$this->title =
$title
;
45
46
return
$this;
47
}
48
49
public
function
getSuffix
(): string
50
{
51
return
$this->suffix
;
52
}
53
54
public
function
setSuffix
(
string
$suffix): self
55
{
56
$this->suffix =
$suffix
;
57
58
return
$this;
59
}
60
61
public
function
getMimeType
(): string
62
{
63
return
$this->mime_type
;
64
}
65
66
public
function
setMimeType
(
string
$mime_type): self
67
{
68
$this->mime_type =
$mime_type
;
69
70
return
$this;
71
}
72
73
public
function
getSize
():
int
74
{
75
return
$this->size
;
76
}
77
78
public
function
setSize
(
int
$size): self
79
{
80
$this->size =
$size
;
81
82
return
$this;
83
}
84
85
public
function
getCreationDate
():
DateTimeImmutable
86
{
87
return
$this->creation_date ??
new
DateTimeImmutable
();
88
}
89
90
public
function
setCreationDate
(
DateTimeImmutable
$creation_date): self
91
{
92
$this->creation_date =
$creation_date
;
93
94
return
$this;
95
}
96
}
ILIAS\ResourceStorage\Information\FileInformation\$suffix
string $suffix
Definition:
FileInformation.php:32
DateTimeImmutable
ILIAS\ResourceStorage\Information\FileInformation\getTitle
getTitle()
Definition:
FileInformation.php:37
ILIAS\ResourceStorage\Information\Information
Class Information.
Definition:
Information.php:27
ILIAS\ResourceStorage\Information\FileInformation\$title
string $title
Definition:
FileInformation.php:31
ILIAS\ResourceStorage\Information\FileInformation\setSuffix
setSuffix(string $suffix)
Definition:
FileInformation.php:54
ILIAS\ResourceStorage\Information\FileInformation\setTitle
setTitle(string $title)
Definition:
FileInformation.php:42
ILIAS\ResourceStorage\Information\FileInformation\getSuffix
getSuffix()
Definition:
FileInformation.php:49
ILIAS\ResourceStorage\Information\FileInformation\setSize
setSize(int $size)
Definition:
FileInformation.php:78
ILIAS\ResourceStorage\Information\FileInformation\setMimeType
setMimeType(string $mime_type)
Definition:
FileInformation.php:66
ILIAS\ResourceStorage\Information\FileInformation\getSize
getSize()
Definition:
FileInformation.php:73
ILIAS\ResourceStorage\Information\FileInformation\getCreationDate
getCreationDate()
Definition:
FileInformation.php:85
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\ResourceStorage\Information\FileInformation\getMimeType
getMimeType()
Definition:
FileInformation.php:61
ILIAS\ResourceStorage\Information
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\ResourceStorage\Information\FileInformation
Class Information.
Definition:
FileInformation.php:29
ILIAS\ResourceStorage\Information\FileInformation\$mime_type
string $mime_type
Definition:
FileInformation.php:33
ILIAS\ResourceStorage\Information\FileInformation\setCreationDate
setCreationDate(DateTimeImmutable $creation_date)
Definition:
FileInformation.php:90
ILIAS\ResourceStorage\Information\FileInformation\$creation_date
DateTimeImmutable $creation_date
Definition:
FileInformation.php:35
ILIAS\ResourceStorage\Information\FileInformation\$size
int $size
Definition:
FileInformation.php:34
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
ResourceStorage
src
Information
FileInformation.php
Generated on Wed Apr 2 2025 23:03:29 for ILIAS by
1.8.13 (using
Doxyfile
)