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

(-)a/Koha/Biblio.pm (+8 lines)
Lines 419-424 sub items { Link Here
419
    return Koha::Items->_new_from_dbic( $items_rs );
419
    return Koha::Items->_new_from_dbic( $items_rs );
420
}
420
}
421
421
422
=head3 host_items
423
424
my $host_items = $biblio->host_items();
425
426
Return the host items (easy analytical record)
427
428
=cut
429
422
sub host_items {
430
sub host_items {
423
    my ($self) = @_;
431
    my ($self) = @_;
424
432
(-)a/Koha/Item.pm (-1 / +10 lines)
Lines 939-944 sub cover_images { Link Here
939
    return Koha::CoverImages->_new_from_dbic($cover_image_rs);
939
    return Koha::CoverImages->_new_from_dbic($cover_image_rs);
940
}
940
}
941
941
942
=head3 columns_to_str
943
944
    my $values = $items->columns_to_str;
945
946
Return a hashref with the string representation of the different attribute of the item.
947
948
This is meant to be used for display purpose only.
949
950
=cut
951
942
sub columns_to_str {
952
sub columns_to_str {
943
    my ( $self ) = @_;
953
    my ( $self ) = @_;
944
954
945
- 

Return to bug 27526