Triggered after a new product record has been imported from a CSV file.
The event handler should accept three parameters - the array of imported fields, the product identifier
and the array of column values loaded from the CSV file.
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onAfterCsvProductCreated', $this, 'csv_product_created');
}
public function csv_product_created($fields, $id, $csv_row)
{
// Do something
}