ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TypeSpecificDataImplementation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
28  private ?int $field_id;
29 
30  public function __construct(?int $field_id = null)
31  {
32  $this->field_id = $field_id;
33  }
34 
35  abstract public function isTypeSupported(Type $type): bool;
36 
37  final public function fieldID(): ?int
38  {
39  return $this->field_id;
40  }
41 
42  public function isPersisted(): bool
43  {
44  return !is_null($this->fieldID());
45  }
46 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null