Sha256: 9c45512e8708f74b56c55ba0b3db6af3e8e9e0146e4d33011e4ca0e871751805
Contents?: true
Size: 998 Bytes
Versions: 4
Compression:
Stored size: 998 Bytes
Contents
module Enjoy::Localizeable extend ActiveSupport::Concern included do before_filter do I18n.locale = params[:locale] || I18n.default_locale Settings.ns_default = "main_#{I18n.locale}" Settings.ns_fallback = "main" end end private def default_url_options(options={}) {locale: params[:locale]} end def nav_get_menu_items(type) pages = Enjoy::Menu.find(type.to_s).pages.enabled if Enjoy.mongoid? pages = pages.where(:"name.#{I18n.locale}".exists => true) elsif Enjoy.active_record? pages = pages.where(["EXIST(name_translations, ?) = TRUE AND name_translations -> ? != ''", I18n.locale, I18n.locale]) end pages.sorted.to_a end def nav_get_url(item) (params[:locale].blank? ? "" : "/#{params[:locale]}") + (item.redirect.blank? ? item.fullpath : item.redirect) end def find_seo_extra(path) page_class.enabled.where(fullpath: path.gsub(/(\/ru|\/en)/, "")).first end def page_class Enjoy::Page end end
Version data entries
4 entries across 4 versions & 1 rubygems