Sha256: 02d6b25d2ad8767eb5734b6f5c8067209cb2301c423b08f6c4875a3cde35954e

Contents?: true

Size: 1.55 KB

Versions: 13

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.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

13 entries across 13 versions & 2 rubygems

Version Path
tribeca_cms-0.1.1 lib/locomotive/action_controller/locale_helpers.rb
tribeca_cms-2.0.0.rc12 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc12 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc11 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc10 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc9 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc8 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc7 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc6 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc5 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc4 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc2 lib/locomotive/action_controller/locale_helpers.rb
locomotive_cms-2.0.0.rc1 lib/locomotive/action_controller/locale_helpers.rb