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
ARInformation.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\MainMenu\Storage\Information\Repository
;
4
5
use
ActiveRecord
;
6
12
class
ARInformation
extends
ActiveRecord
13
{
14
18
public
function
getConnectorContainerName
() : string
19
{
20
return
'il_resource_info'
;
21
}
22
23
33
protected
$internal
;
41
protected
$identification
;
49
protected
$title
;
57
protected
$suffix
;
65
protected
$mime_type
;
73
protected
$size
;
74
75
79
public
function
getInternal
() : string
80
{
81
return
$this->internal
;
82
}
83
84
90
public
function
setInternal
(
string
$internal
) :
ARInformation
91
{
92
$this->
internal
=
$internal
;
93
94
return
$this;
95
}
96
97
101
public
function
getIdentification
() : string
102
{
103
return
$this->identification
;
104
}
105
106
112
public
function
setIdentification
(
string
$identification
) :
ARInformation
113
{
114
$this->identification =
$identification
;
115
116
return
$this;
117
}
118
119
123
public
function
getTitle
() : string
124
{
125
return
$this->title
;
126
}
127
128
134
public
function
setTitle
(
string
$title
) :
ARInformation
135
{
136
$this->title =
$title
;
137
138
return
$this;
139
}
140
141
145
public
function
getSuffix
() : string
146
{
147
return
$this->suffix
;
148
}
149
150
156
public
function
setSuffix
(
string
$suffix
) :
ARInformation
157
{
158
$this->suffix =
$suffix
;
159
160
return
$this;
161
}
162
163
167
public
function
getMimeType
() : string
168
{
169
return
$this->mime_type
;
170
}
171
172
178
public
function
setMimeType
(
string
$mime_type
) :
ARInformation
179
{
180
$this->mime_type =
$mime_type
;
181
182
return
$this;
183
}
184
185
189
public
function
getSize
() : int
190
{
191
return
(
int
)
$this->size
;
192
}
193
194
200
public
function
setSize
(
int
$size
) :
ARInformation
201
{
202
$this->size =
$size
;
203
204
return
$this;
205
}
206
}
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\getMimeType
getMimeType()
Definition:
ARInformation.php:167
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\getInternal
getInternal()
Definition:
ARInformation.php:79
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\getSize
getSize()
Definition:
ARInformation.php:189
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\setSuffix
setSuffix(string $suffix)
Definition:
ARInformation.php:156
ILIAS\MainMenu\Storage\Information\Repository
Definition:
ARInformation.php:3
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\setSize
setSize(int $size)
Definition:
ARInformation.php:200
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\$title
$title
Definition:
ARInformation.php:49
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\getConnectorContainerName
getConnectorContainerName()
Definition:
ARInformation.php:18
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\setInternal
setInternal(string $internal)
Definition:
ARInformation.php:90
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\getTitle
getTitle()
Definition:
ARInformation.php:123
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\setIdentification
setIdentification(string $identification)
Definition:
ARInformation.php:112
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\$size
$size
Definition:
ARInformation.php:73
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\setMimeType
setMimeType(string $mime_type)
Definition:
ARInformation.php:178
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\$mime_type
$mime_type
Definition:
ARInformation.php:65
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\$suffix
$suffix
Definition:
ARInformation.php:57
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\setTitle
setTitle(string $title)
Definition:
ARInformation.php:134
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\$identification
$identification
Definition:
ARInformation.php:41
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\$internal
$internal
Definition:
ARInformation.php:33
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\getSuffix
getSuffix()
Definition:
ARInformation.php:145
ILIAS\MainMenu\Storage\Information\Repository\ARInformation\getIdentification
getIdentification()
Definition:
ARInformation.php:101
ActiveRecord
ILIAS\MainMenu\Storage\Information\Repository\ARInformation
Class ARInformation.
Definition:
ARInformation.php:12
Services
MainMenu
classes
Storage
Information
Repository
ARInformation.php
Generated on Sat Apr 5 2025 20:01:25 for ILIAS by
1.8.13 (using
Doxyfile
)