1 | <?php |
||
16 | class FileReferenceObjectStorageMapper implements MapperInterface |
||
17 | { |
||
18 | /** |
||
19 | * Check if the current mapper can handle the given type. |
||
20 | * |
||
21 | * @param string $type |
||
22 | * |
||
23 | * @return bool |
||
24 | */ |
||
25 | public function canHandleType($type) |
||
31 | |||
32 | /** |
||
33 | * Get the TCA configuration for the current type. |
||
34 | * |
||
35 | * @param string $fieldName |
||
36 | * @param bool $overWriteLabel |
||
37 | * |
||
38 | * @return array |
||
39 | */ |
||
40 | public function getTcaConfiguration($fieldName, $overWriteLabel = false) |
||
48 | |||
49 | /** |
||
50 | * Get the database definition for the current mapper. |
||
51 | * |
||
52 | * @return string |
||
53 | */ |
||
54 | public function getDatabaseDefinition() |
||
58 | } |
||
59 |