Sha256: 807ac79b6a6e99bcb634b2583cc97b4341392fb37b168462a839cf7f10f8bf01
Contents?: true
Size: 1.46 KB
Versions: 3
Compression:
Stored size: 1.46 KB
Contents
module CurationConcerns module PresentsAttributes ## # Present the attribute as an HTML table row. # # @param [Hash] options # @option options [true, false] :catalog_search_link return a link to a catalog search for that text if true # @option options [String] :search_field If the method_name of the attribute is different than # how the attribute name should appear on the search URL, # you can explicitly set the URL's search field name # @option options [String] :label The default label for the field if no translation is found def attribute_to_html(field, options = {}) unless respond_to?(field) Rails.logger.warn("#{self.class} attempted to render #{field}, but no method exists with that name.") return end CurationConcerns::Renderers::AttributeRenderer.new(field, send(field), options).render end def permission_badge permission_badge_class.new(solr_document).render end def permission_badge_class PermissionBadge end def display_microdata? CurationConcerns.config.display_microdata end def microdata_type_to_html return "" unless display_microdata? value = I18n.t(microdata_type_key, default: CurationConcerns.config.microdata_default_type) " itemscope itemtype=\"#{value}\"".html_safe end private def microdata_type_key "curation_concerns.schema_org.resource_type.#{human_readable_type}" end end end
Version data entries
3 entries across 3 versions & 1 rubygems