This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 22:53:20 +01:00
|
|
|
module ApplicationHelper
|
2016-03-12 19:46:06 +01:00
|
|
|
def active_nav_class(path)
|
|
|
|
current_page?(path) ? 'active' : ''
|
|
|
|
end
|
2017-04-16 03:40:33 +02:00
|
|
|
|
|
|
|
def show_landing_strip?
|
|
|
|
!user_signed_in? && !single_user_mode?
|
|
|
|
end
|
2017-04-24 18:03:53 +02:00
|
|
|
|
|
|
|
def add_rtl_body_class(other_classes)
|
2017-04-24 22:39:15 +02:00
|
|
|
other_classes = "#{other_classes} rtl" if [:ar, :fa].include?(I18n.locale)
|
2017-04-24 18:03:53 +02:00
|
|
|
other_classes
|
|
|
|
end
|
2017-04-26 15:45:27 +02:00
|
|
|
|
|
|
|
def favicon_path
|
|
|
|
env_suffix = Rails.env.production? ? '' : '-dev'
|
|
|
|
asset_path "favicon#{env_suffix}.ico"
|
|
|
|
end
|
2017-04-27 15:17:55 +02:00
|
|
|
|
|
|
|
def title
|
|
|
|
Rails.env.production? ? site_title : "#{site_title} (Dev)"
|
|
|
|
end
|
2016-02-20 22:53:20 +01:00
|
|
|
end
|