Sha256: 1aa0a5e1ff77f37b8cbb6f12dc11382e1e818843c78ee55e7beb0dd5af0a8937
Contents?: true
Size: 1.09 KB
Versions: 4
Compression:
Stored size: 1.09 KB
Contents
class Cms::Snippet < ActiveRecord::Base set_table_name :cms_snippets is_mirrored has_revisions_for :content # -- Relationships -------------------------------------------------------- belongs_to :site # -- Callbacks ------------------------------------------------------------ before_validation :assign_label after_save :clear_cached_page_content after_destroy :clear_cached_page_content # -- Validations ---------------------------------------------------------- validates :site_id, :presence => true validates :label, :presence => true validates :slug, :presence => true, :uniqueness => { :scope => :site_id }, :format => { :with => /^\w[a-z0-9_-]*$/i } protected def assign_label self.label = self.label.blank?? self.slug.try(:titleize) : self.label end # Note: This might be slow. We have no idea where the snippet is used, so # gotta reload every single page. Kinda sucks, but might be ok unless there # are hundreds of pages. def clear_cached_page_content site.pages.all.each{ |page| page.save } end end
Version data entries
4 entries across 4 versions & 1 rubygems