Module: ActionView::Helpers

Defined in:
lib/fat_free_crm/gem_ext/rails/text_helper.rb,
lib/plugins/country_select/lib/country_select.rb

Overview

:nodoc:

Defined Under Namespace

Modules: FormOptionsHelper, TextHelper Classes: FormBuilder, InstanceTag

Instance Method Summary collapse

Instance Method Details

#country_name(code) ⇒ Object



525
526
527
528
# File 'lib/plugins/country_select/lib/country_select.rb', line 525

def country_name(code)
  return "" if code.blank?
  return COUNTRIES_HASH[code.to_sym] || code
end