Module: Pageflow::NavigationBarHelper

Defined in:
app/helpers/pageflow/navigation_bar_helper.rb

Instance Method Summary collapse

Instance Method Details



3
4
5
6
7
8
9
# File 'app/helpers/pageflow/navigation_bar_helper.rb', line 3

def navigation_bar_css_class(entry, options = {})
  [
    options[:class],
    entry.home_button.enabled? ? 'with_home_button' : nil,
    entry.overview_button.enabled? ? 'with_overview_button' : nil
  ].compact.join(' ')
end