Sha256: ea574ea6561cbc1065770366a3822e67bb32d76f0320a5d5f0bb398d4f0e461a
Contents?: true
Size: 483 Bytes
Versions: 35
Compression:
Stored size: 483 Bytes
Contents
class PagePart < ActiveRecord::Base attr_accessible :name, :filter_id, :content # Default Order default_scope {order("name")} # Associations belongs_to :page # Validations validates_presence_of :name validates_length_of :name, :maximum => 100 validates_length_of :filter_id, :maximum => 25, :allow_nil => true object_id_attr :filter, TextFilter def after_initialize self.filter_id ||= TrustyCms::Config['defaults.page.filter'] if new_record? end end
Version data entries
35 entries across 35 versions & 1 rubygems