Sha256: 31abb443be27dffb0e36d41a3f5e8d3cf353ca8c3856d574eab8701eaef80aae
Contents?: true
Size: 1.24 KB
Versions: 4
Compression:
Stored size: 1.24 KB
Contents
module Locomotive module Public class PagesController < ApplicationController include Locomotive::Routing::SiteDispatcher include Locomotive::Render include Locomotive::ActionController::LocaleHelpers before_filter :require_site before_filter :authenticate_locomotive_account!, only: [:show_toolbar] before_filter :validate_site_membership, only: [:show_toolbar] before_filter :set_toolbar_locale, only: :show_toolbar before_filter :set_locale, only: [:show, :edit] helper Locomotive::BaseHelper def show_toolbar render layout: false end def show render_locomotive_page end def edit @editing = true render_locomotive_page end protected def set_toolbar_locale ::I18n.locale = current_locomotive_account.locale rescue Locomotive.config.default_locale ::Mongoid::Fields::I18n.locale = params[:locale] || current_site.default_locale end def set_locale ::Mongoid::Fields::I18n.locale = request.env['locomotive.locale'] || params[:locale] || current_site.default_locale ::I18n.locale = ::Mongoid::Fields::I18n.locale self.setup_i18n_fallbacks end end end end
Version data entries
4 entries across 4 versions & 1 rubygems