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 425-431
Link Here
|
425 |
<!-- TABLE RESULTS START --> |
426 |
<!-- TABLE RESULTS START --> |
426 |
<table> |
427 |
<table> |
427 |
<tr> |
428 |
<tr> |
428 |
[% IF ( AmazonCoverImages || LocalCoverImages || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] |
429 |
[% IF ( AmazonCoverImages || LocalCoverImages || ( SyndeticsCovers ) || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] |
429 |
<th> </th> |
430 |
<th> </th> |
430 |
[% END %] |
431 |
[% END %] |
431 |
<th colspan="2">Results</th> |
432 |
<th colspan="2">Results</th> |
Lines 435-441
Link Here
|
435 |
[% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %] |
436 |
[% SET MaxSearchResultsItemsPerRecordStatusCheck = Koha.Preference('MaxSearchResultsItemsPerRecordStatusCheck') %] |
436 |
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] |
437 |
[% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %] |
437 |
<tr id="row[% SEARCH_RESULT.biblionumber | html %]"> |
438 |
<tr id="row[% SEARCH_RESULT.biblionumber | html %]"> |
438 |
[% IF ( AmazonCoverImages || LocalCoverImages || IntranetCoce || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] |
439 |
[% IF ( AmazonCoverImages || LocalCoverImages || IntranetCoce || ( SyndeticsCovers ) || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] |
439 |
<td class="bookcoverimg"> |
440 |
<td class="bookcoverimg"> |
440 |
<div id="cover-slides-[% SEARCH_RESULT.biblionumber | html %]" class="cover-slides" data-biblionumber="[% SEARCH_RESULT.biblionumber | html %]"> |
441 |
<div id="cover-slides-[% SEARCH_RESULT.biblionumber | html %]" class="cover-slides" data-biblionumber="[% SEARCH_RESULT.biblionumber | html %]"> |
441 |
[% IF ( LocalCoverImages ) %][% SEARCH_RESULT.localimage | html %] |
442 |
[% IF ( LocalCoverImages ) %][% SEARCH_RESULT.localimage | html %] |
Lines 456-461
Link Here
|
456 |
</div> |
457 |
</div> |
457 |
[% END # /IF AmazonCoverImages %] |
458 |
[% END # /IF AmazonCoverImages %] |
458 |
|
459 |
|
|
|
460 |
[% IF ( SyndeticsCovers ) %] |
461 |
[% IF ( SEARCH_RESULT.normalized_isbn || SEARCH_RESULT.normalized_upc || SEARCH_RESULT.normalized_oclc ) %] |
462 |
<div id="syndetics-bookcoverimg-[% SEARCH_RESULT.biblionumber | html %]" class="cover-image syndetics-bookcoverimg"> |
463 |
<a class="p1" href="/cgi-bin/koha/catalogue/[% DetailPage | html %]?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
464 |
<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" /> |
465 |
</a> |
466 |
<div class="hint">Syndetics cover image</div> |
467 |
</div> |
468 |
[% END %] |
469 |
[% END %] |
470 |
|
459 |
[% IF ( IntranetCoce && CoceProviders && SEARCH_RESULT.normalized_isbn ) %] |
471 |
[% IF ( IntranetCoce && CoceProviders && SEARCH_RESULT.normalized_isbn ) %] |
460 |
[% coce_id = SEARCH_RESULT.normalized_ean || SEARCH_RESULT.normalized_isbn %] |
472 |
[% coce_id = SEARCH_RESULT.normalized_ean || SEARCH_RESULT.normalized_isbn %] |
461 |
[% IF ( coce_id ) %] |
473 |
[% IF ( coce_id ) %] |
462 |
- |
|
|