Class: Spree::Store
- Inherits:
-
Base
- Object
- ActiveRecord::Base
- Base
- Spree::Store
show all
- Defined in:
- app/models/spree/store.rb
Overview
Records store specific configuration such as store name and URL.
‘Spree::Store` provides the foundational ActiveRecord model for recording information specific to your store such as its name, URL, and tax location. This model will provide the foundation upon which [support for multiple stores](github.com/solidusio/solidus/issues/112) hosted by a single Solidus implementation can be built.
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
display_includes
#generate_permalink, #save_permalink
Class Method Details
.default ⇒ Object
46
47
48
|
# File 'app/models/spree/store.rb', line 46
def self.default
where(default: true).first || new
end
|
Instance Method Details
#available_locales ⇒ Object
28
29
30
31
32
33
34
35
|
# File 'app/models/spree/store.rb', line 28
def available_locales
locales = super()
if locales
super().split(",").map(&:to_sym)
else
Spree.i18n_available_locales
end
end
|
#available_locales=(locales) ⇒ Object
37
38
39
40
41
42
43
44
|
# File 'app/models/spree/store.rb', line 37
def available_locales=(locales)
locales = locales.reject(&:blank?)
if locales.empty?
super(nil)
else
super(locales.map(&:to_s).join(","))
end
end
|
#default_cart_tax_location ⇒ Object
50
51
52
53
|
# File 'app/models/spree/store.rb', line 50
def default_cart_tax_location
@default_cart_tax_location ||=
Spree::Tax::TaxLocation.new(country: Spree::Country.find_by(iso: cart_tax_country_iso))
end
|