module AbstractController::Layouts::ClassMethods::LayoutConditions

def action_has_layout?

* Boolean - True if the action has a layout, false otherwise.
==== Returns

layout.
action name against the :only and :except conditions set on the
Determines whether the current action has a layout by checking the
def action_has_layout?
  return unless super
  conditions = _layout_conditions
  if only = conditions[:only]
    only.include?(action_name)
  elsif except = conditions[:except]
    !except.include?(action_name)
  else
    true
  end
end