Sha256: 7f8b7094b7dd23b319203d7c957e90313151bf705731bf8037feb5b3695beb11

Contents?: true

Size: 522 Bytes

Versions: 23

Compression:

Stored size: 522 Bytes

Contents

class ComfortableMexicanSofa::Tag::File
  include ComfortableMexicanSofa::Tag
  
  def self.regex_tag_signature(label = nil)
    label ||= /[\w\-\.]+/
    /\{\{\s*cms:file:(#{label}):?(.*?)\s*\}\}/
  end
  
  def content
    return unless file
    
    format  = params[0]
    text    = params[1] || label
    
    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

23 entries across 23 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.4.22 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.21 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.20 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.19 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.18 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.17 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.16 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.15 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.14 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.13 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.12 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.11 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.10 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.9 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.8 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.7 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.6 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.5 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.4 lib/comfortable_mexican_sofa/tags/file.rb
comfortable_mexican_sofa-1.4.3 lib/comfortable_mexican_sofa/tags/file.rb