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.



103
104
105
106
107
108
# File 'lib/active_admin/resource/action_items.rb', line 103

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.



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

def block
  @block
end

#nameObject

Returns the value of attribute name.



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

def name
  @name
end

Instance Method Details

#html_classObject



110
111
112
# File 'lib/active_admin/resource/action_items.rb', line 110

def html_class
  "action_item #{@options[:class]}".rstrip
end