Sha256: a3597169e15113126abc569e2f20a64b7a457262043680d7007d205463702dd0

Contents?: true

Size: 1.21 KB

Versions: 3

Compression:

Stored size: 1.21 KB

Contents

module ActiveScaffold::Config
  class Clone < 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
    end

    # the method to clone records
    cattr_accessor :method
    @@method = :dup
    
    # which action render after clone
    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('clone', :type => :member, :method => :post, :position => false, :security_method => :clone_authorized?, :ignore_method => :clone_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
    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/clone.rb~
active_scaffold_duplicate-1.0.1 lib/active_scaffold/config/clone.rb~
active_scaffold_duplicate-1.0.0 lib/active_scaffold/config/clone.rb~