ILIAS
trunk Revision v11.0_alpha-1723-g8e69f309bab
◀ 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
FileObjectProperties.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\Object\Properties\ObjectTypeSpecificProperties\AbstractObjectTypeSpecificProperties
;
22
use
ILIAS\Object\Properties\ObjectTypeSpecificProperties\ilObjectTypeSpecificPropertyProviders
;
23
24
class
FileObjectProperties
extends
AbstractObjectTypeSpecificProperties
25
{
26
protected
?
FileObjectPropertyProviders
$providers
=
null
;
27
28
public
function
getObjectTypeString
(): string
29
{
30
return
ilObjFile::OBJECT_TYPE
;
31
}
32
33
public
function
getProviders
():
ilObjectTypeSpecificPropertyProviders
34
{
35
if
($this->providers ===
null
) {
36
$this->providers =
new
FileObjectPropertyProviders
();
37
}
38
return
$this->providers
;
39
}
40
41
public
function
preload
(array $object_ids): void
42
{
43
return
;
44
}
45
}
ilObjectTypeSpecificPropertyProviders
ILIAS\Object\Properties\ObjectTypeSpecificProperties\AbstractObjectTypeSpecificProperties
Definition:
AbstractObjectTypeSpecificProperties.php:23
ilObjFile\OBJECT_TYPE
const OBJECT_TYPE
Definition:
class.ilObjFile.php:43
FileObjectProperties\getObjectTypeString
getObjectTypeString()
This function MUST return the object type string as defined in ObjectDefinitions. ...
Definition:
FileObjectProperties.php:28
FileObjectProperties\getProviders
getProviders()
Definition:
FileObjectProperties.php:33
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:142
ILIAS\Object\Properties\ObjectTypeSpecificProperties\ilObjectTypeSpecificPropertyProviders
Definition:
ilObjectTypeSpecificPropertyProviders.php:27
FileObjectProperties\preload
preload(array $object_ids)
To avoid too many roundtrips to the persistence layer on lists of objects, please implement an effici...
Definition:
FileObjectProperties.php:41
FileObjectPropertyProviders
Definition:
FileObjectPropertyProviders.php:34
FileObjectProperties
Definition:
FileObjectProperties.php:24
AbstractObjectTypeSpecificProperties
FileObjectProperties\$providers
FileObjectPropertyProviders $providers
Definition:
FileObjectProperties.php:26
components
ILIAS
File
classes
ObjectProperties
FileObjectProperties.php
Generated on Sun Apr 6 2025 23:03:14 for ILIAS by
1.8.13 (using
Doxyfile
)