|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* TechDivision\Import\Loaders\HeaderMappingLoader |
|
5
|
|
|
* |
|
6
|
|
|
* NOTICE OF LICENSE |
|
7
|
|
|
* |
|
8
|
|
|
* This source file is subject to the Open Software License (OSL 3.0) |
|
9
|
|
|
* that is available through the world-wide-web at this URL: |
|
10
|
|
|
* http://opensource.org/licenses/osl-3.0.php |
|
11
|
|
|
* |
|
12
|
|
|
* PHP version 5 |
|
13
|
|
|
* |
|
14
|
|
|
* @author Tim Wagner <[email protected]> |
|
15
|
|
|
* @copyright 2020 TechDivision GmbH <[email protected]> |
|
16
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
17
|
|
|
* @link https://github.com/techdivision/import |
|
18
|
|
|
* @link http://www.techdivision.com |
|
19
|
|
|
*/ |
|
20
|
|
|
|
|
21
|
|
|
namespace TechDivision\Import\Loaders; |
|
22
|
|
|
|
|
23
|
|
|
use TechDivision\Import\Configuration\ConfigurationInterface; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* Loader that loads the header mappings from the configuration |
|
27
|
|
|
* |
|
28
|
|
|
* @author Tim Wagner <[email protected]> |
|
29
|
|
|
* @copyright 2020 TechDivision GmbH <[email protected]> |
|
30
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
31
|
|
|
* @link https://github.com/techdivision/import |
|
32
|
|
|
* @link http://www.techdivision.com |
|
33
|
|
|
*/ |
|
34
|
|
|
class HeaderMappingLoader implements LoaderInterface |
|
35
|
|
|
{ |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* The array with the available header mappings. |
|
39
|
|
|
* |
|
40
|
|
|
* @var array |
|
41
|
|
|
*/ |
|
42
|
|
|
private $headerMappings; |
|
43
|
|
|
|
|
44
|
|
|
/** |
|
45
|
|
|
* Initializes the loader with the configuration instance. |
|
46
|
|
|
* |
|
47
|
|
|
* @param array \TechDivision\Import\Configuration\ConfigurationInterface $configuration The array with the values |
|
48
|
|
|
*/ |
|
49
|
|
|
public function __construct(ConfigurationInterface $configuration) |
|
50
|
|
|
{ |
|
51
|
|
|
$this->headerMappings = $configuration->getHeaderMappings(); |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* Load's and return's the values. |
|
56
|
|
|
* |
|
57
|
|
|
* @param string $entityTypeCode The entity type code to return the header mappings for |
|
58
|
|
|
* |
|
59
|
|
|
* @return array The array with the values |
|
60
|
|
|
*/ |
|
61
|
|
|
public function load(string $entityTypeCode = null) : array |
|
62
|
|
|
{ |
|
63
|
|
|
return isset($this->headerMappings[$entityTypeCode]) ? $this->headerMappings[$entityTypeCode] : array(); |
|
64
|
|
|
} |
|
65
|
|
|
} |
|
66
|
|
|
|