|
Lines 53-58
use Koha::DateUtils;
Link Here
|
| 53 |
use C4::HTML5Media; |
53 |
use C4::HTML5Media; |
| 54 |
use C4::CourseReserves qw(GetItemCourseReservesInfo); |
54 |
use C4::CourseReserves qw(GetItemCourseReservesInfo); |
| 55 |
|
55 |
|
|
|
56 |
use Koha::Virtualshelves; |
| 57 |
|
| 56 |
BEGIN { |
58 |
BEGIN { |
| 57 |
if (C4::Context->preference('BakerTaylorEnabled')) { |
59 |
if (C4::Context->preference('BakerTaylorEnabled')) { |
| 58 |
require C4::External::BakerTaylor; |
60 |
require C4::External::BakerTaylor; |
|
Lines 844-855
$template->param(
Link Here
|
| 844 |
); |
846 |
); |
| 845 |
|
847 |
|
| 846 |
# Lists |
848 |
# Lists |
| 847 |
|
|
|
| 848 |
if (C4::Context->preference("virtualshelves") ) { |
849 |
if (C4::Context->preference("virtualshelves") ) { |
| 849 |
$template->param( 'GetShelves' => GetBibliosShelves( $biblionumber ) ); |
850 |
my $shelves = Koha::Virtualshelves->search( |
|
|
851 |
{ |
| 852 |
biblionumber => $biblionumber, |
| 853 |
category => 2, |
| 854 |
}, |
| 855 |
{ |
| 856 |
join => 'virtualshelfcontents', |
| 857 |
} |
| 858 |
); |
| 859 |
$template->param( 'GetShelves' => $shelves ); |
| 850 |
} |
860 |
} |
| 851 |
|
861 |
|
| 852 |
|
|
|
| 853 |
# XISBN Stuff |
862 |
# XISBN Stuff |
| 854 |
if (C4::Context->preference("OPACFRBRizeEditions")==1) { |
863 |
if (C4::Context->preference("OPACFRBRizeEditions")==1) { |
| 855 |
eval { |
864 |
eval { |
| 856 |
- |
|
|