Module: Cul::Hydra::Controllers::Helpers::ActiveFedoraHelperBehavior

Defined in:
lib/cul_hydra/controllers/helpers/active_fedora_helper_behavior.rb

Instance Method Summary collapse

Instance Method Details

#load_dc_document_from_solr(doc) ⇒ Object



3
4
5
6
7
# File 'lib/cul_hydra/controllers/helpers/active_fedora_helper_behavior.rb', line 3

def load_dc_document_from_solr(doc)
  pid = doc[:id] ? doc[:id] : doc[:id.to_s]
  result = pid ? DcDocument.load_instance_from_solr(pid,doc) : nil
  result
end