Class: PagesCore::AdminController

Inherits:
ApplicationController show all
Includes:
PagesCore::Admin::PersistentParams
Defined in:
app/controllers/pages_core/admin_controller.rb

Direct Known Subclasses

Admin::AdminController

Instance Attribute Summary

Attributes included from Authentication

#current_user

Class Method Summary collapse

Instance Method Summary collapse

Methods included from StaticCacheController

#disable_static_cache!, #static_cached?

Methods included from PoliciesHelper

#policy, #verify_policy, #verify_policy_with_proc

Methods included from ProcessTitler

inc_number_of_requests, original_title

Methods included from LocalesHelper

#content_locale

Methods included from ErrorRenderer

#render_error

Methods included from Authentication

#authenticate!, #deauthenticate!, #logged_in?

Class Method Details

.underscoreObject

Get name of class with in lowercase, with underscores.



20
21
22
# File 'app/controllers/pages_core/admin_controller.rb', line 20

def underscore
  ActiveSupport::Inflector.underscore(to_s).split("/").last
end

Instance Method Details

#redirectObject



25
26
27
28
29
30
31
# File 'app/controllers/pages_core/admin_controller.rb', line 25

def redirect
  if Page.news_pages.any?
    redirect_to news_admin_pages_url(content_locale)
  else
    redirect_to admin_pages_url(content_locale)
  end
end