Class: ActiveScaffold::Config::Nested
- Defined in:
- lib/active_scaffold/config/nested.rb
Constant Summary collapse
- @@shallow_delete =
true
Instance Attribute Summary collapse
- #label ⇒ Object
-
#shallow_delete ⇒ Object
instance-level configuration —————————-.
Attributes inherited from Base
Instance Method Summary collapse
-
#add_link(attribute, options = {}) ⇒ Object
Add a nested ActionLink.
- #add_scoped_link(named_scope, options = {}) ⇒ Object
-
#initialize(core_config) ⇒ Nested
constructor
A new instance of Nested.
Methods inherited from Base
#crud_type, #formats, #formats=, inherited
Methods included from ActiveScaffold::Configurable
Constructor Details
#initialize(core_config) ⇒ Nested
Returns a new instance of Nested.
5 6 7 8 9 |
# File 'lib/active_scaffold/config/nested.rb', line 5 def initialize(core_config) @core = core_config 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 ⇒ Object
39 40 41 |
# File 'lib/active_scaffold/config/nested.rb', line 39 def label @label ? as_(@label) : as_(:add_existing_model, :model => @core.label) end |
#shallow_delete ⇒ Object
instance-level configuration
18 19 20 |
# File 'lib/active_scaffold/config/nested.rb', line 18 def shallow_delete @shallow_delete end |
Instance Method Details
#add_link(attribute, options = {}) ⇒ Object
Add a nested ActionLink
21 22 23 24 25 26 27 28 29 30 |
# File 'lib/active_scaffold/config/nested.rb', line 21 def add_link(attribute, = {}) column = @core.columns[attribute.to_sym] unless column.nil? || column.association.nil? .reverse_merge! :security_method => :nested_authorized?, :label => column.association.klass.model_name.human({:count => 2, :default => column.association.klass.name.pluralize}) action_link = @core.link_for_association(column, ) @core.action_links.add_to_group(action_link, action_group) unless action_link.nil? else end end |
#add_scoped_link(named_scope, options = {}) ⇒ Object
32 33 34 35 |
# File 'lib/active_scaffold/config/nested.rb', line 32 def add_scoped_link(named_scope, = {}) action_link = @core.link_for_association_as_scope(named_scope.to_sym, ) @core.action_links.add_to_group(action_link, action_group) unless action_link.nil? end |