|
Lines 151-172
sub authorities {
Link Here
|
| 151 |
return $results; |
151 |
return $results; |
| 152 |
} |
152 |
} |
| 153 |
|
153 |
|
| 154 |
=head2 preferred_authorities |
|
|
| 155 |
|
| 156 |
my $preferred_authorities = $heading->preferred_authorities; |
| 157 |
|
| 158 |
Return a list of authority records for headings |
| 159 |
that are a preferred form of the heading. |
| 160 |
|
| 161 |
=cut |
| 162 |
|
| 163 |
sub preferred_authorities { |
| 164 |
my $self = shift; |
| 165 |
my $skipmetadata = shift || undef; |
| 166 |
my ( $results, $total ) = _search( 'see-from', $skipmetadata ); |
| 167 |
return $results; |
| 168 |
} |
| 169 |
|
| 170 |
=head2 valid_heading_subfield |
154 |
=head2 valid_heading_subfield |
| 171 |
|
155 |
|
| 172 |
if (C4::Heading::valid_heading_subfield('100', 'e', '')) ... |
156 |
if (C4::Heading::valid_heading_subfield('100', 'e', '')) ... |
| 173 |
- |
|
|