servermgrv2/app/Views/layouts/front/top_menu/top_menu_peripheral.php
2023-08-16 09:16:16 +09:00

14 lines
816 B
PHP

<div class="dropdown-center">
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a class="nav-link" id="navbarDarkDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">
컴퓨터주변기기<BR>구매대행
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDarkDropdownMenuLink">
<li><a class="dropdown-item <?= $viewDatas['category']->getPrimaryKey() == 24 ? "active" : "" ?>" href="/front/product?category=24">CPU</a></li>
<li><a class="dropdown-item <?= $viewDatas['category']->getPrimaryKey() == 25 ? "active" : "" ?>" href="/front/product?category=25">Memory</a></li>
<li><a class="dropdown-item <?= $viewDatas['category']->getPrimaryKey() == 26 ? "active" : "" ?>" href="/front/product?category=26">HDD(SSD)</a></li>
</ul>
</li>
</ul>
</div>