Class: ActiveAdmin::ActionItem
- Inherits:
-
Object
- Object
- ActiveAdmin::ActionItem
- Includes:
- OptionalDisplay
- Defined in:
- lib/active_admin/resource/action_items.rb
Overview
Model class to store the data for ActionItems
Instance Attribute Summary collapse
-
#block ⇒ Object
Returns the value of attribute block.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name, options = {}, &block) ⇒ ActionItem
constructor
A new instance of ActionItem.
- #priority ⇒ Object
Methods included from OptionalDisplay
Constructor Details
#initialize(name, options = {}, &block) ⇒ ActionItem
Returns a new instance of ActionItem.
104 105 106 107 108 109 |
# File 'lib/active_admin/resource/action_items.rb', line 104 def initialize(name, = {}, &block) @name = name @options = @block = block end |
Instance Attribute Details
#block ⇒ Object
Returns the value of attribute block.
102 103 104 |
# File 'lib/active_admin/resource/action_items.rb', line 102 def block @block end |
#name ⇒ Object
Returns the value of attribute name.
102 103 104 |
# File 'lib/active_admin/resource/action_items.rb', line 102 def name @name end |
Instance Method Details
#priority ⇒ Object
111 112 113 |
# File 'lib/active_admin/resource/action_items.rb', line 111 def priority @options[:priority] || 10 end |