Class/Module Index [+]

Quicksearch

Authlogic::Session::Activation::ClassMethods

Public Instance Methods

activated?() click to toggle source

Returns true if a controller has been set and can be used properly. This MUST be set before anything can be done. Similar to how ActiveRecord won't allow you to do anything without establishing a DB connection. In your framework environment this is done for you, but if you are using Authlogic outside of your framework, you need to assign a controller object to Authlogic via Authlogic::Session::Base.controller = obj. See the controller= method for more information.

# File lib/authlogic/session/activation.rb, line 25
def activated?
  !controller.nil?
end
controller() click to toggle source

The current controller object

# File lib/authlogic/session/activation.rb, line 39
def controller
  Thread.current[:authlogic_controller]
end
controller=(value) click to toggle source

This accepts a controller object wrapped with the Authlogic controller adapter. The controller adapters close the gap between the different controllers in each framework. That being said, Authlogic is expecting your object's class to extend Authlogic::ControllerAdapters::AbstractAdapter. See Authlogic::ControllerAdapters for more info.

Lastly, this is thread safe.

# File lib/authlogic/session/activation.rb, line 34
def controller=(value)
  Thread.current[:authlogic_controller] = value
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.