Lines 29-34
Link Here
|
29 |
[% IntranetCoce = Koha.Preference('IntranetCoce') %] |
29 |
[% IntranetCoce = Koha.Preference('IntranetCoce') %] |
30 |
[% CoceProviders = Koha.Preference('CoceProviders') %] |
30 |
[% CoceProviders = Koha.Preference('CoceProviders') %] |
31 |
[% CoceHost = Koha.Preference('CoceHost') %] |
31 |
[% CoceHost = Koha.Preference('CoceHost') %] |
|
|
32 |
[% SyndeticsCovers = Koha.Preference('SyndeticsEnabled') && Koha.Preference('SyndeticsCoverImages') %] |
32 |
|
33 |
|
33 |
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> |
34 |
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> |
34 |
<ol> |
35 |
<ol> |
Lines 423-429
Link Here
|
423 |
<!-- TABLE RESULTS START --> |
424 |
<!-- TABLE RESULTS START --> |
424 |
<table> |
425 |
<table> |
425 |
<tr> |
426 |
<tr> |
426 |
[% IF ( AmazonCoverImages || LocalCoverImages || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] |
427 |
[% IF ( AmazonCoverImages || LocalCoverImages || ( SyndeticsCovers ) || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] |
427 |
<th> </th> |
428 |
<th> </th> |
428 |
[% END %] |
429 |
[% END %] |
429 |
<th colspan="2">Results</th> |
430 |
<th colspan="2">Results</th> |
Lines 433-439
Link Here
|
433 |
[% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %] |
434 |
[% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %] |
434 |
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] |
435 |
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] |
435 |
<tr id="row[% SEARCH_RESULT.biblionumber | html %]"> |
436 |
<tr id="row[% SEARCH_RESULT.biblionumber | html %]"> |
436 |
[% IF ( AmazonCoverImages || LocalCoverImages || IntranetCoce || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] |
437 |
[% IF ( AmazonCoverImages || LocalCoverImages || IntranetCoce || ( SyndeticsCovers ) || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] |
437 |
<td class="bookcoverimg"> |
438 |
<td class="bookcoverimg"> |
438 |
<div id="cover-slides-[% SEARCH_RESULT.biblionumber | html %]" class="cover-slides" data-biblionumber="[% SEARCH_RESULT.biblionumber | html %]"> |
439 |
<div id="cover-slides-[% SEARCH_RESULT.biblionumber | html %]" class="cover-slides" data-biblionumber="[% SEARCH_RESULT.biblionumber | html %]"> |
439 |
[% IF ( LocalCoverImages ) %][% SEARCH_RESULT.localimage | html %] |
440 |
[% IF ( LocalCoverImages ) %][% SEARCH_RESULT.localimage | html %] |
Lines 454-459
Link Here
|
454 |
</div> |
455 |
</div> |
455 |
[% END # /IF AmazonCoverImages %] |
456 |
[% END # /IF AmazonCoverImages %] |
456 |
|
457 |
|
|
|
458 |
[% IF ( SyndeticsCovers ) %] |
459 |
[% IF ( SEARCH_RESULT.normalized_isbn || SEARCH_RESULT.normalized_upc || SEARCH_RESULT.normalized_oclc ) %] |
460 |
<div id="syndetics-bookcoverimg-[% SEARCH_RESULT.biblionumber | html %]" class="cover-image syndetics-bookcoverimg"> |
461 |
<a class="p1" href="/cgi-bin/koha/catalogue/[% DetailPage | html %]?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
462 |
<img src="https://secure.syndetics.com/index.aspx?isbn=[% SEARCH_RESULT.normalized_isbn | html %]/SC.GIF&client=[% Koha.Preference('SyndeticsClientCode') | html %]&type=xw10&upc=[% SEARCH_RESULT.normalized_upc | html %]&oclc=[% SEARCH_RESULT.normalized_oclc | html %]" alt="Cover from Syndetics" /> |
463 |
</a> |
464 |
<div class="hint">Syndetics cover image</div> |
465 |
</div> |
466 |
[% END %] |
467 |
[% END %] |
468 |
|
457 |
[% IF ( IntranetCoce && CoceProviders && SEARCH_RESULT.normalized_isbn ) %] |
469 |
[% IF ( IntranetCoce && CoceProviders && SEARCH_RESULT.normalized_isbn ) %] |
458 |
[% coce_id = SEARCH_RESULT.normalized_ean || SEARCH_RESULT.normalized_isbn %] |
470 |
[% coce_id = SEARCH_RESULT.normalized_ean || SEARCH_RESULT.normalized_isbn %] |
459 |
[% IF ( coce_id ) %] |
471 |
[% IF ( coce_id ) %] |
460 |
- |
|
|