Sha256: bf77dbca24c00e0f3930540dfc8f8e44906af3f49cee5627659577367591c375
Contents?: true
Size: 996 Bytes
Versions: 8
Compression:
Stored size: 996 Bytes
Contents
class ProductsController < Spree::BaseController HTTP_REFERER_REGEXP = /^https?:\/\/[^\/]+\/t\/([a-z0-9\-\/]+\/)$/ #prepend_before_filter :reject_unknown_object, :only => [:show] before_filter :load_data, :only => :show resource_controller helper :taxons actions :show, :index private def load_data load_object @variants = Variant.active.find_all_by_product_id(@product.id, :include => [:option_values, :images]) @product_properties = ProductProperty.find_all_by_product_id(@product.id, :include => [:property]) @selected_variant = @variants.detect { |v| v.available? } referer = request.env['HTTP_REFERER'] if referer && referer.match(HTTP_REFERER_REGEXP) @taxon = Taxon.find_by_permalink($1) end end def collection @searcher = Spree::Config.searcher_class.new(params) @products = @searcher.retrieve_products end def accurate_title @product ? @product.name : nil end end
Version data entries
8 entries across 8 versions & 1 rubygems