Class: Forms::Fields::StatesDropdown

Inherits:
Field
  • Object
show all
Defined in:
app/models/forms/fields/states_dropdown.rb

Constant Summary collapse

STATES =
Forms::Plugin.load_yaml("states.yml").tap { |hash| hash.each { |k, v| hash[k] = v.invert } }

Instance Method Summary collapse

Methods inherited from Field

cast, partial, #render, #required?

Instance Method Details

#optionsObject



9
10
11
# File 'app/models/forms/fields/states_dropdown.rb', line 9

def options
  STATES[country]
end