1 | <?php |
||
32 | class MoveFilesSubject extends AbstractSubject |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * Return's the header mappings for the actual entity. |
||
37 | * |
||
38 | * @return array The header mappings |
||
39 | */ |
||
40 | 1 | public function getHeaderMappings() |
|
44 | |||
45 | /** |
||
46 | * Return's the default callback frontend input mappings for the user defined attributes. |
||
47 | * |
||
48 | * @return array The default frontend input callback mappings |
||
49 | */ |
||
50 | 1 | public function getDefaultFrontendInputCallbackMappings() |
|
54 | |||
55 | /** |
||
56 | * Imports the content of the file with the passed filename. |
||
57 | * |
||
58 | * @param string $serial The serial of the actual import |
||
59 | * @param string $filename The filename to process |
||
60 | * |
||
61 | * @return void |
||
62 | * @throws \Exception Is thrown, if the import can't be processed |
||
63 | */ |
||
64 | 3 | public function import($serial, $filename) |
|
79 | } |
||
80 |