ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BaseTypeHandler.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
30 final class BaseTypeHandler implements TypeHandler
31 {
35  public function matchesForType(): string
36  {
37  return "";
38  }
39 
43  public function enrichItem(isItem $item): isItem
44  {
45  return $item;
46  }
47 
51  public function getAdditionalFieldsForSubForm(IdentificationInterface $identification): array
52  {
53  return [];
54  }
55 
59  public function saveFormFields(IdentificationInterface $identification, array $data): bool
60  {
61  return true;
62  }
63 }
saveFormFields(IdentificationInterface $identification, array $data)
getAdditionalFieldsForSubForm(IdentificationInterface $identification)