Skip to content
Snippets Groups Projects
Commit c57e79b7 authored by Dorian Merz's avatar Dorian Merz
Browse files

refs #15917 [fid_bbi] conditions on payment info

* show payment note for "Volltext" links and where link type is unknown
parent 48db8eed
Branches
Tags
No related merge requests found
...@@ -21,7 +21,18 @@ ...@@ -21,7 +21,18 @@
<caption><?php if (in_array('Free',$this->driver->tryMethod('getFacetAvail'))):?> <caption><?php if (in_array('Free',$this->driver->tryMethod('getFacetAvail'))):?>
<?=$this->translate('Open Access')?> <?=$this->translate('Open Access')?>
<?php else: ?> <?php else: ?>
<?php if (!empty(array_filter($urls,
function ($elem) {
return !isset($elem['desc']) || in_array(
$elem['desc'],
[
'Volltext',
]
);
}
))):?>
<?=$this->translate('charges_may_apply')?> <?=$this->translate('charges_may_apply')?>
<?php endif;?>
<?php endif;?></caption> <?php endif;?></caption>
<tr> <tr>
<th><?=$this->transEsc("Link")?>:</th> <th><?=$this->transEsc("Link")?>:</th>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment