Lines 19-42
Link Here
|
19 |
use Modern::Perl; |
19 |
use Modern::Perl; |
20 |
|
20 |
|
21 |
use CGI qw ( -utf8 ); |
21 |
use CGI qw ( -utf8 ); |
22 |
use HTML::Entities; |
22 |
use HTML::Entities (); |
23 |
use Try::Tiny; |
|
|
24 |
use C4::Auth qw( get_template_and_user ); |
23 |
use C4::Auth qw( get_template_and_user ); |
25 |
use C4::Context; |
24 |
use C4::Context; |
26 |
use C4::Koha qw( GetNormalizedUPC GetNormalizedEAN GetNormalizedOCLCNumber GetNormalizedISBN getitemtypeimagelocation GetAuthorisedValues ); |
25 |
use C4::Koha qw( |
|
|
26 |
GetAuthorisedValues |
27 |
getitemtypeimagelocation |
28 |
GetNormalizedEAN |
29 |
GetNormalizedISBN |
30 |
GetNormalizedOCLCNumber |
31 |
GetNormalizedUPC |
32 |
); |
27 |
use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials ); |
33 |
use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials ); |
28 |
use C4::Output qw( output_html_with_http_headers ); |
34 |
use C4::Output qw( output_html_with_http_headers ); |
29 |
use C4::Biblio qw( GetMarcBiblio GetFrameworkCode GetBiblioData ); |
35 |
use C4::Biblio qw( GetBiblioData GetFrameworkCode GetMarcBiblio ); |
30 |
use C4::Items qw( GetItemsInfo GetHostItemsInfo sub GetAnalyticsCount ); |
36 |
use C4::Items qw( GetAnalyticsCount GetHostItemsInfo GetItemsInfo ); |
31 |
use C4::Circulation qw( GetTransfers ); |
37 |
use C4::Circulation qw( GetTransfers ); |
32 |
use C4::Reserves; |
38 |
use C4::Reserves; |
33 |
use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials ); |
39 |
use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials ); |
34 |
use C4::XISBN qw( get_xisbns ); |
40 |
use C4::XISBN qw( get_xisbns ); |
35 |
use C4::External::Amazon; |
41 |
use C4::External::Amazon qw( get_amazon_tld ); |
36 |
use C4::Search qw( z3950_search_args enabled_staff_search_views ); |
42 |
use C4::Search qw( z3950_search_args enabled_staff_search_views ); |
37 |
use C4::Tags qw( get_tags get_tag ); |
43 |
use C4::Tags qw( get_tags ); |
38 |
use C4::XSLT; |
44 |
use C4::XSLT; |
39 |
use Koha::DateUtils; |
45 |
use Koha::DateUtils qw( format_sqldatetime ); |
40 |
use C4::HTML5Media; |
46 |
use C4::HTML5Media; |
41 |
use C4::CourseReserves qw( GetItemCourseReservesInfo ); |
47 |
use C4::CourseReserves qw( GetItemCourseReservesInfo ); |
42 |
use C4::Acquisition qw(GetOrdersByBiblionumber); |
48 |
use C4::Acquisition qw(GetOrdersByBiblionumber); |