ILIAS  trunk Revision v11.0_alpha-1723-g8e69f309bab
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 
23 
25 {
27 
28  public function getObjectTypeString(): string
29  {
31  }
32 
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 }
const OBJECT_TYPE
getObjectTypeString()
This function MUST return the object type string as defined in ObjectDefinitions. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
preload(array $object_ids)
To avoid too many roundtrips to the persistence layer on lists of objects, please implement an effici...
FileObjectPropertyProviders $providers