bibb-theme/templates/cart/contents.phtml

18 lines
634 B
PHTML
Executable File

<?php $records = $this->cart()->getRecordDetails(); if (!empty($records)): ?>
<hr/>
<ul class="list-unstyled">
<?php foreach ($records as $i => $record): ?>
<li>
<div class="checkbox">
<label>
<?=$this->record($record)->getCheckbox('cart')?>
<a title="<?=$this->transEsc('View Record')?>" href="<?=$this->recordLink()->getUrl($record)?>" data-lightbox-ignore><?=$this->escapeHtml($record->getBreadcrumb())?></a>
</label>
</div>
</li>
<?php endforeach; ?>
</ul>
<?php else: ?>
<p class="alert alert-info"><?=$this->transEsc('bookbag_is_empty')?>.</p>
<?php endif; ?>