product_images_delete

Triggered before deletion of a product image.

Shop-Script

Input (passed by reference)

$image array Deleted image data from 'shop_product_images' table.
… your plugin code …

Output

Shop-Script

Plugin code example

PHP

public function productImagesDelete($image)
{
    waLog::dump($image, 'shop/plugins/' . $this->id . '/product-images-delete.log');
}