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 940-945 sub cover_images { Link Here
940
    return Koha::CoverImages->_new_from_dbic($cover_image_rs);
940
    return Koha::CoverImages->_new_from_dbic($cover_image_rs);
941
}
941
}
942
942
943
=head3 columns_to_str
944
945
    my $values = $items->columns_to_str;
946
947
Return a hashref with the string representation of the different attribute of the item.
948
949
This is meant to be used for display purpose only.
950
951
=cut
952
943
sub columns_to_str {
953
sub columns_to_str {
944
    my ( $self ) = @_;
954
    my ( $self ) = @_;
945
955
946
- 

Return to bug 27526