Class: Spree::State

Inherits:
Base
  • Object
show all
Defined in:
app/models/spree/state.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

display_includes

Methods included from Core::Permalinks

#generate_permalink, #save_permalink

Class Method Details

.states_group_by_country_idObject

table of { country.id => [ state.id , state.name ] }, arrays sorted by name blank is added elsewhere, if needed



22
23
24
25
26
27
28
# File 'app/models/spree/state.rb', line 22

def self.states_group_by_country_id
  state_info = Hash.new { |hash, key| hash[key] = [] }
  order(:name).each { |state|
    state_info[state.country_id.to_s].push [state.id, state.name]
  }
  state_info
end

Instance Method Details

#<=>(other) ⇒ Object



30
31
32
# File 'app/models/spree/state.rb', line 30

def <=>(other)
  name <=> other.name
end

#state_with_countryObject



38
39
40
# File 'app/models/spree/state.rb', line 38

def state_with_country
  "#{name} (#{country})"
end

#to_sObject



34
35
36
# File 'app/models/spree/state.rb', line 34

def to_s
  name
end