Sha256: 8466fcc5f6544dfc3748586ac86e39ce4bdb6c4ea1cc8794562a15b2f52c6348

Contents?: true

Size: 497 Bytes

Versions: 9

Compression:

Stored size: 497 Bytes

Contents

module Pageflow
  module ExternalLinks
    module SitesHelper
      def external_links_site_css_class(site)
        ['link-item', site.title.blank? && site.description.blank? ? 'no_text' : ''].compact.join(' ')
      end


      def external_links_site_thumbnail_css_class(site)
        classes = ['link-thumbnail']

        if file = site.thumbnail_file
          classes << file_thumbnail_css_class(file, :link_thumbnail_large)
        end

        classes.join(' ')
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
pageflow-external-links-2.1.0 app/helpers/pageflow/external_links/sites_helper.rb
pageflow-external-links-1.1.0 app/helpers/pageflow/external_links/sites_helper.rb
pageflow-external-links-2.0.0 app/helpers/pageflow/external_links/sites_helper.rb
pageflow-external-links-2.0.0.beta1 app/helpers/pageflow/external_links/sites_helper.rb
pageflow-external-links-1.0.0 app/helpers/pageflow/external_links/sites_helper.rb
pageflow-external-links-0.4.0 app/helpers/pageflow/external_links/sites_helper.rb
pageflow-external-links-0.3.0 app/helpers/pageflow/external_links/sites_helper.rb
pageflow-external-links-0.2.0 app/helpers/pageflow/external_links/sites_helper.rb
pageflow-external-links-0.1.0 app/helpers/pageflow/external_links/sites_helper.rb