13 lines
603 B
PHP
13 lines
603 B
PHP
<!-- left menu start -->
|
|
<link href="/css/front/left_menu.css" media="screen" rel="stylesheet" type="text/css" />
|
|
<div id="left_menu">
|
|
<div class="parent">
|
|
<div>-</div>
|
|
<div><?= $viewDatas['parent_category']->getTitle() ?></div>
|
|
</div>
|
|
<?php foreach ($viewDatas['sibling_categorys'] as $category) : ?>
|
|
<div class="sibling <?php if ($viewDatas['category']->getPrimaryKey() == $category->getPrimaryKey()) : ?>active<?php endif ?>">
|
|
<a href=" <? current_url() . '?category=' . $category->getCategory_Uid() ?>"><?= $category->getTitle() ?></a>
|
|
</div>
|
|
<?php endforeach ?>
|
|
</div>
|