Class ActionFlow::SystemEvent
In: lib/action_flow/event.rb
Parent: ActionFlow::Event

The SystemEvent class is a subclass of ActionFlow::Event and is used internally to trigger plugins execution. Since the plugins are not activated yet, SystemEvents are not used.

Methods

new  

Attributes

controller  [RW] 
flow_data  [RW] 

Public Class methods

Initializes the class instance

[Source]

# File lib/action_flow/event.rb, line 69
    def initialize(m_event_name, m_controller, m_flow_data)
    
      # Super controller

      super m_event_name
    
      # Set values

      @controller, @flow_data = m_controller, m_flow_data
    
    end

[Validate]