Sha256: 3afe8d68fe65bac0c9f3100f7a078b093fc2303300dd9b94a46822c3d83269aa

Contents?: true

Size: 1.29 KB

Versions: 3

Compression:

Stored size: 1.29 KB

Contents

module ActiveScaffold::Config
  class Duplicate < Base
    self.crud_type = :create
    
    def initialize(core_config)
      @core = core_config
      self.method = self.class.method
      self.link = self.class.link.clone
      self.action_after_clone = self.class.action_after_clone
      self.refresh_list = self.class.refresh_list
    end

    # the method to clone records
    cattr_accessor :method
    @@method = :dup
    
    # which action render after clone with post
    cattr_accessor :action_after_clone
    @@action_after_clone = nil

    # whether we should refresh list after clone or not
    cattr_accessor :refresh_list
    @@refresh_list = false

    # the ActionLink for this action
    cattr_accessor :link
    @@link = ActiveScaffold::DataStructures::ActionLink.new(:duplicate, :type => :member, :method => :post, :position => false, :security_method => :duplicate_authorized?, :ignore_method => :duplicate_ignore?)

    # instance-level configuration
    # ----------------------------

    # the ActionLink for this action
    attr_accessor :link
    
    # the method to clone records
    attr_accessor :method

    # which action render after clone with post
    attr_accessor :action_after_clone

    # whether we should refresh list after clone or not
    attr_accessor :refresh_list
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
active_scaffold_duplicate-1.0.2 lib/active_scaffold/config/duplicate.rb
active_scaffold_duplicate-1.0.1 lib/active_scaffold/config/duplicate.rb
active_scaffold_duplicate-1.0.0 lib/active_scaffold/config/duplicate.rb