|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* TechDivision\Import\Product\Ee\Services\EeProductBunchProcessor |
|
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 2016 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-product-ee |
|
18
|
|
|
* @link http://www.techdivision.com |
|
19
|
|
|
*/ |
|
20
|
|
|
|
|
21
|
|
|
namespace TechDivision\Import\Product\Ee\Services; |
|
22
|
|
|
|
|
23
|
|
|
use TechDivision\Import\Product\Services\ProductBunchProcessor; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* A SLSB providing methods to load sequence product data using a PDO connection. |
|
27
|
|
|
* |
|
28
|
|
|
* @author Tim Wagner <[email protected]> |
|
29
|
|
|
* @copyright 2016 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-product-ee |
|
32
|
|
|
* @link http://www.techdivision.com |
|
33
|
|
|
*/ |
|
34
|
|
|
class EeProductBunchProcessor extends ProductBunchProcessor implements EeProductBunchProcessorInterface |
|
35
|
|
|
{ |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* The action for sequence product CRUD methods. |
|
39
|
|
|
* |
|
40
|
|
|
* @var \TechDivision\Import\Product\Ee\Actions\SequenceProductAction |
|
41
|
|
|
*/ |
|
42
|
|
|
protected $sequenceProductAction; |
|
43
|
|
|
|
|
44
|
|
|
/** |
|
45
|
|
|
* Set's the action with the sequence product CRUD methods. |
|
46
|
|
|
* |
|
47
|
|
|
* @param \TechDivision\Import\Product\Ee\Actions\SequenceProductAction $sequenceProductAction The action with the sequence product CRUD methods |
|
48
|
|
|
* |
|
49
|
|
|
* @return void |
|
50
|
|
|
*/ |
|
51
|
|
|
public function setSequenceProductAction($sequenceProductAction) |
|
52
|
|
|
{ |
|
53
|
|
|
$this->sequenceProductAction = $sequenceProductAction; |
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
/** |
|
57
|
|
|
* Return's the action with the sequence product CRUD methods. |
|
58
|
|
|
* |
|
59
|
|
|
* @return \TechDivision\Import\Product\Ee\Actions\SequenceProductAction The action instance |
|
60
|
|
|
*/ |
|
61
|
|
|
public function getSequenceProductAction() |
|
62
|
|
|
{ |
|
63
|
|
|
return $this->sequenceProductAction; |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
|
|
67
|
|
|
/** |
|
68
|
|
|
* Return's the next available product entity ID. |
|
69
|
|
|
* |
|
70
|
|
|
* @return integer The next available product entity ID |
|
71
|
|
|
*/ |
|
72
|
|
|
public function nextIdentifier() |
|
73
|
|
|
{ |
|
74
|
|
|
return $this->getSequenceProductAction()->nextIdentifier(); |
|
75
|
|
|
} |
|
76
|
|
|
} |
|
77
|
|
|
|