1 | <?php |
||
15 | class ObjectStorageMapper implements MapperInterface |
||
16 | { |
||
17 | /** |
||
18 | * Check if the current mapper can handle the given type. |
||
19 | * |
||
20 | * @param string $type |
||
21 | * |
||
22 | * @return bool |
||
23 | */ |
||
24 | public function canHandleType($type) |
||
28 | |||
29 | /** |
||
30 | * Get the TCA configuration for the current type. |
||
31 | * |
||
32 | * @param string $fieldName |
||
33 | * @param bool $overWriteLabel |
||
34 | * |
||
35 | * @return array |
||
36 | */ |
||
37 | public function getTcaConfiguration($fieldName, $overWriteLabel = false) |
||
50 | |||
51 | /** |
||
52 | * Get the database definition for the current mapper. |
||
53 | * |
||
54 | * @return string |
||
55 | */ |
||
56 | public function getDatabaseDefinition() |
||
60 | } |
||
61 |