2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
module ApplicationHelper
|
2016-03-12 18:46:06 +00:00
|
|
|
def active_nav_class(path)
|
|
|
|
current_page?(path) ? 'active' : ''
|
|
|
|
end
|
2017-04-16 02:40:33 +01:00
|
|
|
|
|
|
|
def show_landing_strip?
|
|
|
|
!user_signed_in? && !single_user_mode?
|
|
|
|
end
|
2017-04-24 17:03:53 +01:00
|
|
|
|
2017-05-15 23:41:09 +01:00
|
|
|
def open_registrations?
|
|
|
|
Setting.open_registrations
|
|
|
|
end
|
|
|
|
|
2017-04-24 17:03:53 +01:00
|
|
|
def add_rtl_body_class(other_classes)
|
2017-05-03 01:04:16 +01:00
|
|
|
other_classes = "#{other_classes} rtl" if [:ar, :fa, :he].include?(I18n.locale)
|
2017-04-24 17:03:53 +01:00
|
|
|
other_classes
|
|
|
|
end
|
2017-04-26 14:45:27 +01:00
|
|
|
|
|
|
|
def favicon_path
|
|
|
|
env_suffix = Rails.env.production? ? '' : '-dev'
|
2017-05-19 01:41:56 +01:00
|
|
|
"/favicon#{env_suffix}.ico"
|
2017-04-26 14:45:27 +01:00
|
|
|
end
|
2017-04-27 14:17:55 +01:00
|
|
|
|
|
|
|
def title
|
|
|
|
Rails.env.production? ? site_title : "#{site_title} (Dev)"
|
|
|
|
end
|
2017-05-03 01:04:16 +01:00
|
|
|
|
|
|
|
def fa_icon(icon)
|
|
|
|
content_tag(:i, nil, class: 'fa ' + icon.split(' ').map { |cl| "fa-#{cl}" }.join(' '))
|
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|