Lines 967-972
sub get_marc_notes {
Link Here
|
967 |
return \@marcnotes; |
967 |
return \@marcnotes; |
968 |
} |
968 |
} |
969 |
|
969 |
|
|
|
970 |
=head3 _get_marc_authors |
971 |
|
972 |
Private method to return the list of authors contained in the MARC record. |
973 |
See get get_marc_contributors and get_marc_authors for the public methods. |
974 |
|
975 |
=cut |
976 |
|
970 |
sub _get_marc_authors { |
977 |
sub _get_marc_authors { |
971 |
my ( $self, $params ) = @_; |
978 |
my ( $self, $params ) = @_; |
972 |
|
979 |
|
Lines 1057-1063
sub _get_marc_authors {
Link Here
|
1057 |
my $contributors = $biblio->get_marc_contributors; |
1064 |
my $contributors = $biblio->get_marc_contributors; |
1058 |
|
1065 |
|
1059 |
Get all contributors (but first author) from the MARC record and returns them in an array. |
1066 |
Get all contributors (but first author) from the MARC record and returns them in an array. |
1060 |
They are stored in different fields depending on MARC flavour (700..712 for MARC21) |
1067 |
They are stored in different fields depending on MARC flavour (700..720 for MARC21) |
1061 |
|
1068 |
|
1062 |
=cut |
1069 |
=cut |
1063 |
|
1070 |
|
Lines 1092-1098
sub get_marc_contributors {
Link Here
|
1092 |
|
1099 |
|
1093 |
Get all authors from the MARC record and returns them in an array. |
1100 |
Get all authors from the MARC record and returns them in an array. |
1094 |
They are stored in different fields depending on MARC flavour |
1101 |
They are stored in different fields depending on MARC flavour |
1095 |
(main author from 100 then secondary authors from 700..712). |
1102 |
(main author from 100 then secondary authors from 700..720). |
1096 |
|
1103 |
|
1097 |
=cut |
1104 |
=cut |
1098 |
|
1105 |
|
1099 |
- |
|
|