2014-05-14 13:24:20 +00:00
|
|
|
<?php if ($items): ?>
|
|
|
|
|
<ul>
|
|
|
|
|
<?php foreach ($items as $item): ?>
|
2017-06-10 05:42:24 +00:00
|
|
|
<li class="group" data-status="<?= $this->getCollapseStatus($item->pluginClass, false) ? 'expanded' : 'collapsed' ?>" data-group-id="<?= e($item->pluginClass) ?>">
|
2014-05-14 13:24:20 +00:00
|
|
|
<div class="group">
|
2014-08-05 07:41:59 +00:00
|
|
|
<h4><a href="#"><?= e(trans($item->title)) ?></a></h4>
|
2014-05-14 13:24:20 +00:00
|
|
|
<i class="<?= $item->icon ?>"></i>
|
2014-08-05 07:41:59 +00:00
|
|
|
<span class="description"><?= e(trans($item->description)) ?></span>
|
2014-05-14 13:24:20 +00:00
|
|
|
</div>
|
|
|
|
|
<?= $this->makePartial('component_list', ['components'=>$item->items]) ?>
|
|
|
|
|
</li>
|
|
|
|
|
<?php endforeach ?>
|
|
|
|
|
</ul>
|
|
|
|
|
<?php else: ?>
|
2014-08-12 22:01:18 +00:00
|
|
|
<p class="no-data"><?= e(trans('cms::lang.component.no_records')) ?></p>
|
2014-05-14 13:24:20 +00:00
|
|
|
<?php endif ?>
|