products_helper.rb 213 B

1234567891011
  1. module ProductsHelper
  2. def image(product, options={})
  3. if product.img_product?
  4. image_tag product.img_product, options
  5. else
  6. image_tag "/images/original/missing.png", options
  7. end
  8. end
  9. end