View | Details | Raw Unified | Return to bug 25030
Collapse All | Expand All

(-)a/Koha/Filter/MARC/EmbedSeeFromHeadings.pm (-1 / +9 lines)
Lines 76-81 sub _processrecord { Link Here
76
    return $record;
76
    return $record;
77
}
77
}
78
78
79
=head2 fields
80
81
    my @fields = $filter->fields($record);
82
83
Retrieve the fields that would be embedded if the record were processed by the filter.
84
Used during Elasticsearch indexing to give special treatment to these field (i.e. don't
85
include in facets, sorting, or suggestion fields)
86
87
=cut
79
sub fields {
88
sub fields {
80
    my ($self, $record) = @_;
89
    my ($self, $record) = @_;
81
90
82
- 

Return to bug 25030