Sha256: 4ca7a510a10491eee70bc6439aa2cd911d289325a0059bf4dc69a4f0e1232aee
Contents?: true
Size: 1.79 KB
Versions: 29
Compression:
Stored size: 1.79 KB
Contents
module ActiveScaffold::Config class BatchUpdate < ActiveScaffold::Config::Form self.crud_type = :update def initialize(*args) super @process_mode = self.class.process_mode @action_group ||= 'collection.batch' @list_mode_enabled = self.class.list_mode_enabled end # global level configuration # -------------------------- # the ActionLink for this action def self.link @@link end def self.link=(val) @@link = val end @@link = ActiveScaffold::DataStructures::ActionLink.new('batch_edit', :label => :edit, :type => :collection, :security_method => :batch_update_authorized?, :ignore_method => :batch_update_ignore?) # configures where the plugin itself is located. there is no instance version of this. cattr_accessor :plugin_directory @@plugin_directory = File.expand_path(__FILE__).match(%{(^.*)/lib/active_scaffold/config/batch_update.rb})[1] # configures how batch updates should be processed # :update => standard activerecord update including validations # :update_all => updating in one sql call without activerecord instantiation and validation cattr_accessor :process_mode @@process_mode = :update # you may update all records in list view or all marked records # you might disable list mode with this switch if you think it is # too "dangerous" cattr_accessor :list_mode_enabled @@list_mode_enabled = true # instance-level configuration # ---------------------------- # see class accessor attr_accessor :process_mode attr_accessor :list_mode_enabled # the label= method already exists in the Form base class def label(model = nil) model ||= @core.label(:count => 2) @label ? as_(@label) : as_(:update_model, :model => model) end end end
Version data entries
29 entries across 29 versions & 2 rubygems