Sha256: 1d82f632a5f20a87f8470697f4fe052356a0236017d9cdf4c7fff014a8a29fc5
Contents?: true
Size: 1.32 KB
Versions: 3
Compression:
Stored size: 1.32 KB
Contents
module ActiveScaffold::Config class Create < ActiveScaffold::Config::Form self.crud_type = :create def initialize(*args) super self.persistent = self.class.persistent self.edit_after_create = self.class.edit_after_create 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('new', :label => :create_new, :type => :collection, :security_method => :create_authorized?, :ignore_method => :create_ignore?) # whether the form stays open after a create or not cattr_accessor :persistent @@persistent = false # whether update form is opened after a create or not cattr_accessor :edit_after_create @@edit_after_create = false # instance-level configuration # ---------------------------- # the label= method already exists in the Form base class def label(model = nil) model ||= @core.label(:count => 1) @label ? as_(@label) : as_(:create_model, :model => model) end # whether the form stays open after a create or not attr_accessor :persistent # whether the form stays open after a create or not attr_accessor :edit_after_create end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
active_scaffold-3.0.2 | lib/active_scaffold/config/create.rb |
active_scaffold-3.0.1 | lib/active_scaffold/config/create.rb |
active_scaffold-3.0.0 | lib/active_scaffold/config/create.rb |