1 | <?php |
||
34 | class ProductMediaGalleryPersistProcessor extends AbstractPersistProcessor |
||
|
|||
35 | { |
||
36 | |||
37 | /** |
||
38 | * Return's the array with the SQL statements that has to be prepared. |
||
39 | * |
||
40 | * @return array The SQL statements to be prepared |
||
41 | * @see \TechDivision\Import\Actions\Processors\AbstractBaseProcessor::getStatements() |
||
42 | */ |
||
43 | protected function getStatements() |
||
54 | |||
55 | /** |
||
56 | * Persist's the passed row. |
||
57 | * |
||
58 | * @param array $row The row to persist |
||
59 | * @param string|null $name The name of the prepared statement that has to be executed |
||
60 | * |
||
61 | * @return string The last inserted ID |
||
62 | */ |
||
63 | public function execute($row, $name = null) |
||
68 | } |
||
69 |