Sha256: c9252da6551aa4265614bf7a14aec68a52ab8809aafaef138b0d0032725b3ebe
Contents?: true
Size: 1.13 KB
Versions: 25
Compression:
Stored size: 1.13 KB
Contents
module ActiveScaffold::Config class Delete < Base self.crud_type = :delete def initialize(core_config) super # 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 # global level configuration # -------------------------- # the ActionLink for this action cattr_accessor :link @@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?, :ignore_method => :delete_ignore?) # whether we should refresh list after destroy or not cattr_accessor :refresh_list @@refresh_list = false # instance-level configuration # ---------------------------- # the ActionLink for this action attr_accessor :link # whether we should refresh list after destroy or not attr_accessor :refresh_list end end
Version data entries
25 entries across 25 versions & 2 rubygems