image_thumb

Triggered after an image thumbnail has been created. The order in which multiple plugins process an image is defined by the order in which plugins are sorted in the store’s backend.

Shop-Script

Input (passed by reference)

$image waImage Image handling class instance.
… your plugin code …

Output

Shop-Script

Plugin code example

PHP

public function imageThumb($image)
{
    waLog::dump($image, 'shop/plugins/' . $this->id . '/image-thumb.log');
}