Sha256: 93c2ff82faffb4c7c8d0a948c8c72483648ba4e770367134ac311af1618c6d9e
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
module Refinery module AdminLocales class Engine < Rails::Engine include Refinery::Engine isolate_namespace Refinery::AdminLocales engine_name :refinery_admin_locales initializer "register refinerycms_admin_locales plugin" do Refinery::Plugin.register do |plugin| plugin.name = "admin_locales" plugin.pathname = root plugin.url = proc { Refinery::Core::Engine.routes.url_helpers.admin_locales_admin_admin_locales_path } plugin.menu_match = /refinery\/admin_locales/ end end config.after_initialize do Refinery.register_engine(Refinery::AdminLocales) ::Refinery::AdminController.class_eval do def find_or_set_locale_with_default if current_refinery_user && current_refinery_user.locale ::Refinery::I18n.current_locale = current_refinery_user.locale ::I18n.locale = ::Refinery::I18n.current_locale else find_or_set_locale_without_default end end alias_method_chain :find_or_set_locale, :default end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
refinerycms-admin-locales-2.0.0 | lib/refinery/admin_locales/engine.rb |
refinerycms-admin-locales-2.1.0.dev | lib/refinery/admin_locales/engine.rb |