ILIAS
trunk Revision v12.0_alpha-1338-g8f7e531aa3c
◀ ilDoc Overview
CategoryReferenceObjectProperties.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
ILIAS\ILIASObject\Properties\ObjectTypeSpecificProperties\AbstractObjectTypeSpecificProperties
;
22
use
ILIAS\ILIASObject\Properties\ObjectTypeSpecificProperties\ObjectTypeSpecificPropertyProviders
;
23
24
class
CategoryReferenceObjectProperties
extends
AbstractObjectTypeSpecificProperties
25
{
26
protected
?
CategoryReferenceObjectPropertiesProviders
$providers
=
null
;
27
28
public
function
getObjectTypeString
(): string
29
{
30
return
'catr'
;
31
}
32
33
public
function
getProviders
():
ObjectTypeSpecificPropertyProviders
34
{
35
if
($this->providers ===
null
) {
36
$this->providers =
new
CategoryReferenceObjectPropertiesProviders
();
37
}
38
return
$this->providers
;
39
}
40
41
public
function
preload
(array $object_ids): void
42
{
43
return
;
44
}
45
}
CategoryReferenceObjectPropertiesProviders
Definition:
CategoryReferenceObjectPropertiesProviders.php:29
CategoryReferenceObjectProperties
Definition:
CategoryReferenceObjectProperties.php:25
CategoryReferenceObjectProperties\preload
preload(array $object_ids)
@description To avoid too many roundtrips to the persistence layer on lists of objects,...
Definition:
CategoryReferenceObjectProperties.php:41
CategoryReferenceObjectProperties\getProviders
getProviders()
Definition:
CategoryReferenceObjectProperties.php:33
CategoryReferenceObjectProperties\getObjectTypeString
getObjectTypeString()
@description This function MUST return the object type string as defined in ObjectDefinitions.
Definition:
CategoryReferenceObjectProperties.php:28
CategoryReferenceObjectProperties\$providers
CategoryReferenceObjectPropertiesProviders $providers
Definition:
CategoryReferenceObjectProperties.php:26
ILIAS\ILIASObject\Properties\ObjectTypeSpecificProperties\AbstractObjectTypeSpecificProperties
Definition:
AbstractObjectTypeSpecificProperties.php:24
ILIAS\ILIASObject\Properties\ObjectTypeSpecificProperties\ObjectTypeSpecificPropertyProviders
Definition:
ObjectTypeSpecificPropertyProviders.php:28
components
ILIAS
CategoryReference
ObjectProperties
CategoryReferenceObjectProperties.php
Generated on Wed Apr 29 2026 23:03:41 for ILIAS by
1.9.4 (using
Doxyfile
)