1 | <?php |
||
34 | class UrlRewriteRemoveProcessor extends AbstractRemoveProcessor |
||
|
|||
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() |
||
55 | |||
56 | /** |
||
57 | * Implements the CRUD functionality the processor is responsible for, |
||
58 | * can be one of CREATE, READ, UPDATE or DELETE a entity. |
||
59 | * |
||
60 | * @param array $row The data to handle |
||
61 | * @param string|null $name The name of the prepared statement to execute |
||
62 | * |
||
63 | * @return void |
||
64 | */ |
||
65 | public function execute($row, $name = null) |
||
69 | } |
||
70 |