Class: ActiveScaffold::Config::Delete
- Defined in:
- lib/active_scaffold/config/delete.rb
Constant Summary collapse
- @@link =
ActiveScaffold::DataStructures::ActionLink.new('destroy', :label => :delete, :type => :member, :confirm => :are_you_sure_to_delete, :method => :delete, :crud_type => :delete, :position => false, :parameters => {:destroy_action => true}, :security_method => :delete_authorized?)
- @@refresh_list =
false
Instance Attribute Summary collapse
-
#link ⇒ Object
the ActionLink for this action.
-
#refresh_list ⇒ Object
whether we should refresh list after destroy or not.
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(core_config) ⇒ Delete
constructor
A new instance of Delete.
Methods inherited from Base
#crud_type, #formats, #formats=, inherited
Methods included from ActiveScaffold::Configurable
Constructor Details
#initialize(core_config) ⇒ Delete
Returns a new instance of Delete.
5 6 7 8 9 10 11 12 |
# File 'lib/active_scaffold/config/delete.rb', line 5 def initialize(core_config) @core = core_config # start with the ActionLink defined globally @link = self.class.link.clone @action_group = self.class.action_group.clone if self.class.action_group self.refresh_list = self.class.refresh_list end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ActiveScaffold::Configurable
Instance Attribute Details
#link ⇒ Object
the ActionLink for this action
29 30 31 |
# File 'lib/active_scaffold/config/delete.rb', line 29 def link @link end |
#refresh_list ⇒ Object
whether we should refresh list after destroy or not
32 33 34 |
# File 'lib/active_scaffold/config/delete.rb', line 32 def refresh_list @refresh_list end |