Files
fetsite/app/helpers/application_helper.rb
Andreas Stephanides 3d11400d5e GitHub Account angelegt
2013-02-12 02:05:12 +01:00

11 lines
312 B
Ruby

module ApplicationHelper
def current_url(overwrite={})
url_for :only_path => true, :params => params.merge(overwrite).except(:controller,:action)
end
def switch_locale_url(target_locale)
current_url({:locale=>target_locale}) .sub "/"+I18n.locale.to_s+"/", "/"+target_locale.to_s+"/"
end
end