Module: Refinery::SiteBarHelper

Defined in:
app/helpers/refinery/site_bar_helper.rb

Instance Method Summary collapse

Instance Method Details

Generates the link to determine where the site bar switch button returns to.



5
6
7
8
9
10
11
# File 'app/helpers/refinery/site_bar_helper.rb', line 5

def site_bar_switch_link
  link_to_if(admin?, t('.switch_to_your_website', site_bar_translate_locale_args),
                     refinery.root_path(site_bar_translate_locale_args)) do
    link_to t('.switch_to_your_website_editor', site_bar_translate_locale_args),
            refinery.admin_root_path
  end
end

#site_bar_translate_locale_argsObject



13
14
15
# File 'app/helpers/refinery/site_bar_helper.rb', line 13

def site_bar_translate_locale_args
  { :locale => Refinery::I18n.current_locale }
end