Ejemplo n.º 1
0
<?php

/** @var string $type */
/** @var string $header  */
/** @var integer $rootCategoryId */
/** @var integer $categoryGroupId */
/** @var boolean $displayHeader */
/** @var boolean $isInSidebar */
use yii\helpers\Html;
$sidebarClass = $isInSidebar ? 'sidebar-widget' : '';
echo '<div class="categories-list ' . $sidebarClass . '">';
if ($displayHeader === true) {
    ?>
    <div class="widget-header">
        <?php 
    echo $header;
    ?>
    </div>
<?php 
}
if ($type === 'plain') {
    echo \app\widgets\PlainCategoriesWidget::widget(['root_category_id' => $rootCategoryId]);
} elseif ($type === 'tree') {
    echo \app\modules\shop\widgets\CategoriesList::widget(['rootCategory' => $rootCategoryId]);
}
echo '</div>';
Ejemplo n.º 2
0
<?php

/** @var string $type */
/** @var string $header  */
/** @var integer $rootCategoryId */
/** @var integer $categoryGroupId */
/** @var boolean $displayHeader */
/** @var boolean $isInSidebar */
/** @var string $activeClass */
/** @var boolean $activateParents */
/** @var string $activeClass */
/** @var boolean $activateParents */
use yii\helpers\Html;
$sidebarClass = $isInSidebar ? 'sidebar-widget' : '';
echo '<div class="categories-list ' . $sidebarClass . '">';
if ($displayHeader === true) {
    ?>
    <div class="widget-header">
        <?php 
    echo $header;
    ?>
    </div>
    <?php 
}
if ($type === 'plain') {
    echo \app\widgets\PlainCategoriesWidget::widget(['root_category_id' => $rootCategoryId, 'activeClass' => $activeClass, 'activateParents' => $activateParents]);
} elseif ($type === 'tree') {
    echo \app\modules\shop\widgets\CategoriesList::widget(['rootCategory' => $rootCategoryId, 'activeClass' => $activeClass, 'activateParents' => $activateParents]);
}
echo '</div>';