
PK 
<nav class="navbar-default navbar-static-side" role="navigation">
<div class="sidebar-collapse">
<ul class="nav metismenu" id="side-menu">
<li class="nav-header">
<div class="dropdown profile-element"> <span>
<img alt="image" class="img-circle" src="../img/profile_small.jpg" />
</span>
<a data-toggle="dropdown" class="dropdown-toggle" href="#">
<span class="clear"> <span class="block m-t-xs"> <strong class="font-bold">Vinay Bhardwaj</strong>
</span> <span class="text-muted text-xs block">Software Developer <b class="caret"></b></span> </span> </a>
<ul class="dropdown-menu animated fadeInRight m-t-xs">
<li><a href="#">Profile</a></li>
<li class="divider"></li>
<li><a href="#">Logout</a></li>
</ul>
</div>
<div class="logo-element">Singh World</div>
</li>
<li class="<?php if($currentPage =='dashboard'){echo 'active';}?>">
<a href="../dashboard/index.php"><i class="fa fa-th-large"></i> <span class="nav-label">Dashboards</span></a>
</li>
<li class="<?php if($currentPage =='Inventory-create' || $currentPage =='Inventory-list'){echo 'active';}?>">
<a href="#"><i class="fa fa-calculator"></i> <span class="nav-label">Inventory</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li class="<?php if($currentPage =='Inventory-list'){echo 'active';}?>"><a href="../inventory/inventory-list.php">Inventory List</a></li>
<li class="<?php if($currentPage =='Inventory-create'){echo 'active';}?>"><a href="../inventory/inventory-create.php">Create New Inventory</a></li>
</ul>
</li>
<li class="<?php if($currentPage =='Purchase-create' || $currentPage =='Purchase-list'){echo 'active';}?>">
<a href="#"><i class="fa fa-calculator"></i> <span class="nav-label">Order</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li class="<?php if($currentPage =='Purchase-list'){echo 'active';}?>"><a href="../purchase/purchase-list.php">List of Order</a></li>
<li class="<?php if($currentPage =='Purchase-create'){echo 'active';}?>"><a href="../purchase/purchase-create-new.php">New Order</a></li>
</ul>
</li>
<li class="<?php if($currentPage =='order-report' || $currentPage =='item-report'){echo 'active';}?>">
<a href="#"><i class="fa fa-calculator"></i> <span class="nav-label">Report</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li class="<?php if($currentPage =='order-report'){echo 'active';}?>"><a href="../report/index.php">Order Report</a></li>
<li class="<?php if($currentPage =='item-report'){echo 'active';}?>"><a href="../report/item-wise-report.php">Item wise Report</a></li>
</ul>
</li>
</ul>
</div>
</nav>


PK 99