Class: ActiveAdmin::ActionItem

Inherits:
Object
  • Object
show all
Includes:
OptionalDisplay
Defined in:
lib/active_admin/resource/action_items.rb

Overview

Model class to store the data for ActionItems

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from OptionalDisplay

#display_on?

Constructor Details

#initialize(name, options = {}, &block) ⇒ ActionItem

Returns a new instance of ActionItem.



100
101
102
103
104
105
# File 'lib/active_admin/resource/action_items.rb', line 100

def initialize(name, options = {}, &block)
  @name = name
  @options = options
  @block = block
  normalize_display_options!
end

Instance Attribute Details

#blockObject

Returns the value of attribute block.



98
99
100
# File 'lib/active_admin/resource/action_items.rb', line 98

def block
  @block
end

#nameObject

Returns the value of attribute name.



98
99
100
# File 'lib/active_admin/resource/action_items.rb', line 98

def name
  @name
end