Class: ActiveScaffold::Config::Nested

Inherits:
Base show all
Defined in:
lib/active_scaffold/config/nested.rb

Constant Summary collapse

@@shallow_delete =
true

Instance Attribute Summary collapse

Attributes inherited from Base

#action_group, #user

Instance Method Summary collapse

Methods inherited from Base

#crud_type, #formats, #formats=, inherited, #label

Methods included from ActiveScaffold::Configurable

#configure, #method_missing

Constructor Details

#initialize(core_config) ⇒ Nested

Returns a new instance of Nested.



5
6
7
8
9
10
# File 'lib/active_scaffold/config/nested.rb', line 5

def initialize(core_config)
  super
  @label = :add_existing_model
  self.shallow_delete = self.class.shallow_delete
  @action_group = self.class.action_group.clone if self.class.action_group
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ActiveScaffold::Configurable

Instance Attribute Details

#label=(value) ⇒ Object (writeonly)

the label for this Nested action. used for the header.



33
34
35
# File 'lib/active_scaffold/config/nested.rb', line 33

def label=(value)
  @label = value
end

#shallow_deleteObject

instance-level configuration




19
20
21
# File 'lib/active_scaffold/config/nested.rb', line 19

def shallow_delete
  @shallow_delete
end

Instance Method Details

Add a nested ActionLink



22
23
24
25
26
27
28
29
30
# File 'lib/active_scaffold/config/nested.rb', line 22

def add_link(attribute, options = {})
  column = @core.columns[attribute.to_sym]
  unless column.nil? || column.association.nil?
    options.reverse_merge! :security_method => :nested_authorized?, :label => column.association.associated_class.model_name.human({:count => 2, :default => column.association.associated_class.name.pluralize}) 
    action_link = @core.link_for_association(column, options)
    action_link.action ||= :index
    @core.action_links.add_to_group(action_link, action_group) unless action_link.nil?
  end
end