Lines 1001-1006
sub get_marc_notes {
Link Here
|
1001 |
return \@marcnotes; |
1001 |
return \@marcnotes; |
1002 |
} |
1002 |
} |
1003 |
|
1003 |
|
|
|
1004 |
=head3 _get_marc_authors |
1005 |
|
1006 |
Private method to return the list of authors contained in the MARC record. |
1007 |
See get get_marc_contributors and get_marc_authors for the public methods. |
1008 |
|
1009 |
=cut |
1010 |
|
1004 |
sub _get_marc_authors { |
1011 |
sub _get_marc_authors { |
1005 |
my ( $self, $params ) = @_; |
1012 |
my ( $self, $params ) = @_; |
1006 |
|
1013 |
|
Lines 1091-1097
sub _get_marc_authors {
Link Here
|
1091 |
my $contributors = $biblio->get_marc_contributors; |
1098 |
my $contributors = $biblio->get_marc_contributors; |
1092 |
|
1099 |
|
1093 |
Get all contributors (but first author) from the MARC record and returns them in an array. |
1100 |
Get all contributors (but first author) from the MARC record and returns them in an array. |
1094 |
They are stored in different fields depending on MARC flavour (700..712 for MARC21) |
1101 |
They are stored in different fields depending on MARC flavour (700..720 for MARC21) |
1095 |
|
1102 |
|
1096 |
=cut |
1103 |
=cut |
1097 |
|
1104 |
|
Lines 1126-1132
sub get_marc_contributors {
Link Here
|
1126 |
|
1133 |
|
1127 |
Get all authors from the MARC record and returns them in an array. |
1134 |
Get all authors from the MARC record and returns them in an array. |
1128 |
They are stored in different fields depending on MARC flavour |
1135 |
They are stored in different fields depending on MARC flavour |
1129 |
(main author from 100 then secondary authors from 700..712). |
1136 |
(main author from 100 then secondary authors from 700..720). |
1130 |
|
1137 |
|
1131 |
=cut |
1138 |
=cut |
1132 |
|
1139 |
|
1133 |
- |
|
|