18 lines
619 B
PHTML
Executable File
18 lines
619 B
PHTML
Executable File
<? $records = $this->cart()->getRecordDetails(); if (!empty($records)): ?>
|
|
<hr/>
|
|
<ul class="list-unstyled">
|
|
<? 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>
|
|
<? endforeach; ?>
|
|
</ul>
|
|
<? else: ?>
|
|
<p class="alert alert-info"><?=$this->transEsc('bookbag_is_empty')?>.</p>
|
|
<? endif; ?>
|