Sha256: bb1f161b47667c3fa0a905de9359c87c110ed818e6609cbe68b59716801a2c70
Contents?: true
Size: 1.74 KB
Versions: 6
Compression:
Stored size: 1.74 KB
Contents
module ActiveScaffold::Config class Nested < Base self.crud_type = :read def initialize(core_config) super @label = :add_existing_model @shallow_delete = self.class.shallow_delete @ignore_order_from_association = self.class.ignore_order_from_association end # global level configuration # -------------------------- cattr_accessor :shallow_delete @@shallow_delete = true cattr_accessor :ignore_order_from_association # instance-level configuration # ---------------------------- attr_accessor :shallow_delete attr_accessor :ignore_order_from_association # Add a nested ActionLink def add_link(attribute, options = {}) column = @core.columns[attribute.to_sym] unless column.nil? || column.association.nil? label = if column.polymorphic_association? column.label else column.association.klass.model_name.human({:count => column.singular_association? ? 1 : 2, :default => column.association.klass.name.pluralize}) end options.reverse_merge! :security_method => :nested_authorized?, :label => label action_group = options.delete(:action_group) || self.action_group action_link = @core.link_for_association(column, options) @core.action_links.add_to_group(action_link, action_group) unless action_link.nil? else # TODO: raise exception end end def add_scoped_link(named_scope, options = {}) action_link = @core.link_for_association_as_scope(named_scope.to_sym, options) @core.action_links.add_to_group(action_link, action_group) unless action_link.nil? end # the label for this Nested action. used for the header. attr_writer :label end end
Version data entries
6 entries across 6 versions & 1 rubygems