16 lines
714 B
HTML
16 lines
714 B
HTML
<?php if ($items): ?>
|
|
<ul>
|
|
<?php foreach ($items as $item): ?>
|
|
<li class="group" data-status="<?= $this->getGroupStatus($item->pluginClass) ? 'expanded' : 'collapsed' ?>" data-group-id="<?= e($item->pluginClass) ?>">
|
|
<div class="group">
|
|
<h4><a href="#"><?= e($item->title) ?></a></h4>
|
|
<i class="<?= $item->icon ?>"></i>
|
|
<span class="description"><?= e($item->description) ?></span>
|
|
</div>
|
|
<?= $this->makePartial('component_list', ['components'=>$item->items]) ?>
|
|
</li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
<?php else: ?>
|
|
<p class="no-data"><?= trans('cms::lang.component.no_records') ?></p>
|
|
<?php endif ?> |