Skip to content
Snippets Groups Projects
Commit 8a6760dc authored by Alexander Purr's avatar Alexander Purr Committed by Robert Lange
Browse files

refs #20870 [finc] ajax resolver links now rendered as external links

parent b7f27737
No related merge requests found
...@@ -20,7 +20,14 @@ ...@@ -20,7 +20,14 @@
<span class="last"></span> <span class="last"></span>
</div> </div>
<?php /* finc-specific change #7986 - END */ ?> <?php /* finc-specific change #7986 - END */ ?>
<a href="<?=$this->escapeHtmlAttr($link['href'])?>" title="<?=isset($link['service_type'])?$this->escapeHtmlAttr($link['service_type']):''?>"<?=!empty($link['access'])?' class="access-'.$link['access'].'"':''?>><?=isset($link['title'])?$this->escapeHtml($link['title']):''?></a> <br /> <?= $this->externalLink(
$this->escapeHtmlAttr($link['href']),
$link['title'] ?? '',
[
'title' => $link['service_type'] ?? '',
'class' => !empty($link['access']) ? 'access-' . $link['access'] : ''
]
) ?> <br />
<?php /* finc-specific change #5334 - CK */ ?> <?php /* finc-specific change #5334 - CK */ ?>
<small> <small>
<?= isset($link['coverage']) ? $this->escapeHtml($link['coverage']) : '' ?> <?= isset($link['coverage']) ? $this->escapeHtml($link['coverage']) : '' ?>
......
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