Sha256: 079653ab753099dbb1d9e3d983e854dc3c3fad9c5b05341d69391e8191f2a8ab
Contents?: true
Size: 768 Bytes
Versions: 2
Compression:
Stored size: 768 Bytes
Contents
module Blocky # A block of HTML content that can be rendered on one or multiple pages. class ContentBlock < ActiveRecord::Base # Validations validates :content_key, presence: true validates :description, presence: true, unless: :new_record? # Callbacks before_save :encode_content # Returns the description of the content block if it exists. # The content key is used as a fallback if there is no description. def display_name description.blank? ? content_key : description end private # Force encoding of the content to UTF-8 before saving. def encode_content html = content.to_s.strip.force_encoding("utf-8") self.content = "\n" + (html.blank? ? "<p><br/></p>" : html) + "\n" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
blocky-1.0.1 | app/models/blocky/content_block.rb |
blocky-1.0.0 | app/models/blocky/content_block.rb |