Class: ModsDisplay::Identifier

Inherits:
Field
  • Object
show all
Defined in:
lib/mods_display/fields/identifier.rb

Instance Method Summary collapse

Methods inherited from Field

#initialize, #label, #render_in, #to_html

Constructor Details

This class inherits a constructor from ModsDisplay::Field

Instance Method Details

#fieldsObject



5
6
7
8
9
10
11
12
13
# File 'lib/mods_display/fields/identifier.rb', line 5

def fields
  return_fields = @stanford_mods_elements.map do |identifier_element|
    ModsDisplay::Values.new(
      label: displayLabel(identifier_element) || identifier_label(identifier_element),
      values: [element_text(identifier_element)]
    )
  end
  collapse_fields(return_fields)
end