Sha256: 60c836d9bd16a298adbd46d4dade6735787738b4459da68f25c8702f780bb46d
Contents?: true
Size: 1.34 KB
Versions: 14
Compression:
Stored size: 1.34 KB
Contents
module CurationConcerns::WorkBehavior extend ActiveSupport::Concern include Hydra::Works::WorkBehavior include CurationConcerns::HumanReadableType include CurationConcerns::Noid include CurationConcerns::Permissions include CurationConcerns::Serializers include Hydra::WithDepositor include Solrizer::Common include CurationConcerns::HasRepresentative include CurationConcerns::WithFileSets include CurationConcerns::Naming include CurationConcerns::RequiredMetadata include Hydra::AccessControls::Embargoable include GlobalID::Identification include CurationConcerns::NestedWorks included do property :owner, predicate: RDF::URI.new('http://opaquenamespace.org/ns/hydra/owner'), multiple: false class_attribute :human_readable_short_description, :indexer self.indexer = CurationConcerns::WorkIndexer end module ClassMethods # This governs which partial to draw when you render this type of object def _to_partial_path #:nodoc: @_to_partial_path ||= begin element = ActiveSupport::Inflector.underscore(ActiveSupport::Inflector.demodulize(name)) collection = ActiveSupport::Inflector.tableize(name) "curation_concerns/#{collection}/#{element}".freeze end end end def to_s if title.present? Array.wrap(title).join(' | ') else 'No Title' end end end
Version data entries
14 entries across 14 versions & 1 rubygems