Module: Voluntary::LanguageHelper
- Defined in:
- app/helpers/voluntary/language_helper.rb
Instance Method Summary collapse
Instance Method Details
#all_language_options ⇒ Object
13 14 15 |
# File 'app/helpers/voluntary/language_helper.rb', line 13 def User.languages.sort_by { |o| o[0] } end |
#available_language_options ⇒ Object
3 4 5 6 7 8 9 10 11 |
# File 'app/helpers/voluntary/language_helper.rb', line 3 def = [] AVAILABLE_LANGUAGES.each do |locale, language| << [language, locale] end .sort_by { |o| o[0] } end |