2021-05-08 11:44:47 +02:00
|
|
|
<?php $fulltextSearch = $this->params()->fromQuery('fulltext_search'); ?>
|
|
|
|
<?php echo $this->hyperlink(
|
|
|
|
$this->translate('Advanced item set search'),
|
|
|
|
$this->url(null, ['action' => 'item-sets-advanced', 'class' => 'advanced-search'], ['query' => $this->params()->fromQuery()], true),
|
|
|
|
['class' => 'advanced-search']
|
|
|
|
); ?>
|
|
|
|
|
2021-10-08 00:13:54 +02:00
|
|
|
<h3 class="item-set-resutls-title"><?php echo sprintf($this->translate('Item set results for "%s"'), $fulltextSearch); ?></h3>
|
2021-05-08 11:44:47 +02:00
|
|
|
|
|
|
|
<?php echo $this->pagination(); ?>
|
|
|
|
|
|
|
|
<div class="item-set results">
|
|
|
|
<ul>
|
|
|
|
<?php foreach ($itemSets as $itemSet): ?>
|
|
|
|
<?php $sites = $itemSet->sites(); ?>
|
|
|
|
<li>
|
|
|
|
<span class="result-title"><?php echo $itemSet->displayTitle(); ?></span>
|
|
|
|
<ul>
|
|
|
|
<?php foreach ($sites as $site): ?>
|
|
|
|
<li><?php echo $this->hyperlink($site->title(), $itemSet->siteUrl($site->slug())); ?></li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php echo $this->pagination(); ?>
|