|
Lines 31-36
Link Here
|
| 31 |
[% IntranetCoce = Koha.Preference('IntranetCoce') %] |
31 |
[% IntranetCoce = Koha.Preference('IntranetCoce') %] |
| 32 |
[% CoceProviders = Koha.Preference('CoceProviders') %] |
32 |
[% CoceProviders = Koha.Preference('CoceProviders') %] |
| 33 |
[% CoceHost = Koha.Preference('CoceHost') %] |
33 |
[% CoceHost = Koha.Preference('CoceHost') %] |
|
|
34 |
[% SyndeticsCovers = Koha.Preference('SyndeticsEnabled') && Koha.Preference('SyndeticsCoverImages') %] |
| 34 |
|
35 |
|
| 35 |
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> |
36 |
<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> |
| 36 |
<ol> |
37 |
<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 || AdlibrisEnabled || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] |
429 |
[% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled || IntranetCoce || 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 || AdlibrisEnabled || IntranetCoce || (Koha.Preference('CustomCoverImages') && Koha.Preference('CustomCoverImagesURL')) ) %] |
439 |
[% IF ( AmazonCoverImages || LocalCoverImages || AdlibrisEnabled || 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 463-468
Link Here
|
| 463 |
</div> |
464 |
</div> |
| 464 |
[% END # /IF AmazonCoverImages %] |
465 |
[% END # /IF AmazonCoverImages %] |
| 465 |
|
466 |
|
|
|
467 |
[% IF ( SyndeticsCovers ) %] |
| 468 |
[% IF ( SEARCH_RESULT.normalized_isbn || SEARCH_RESULT.normalized_upc || SEARCH_RESULT.normalized_oclc ) %] |
| 469 |
<div id="syndetics-bookcoverimg-[% SEARCH_RESULT.biblionumber | html %]" class="cover-image syndetics-bookcoverimg"> |
| 470 |
<a class="p1" href="/cgi-bin/koha/catalogue/[% DetailPage | html %]?biblionumber=[% SEARCH_RESULT.biblionumber |url %]"> |
| 471 |
<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" /> |
| 472 |
</a> |
| 473 |
<div class="hint">Syndetics cover image</div> |
| 474 |
</div> |
| 475 |
[% END %] |
| 476 |
[% END %] |
| 477 |
|
| 466 |
[% IF ( IntranetCoce && CoceProviders && SEARCH_RESULT.normalized_isbn ) %] |
478 |
[% IF ( IntranetCoce && CoceProviders && SEARCH_RESULT.normalized_isbn ) %] |
| 467 |
[% coce_id = SEARCH_RESULT.normalized_ean || SEARCH_RESULT.normalized_isbn %] |
479 |
[% coce_id = SEARCH_RESULT.normalized_ean || SEARCH_RESULT.normalized_isbn %] |
| 468 |
[% IF ( coce_id ) %] |
480 |
[% IF ( coce_id ) %] |
| 469 |
- |
|
|