Allows to override a product's extra option price.
The handler should return the new price, if applicable. Example:
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onGetProductExtraPrice', $this, 'get_product_extra_price');
}
public function get_product_extra_price($extra, $product)
{
return $extra->price * 1.10;
}