ILIAS
trunk Revision v11.0_alpha-1753-gb21ca8c4367
◀ 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
ResourceInformation.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Repository\IRSS
;
22
23
class
ResourceInformation
24
{
25
protected
string
$rid
;
26
protected
string
$src
;
27
protected
string
$mime_type
;
28
protected
int
$creation_timestamp
;
29
protected
int
$size
;
30
protected
string
$title
;
31
32
public
function
__construct
(
33
string
$rid,
34
string
$title,
35
int
$size,
36
int
$creation_timestamp,
37
string
$mime_type,
38
string
$src
39
) {
40
$this->rid =
$rid
;
41
$this->title =
$title
;
42
$this->size =
$size
;
43
$this->creation_timestamp =
$creation_timestamp
;
44
$this->mime_type =
$mime_type
;
45
$this->src =
$src
;
46
}
47
48
public
function
getRid
(): string
49
{
50
return
$this->rid
;
51
}
52
53
public
function
getTitle
(): string
54
{
55
return
$this->title
;
56
}
57
58
public
function
getSize
():
int
59
{
60
return
$this->size
;
61
}
62
63
public
function
getCreationTimestamp
():
int
64
{
65
return
$this->creation_timestamp
;
66
}
67
68
public
function
getMimeType
(): string
69
{
70
return
$this->mime_type
;
71
}
72
73
public
function
getSrc
(): string
74
{
75
return
$this->src
;
76
}
77
}
ILIAS\Repository\IRSS\ResourceInformation\$src
string $src
Definition:
ResourceInformation.php:26
ILIAS\Repository\IRSS\ResourceInformation
Definition:
ResourceInformation.php:23
ILIAS\Repository\IRSS\ResourceInformation\getSrc
getSrc()
Definition:
ResourceInformation.php:73
ILIAS\Repository\IRSS\ResourceInformation\$title
string $title
Definition:
ResourceInformation.php:30
ILIAS\Repository\IRSS\ResourceInformation\__construct
__construct(string $rid, string $title, int $size, int $creation_timestamp, string $mime_type, string $src)
Definition:
ResourceInformation.php:32
ILIAS\Repository\IRSS
Definition:
class.DataService.php:21
ILIAS\Repository\IRSS\ResourceInformation\getSize
getSize()
Definition:
ResourceInformation.php:58
ILIAS\Repository\IRSS\ResourceInformation\getTitle
getTitle()
Definition:
ResourceInformation.php:53
ILIAS\Repository\IRSS\ResourceInformation\getRid
getRid()
Definition:
ResourceInformation.php:48
ILIAS\Repository\IRSS\ResourceInformation\$rid
string $rid
Definition:
ResourceInformation.php:25
ILIAS\Repository\IRSS\ResourceInformation\getCreationTimestamp
getCreationTimestamp()
Definition:
ResourceInformation.php:63
ILIAS\Repository\IRSS\ResourceInformation\$mime_type
string $mime_type
Definition:
ResourceInformation.php:27
ILIAS\Repository\IRSS\ResourceInformation\$creation_timestamp
int $creation_timestamp
Definition:
ResourceInformation.php:28
ILIAS\Repository\IRSS\ResourceInformation\$size
int $size
Definition:
ResourceInformation.php:29
ILIAS\Repository\IRSS\ResourceInformation\getMimeType
getMimeType()
Definition:
ResourceInformation.php:68
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
components
ILIAS
Repository
Service
IRSS
ResourceInformation.php
Generated on Thu Apr 10 2025 23:03:50 for ILIAS by
1.8.13 (using
Doxyfile
)