Sha256: 57496eca4e22c52bd8bf63d7fb8da7b62a3cdb7c2275fa3fd1f274b1e492e1d5

Contents?: true

Size: 674 Bytes

Versions: 25

Compression:

Stored size: 674 Bytes

Contents

class ComfortableMexicanSofa::Tag::File
  include ComfortableMexicanSofa::Tag
  
  def self.regex_tag_signature(identifier = nil)
    identifier ||= IDENTIFIER_REGEX
    /\{\{\s*cms:file:(#{identifier}):?(.*?)\s*\}\}/
  end
  
  # Initializing Cms::File object
  def file
    page.site.files.detect{|f| f.file_file_name == self.identifier.to_s}
  end
  
  def content
    return unless file
    
    format  = params[0]
    text    = params[1] || identifier
    
    case format
    when 'link'
      "<a href='#{file.file.url}' target='_blank'>#{text}</a>"
    when 'image'
      "<img src='#{file.file.url}' alt='#{text}' />"
    else
      file.file.url
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.6.31 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.11.2 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.11.1 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.11.0 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.10.3 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.10.2 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.10.1 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.10.0 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.9.3 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.9.2 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.8.5 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.9.1 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.9.0 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.8.4 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.8.3 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.8.2 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.8.1 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.8.0 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.6.30 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.7.3 lib/comfortable_mexican_sofa/tags/file.rb