Method: Blacklight::Rendering::Pipeline.render

Defined in:
app/presenters/blacklight/rendering/pipeline.rb

.render(values, config, document, context, options) ⇒ Object

Parameters:

  • values (Array)

    the values for the field

  • config (Blacklight::Configuration::Field)

    the field’s configuration

  • document (SolrDocument)

    the document

  • context (Object)

    an execution context, used to execute the helper method in.

  • options (Hash)

    options to pass to the processors. Typically only ‘:value` is used



36
37
38
# File 'app/presenters/blacklight/rendering/pipeline.rb', line 36

def self.render(values, config, document, context, options)
  new(values, config, document, context, operations, options).render
end