Sha256: ba709ca96005f0a6c7e726b2a466bf0278b81e814bd2cbf52ca2cb18c434792f
Contents?: true
Size: 1.47 KB
Versions: 4
Compression:
Stored size: 1.47 KB
Contents
# WILL BE REMOVED IN HYDRA-HEAD 5.x require 'deprecation' module Hydra module FacetsHelperBehavior include Blacklight::FacetsHelperBehavior extend Deprecation self.deprecation_horizon = 'hydra-head 5.x' # Removing the [remove] link and label class from the default selected facet display # NOT DEPRECATED BECAUSE THIS IS AN OVERRIDE OF A BLACKLIGHT METHOD def render_selected_facet_value(facet_solr_field, item) content_tag(:span, render_facet_value(facet_solr_field, item, :suppress_link => true), :class => "selected") end # Override to remove the label class (easier integration with bootstrap) # and handles arrays # NOT DEPRECATED BECAUSE THIS IS AN OVERRIDE OF A BLACKLIGHT METHOD def render_facet_value(facet_solr_field, item, options ={}) if item.is_a? Array render_array_facet_value(facet_solr_field, item, options) end (link_to_unless(options[:suppress_link], item.value, add_facet_params_and_redirect(facet_solr_field, item.value), :class=>"facet_select") + " " + render_facet_count(item.hits)).html_safe end def render_array_facet_value(facet_solr_field, item, options) ActiveSupport::Deprecation.warn("render_array_facet_value is deprecated and will be removed in the next release") (link_to_unless(options[:suppress_link], item[0], add_facet_params_and_redirect(facet_solr_field, item[0]), :class=>"facet_select") + " (" + format_num(item[1]) + ")").html_safe end end end
Version data entries
4 entries across 4 versions & 1 rubygems