Sha256: 9dc5425c8e943b9c97a516dc9cac045bba642bac45ff83095b24decc29972bda

Contents?: true

Size: 1.55 KB

Versions: 12

Compression:

Stored size: 1.55 KB

Contents

module Locomotive
  module ActionController
    module LocaleHelpers

      extend ActiveSupport::Concern

      included do
        helper_method :current_content_locale, :localized?
      end

      def current_content_locale
        ::Mongoid::Fields::I18n.locale
      end

      def set_current_content_locale
        if params[:content_locale].present?
          session[:content_locale] = params[:content_locale]
        end

        unless current_site.locales.include?(session[:content_locale])
          session[:content_locale] = current_site.default_locale
        end

        ::Mongoid::Fields::I18n.locale = session[:content_locale]

        self.setup_i18n_fallbacks

        # logger.debug "*** content locale = #{session[:content_locale]} / #{::Mongoid::Fields::I18n.locale}"
      end

      def set_back_office_locale
        ::I18n.locale = current_locomotive_account.locale rescue Locomotive.config.default_locale
      end

      def back_to_default_site_locale
        session[:content_locale] = ::Mongoid::Fields::I18n.locale = current_site.default_locale
      end

      def setup_i18n_fallbacks
        (current_site.try(:locales) || []).each do |locale|
          ::Mongoid::Fields::I18n.fallbacks_for(locale, current_site.locale_fallbacks(locale))
        end
      end

      def localized?
        !!@locomotive_localized
      end

      module ClassMethods

        def localized(enable_it = true)
          before_filter do |c|
            c.instance_variable_set(:@locomotive_localized, enable_it)
          end
        end

      end

    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
locomotive_cms-2.2.2 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.2.1 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.2.0 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.1.4 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.1.3 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.1.2 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.1.1 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.1.0 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.3 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.2 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.1 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0 lib/locomotive/action_controller/locale_helpers.rb