Sha256: 6d93532325a3cbc9825f648be91200bc422aa768fa372f6d089d0d5d26725323
Contents?: true
Size: 1.26 KB
Versions: 7
Compression:
Stored size: 1.26 KB
Contents
class Cms::Snippet < ActiveRecord::Base include Cms::Base cms_is_categorized cms_is_mirrored cms_has_revisions_for :content # -- Relationships -------------------------------------------------------- belongs_to :site # -- Callbacks ------------------------------------------------------------ before_validation :assign_label before_create :assign_position after_save :clear_cached_page_content after_destroy :clear_cached_page_content # -- Validations ---------------------------------------------------------- validates :site_id, :presence => true validates :label, :presence => true validates :identifier, :presence => true, :uniqueness => { :scope => :site_id }, :format => { :with => /\A\w[a-z0-9_-]*\z/i } # -- Scopes --------------------------------------------------------------- default_scope -> { order('cms_snippets.position') } protected def assign_label self.label = self.label.blank?? self.identifier.try(:titleize) : self.label end def clear_cached_page_content Cms::Page.where(:id => site.pages.pluck(:id)).update_all(:content => nil) end def assign_position max = self.site.snippets.maximum(:position) self.position = max ? max + 1 : 0 end end
Version data entries
7 entries across 7 versions & 1 rubygems