Sha256: 0a17163bd825cec4b88f68f50b6c721bed7e2bef9ff18e60d779eb0b4b6e7f8e

Contents?: true

Size: 293 Bytes

Versions: 2

Compression:

Stored size: 293 Bytes

Contents

class AllProductsPortlet < Cms::Portlet

  description "Displays all products."

  # Mark this as 'true' to allow the portlet's template to be editable via the CMS admin UI.
  enable_template_editor false
     
  def render
    @products = Spree::Product.order("created_at asc")
  end
    
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bcms_spree-0.0.2 app/portlets/all_products_portlet.rb
bcms_spree-0.0.1 app/portlets/all_products_portlet.rb