
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/truffle-nation-logo-1.png" width="150" /></span>
<ul class="dropdown-menu animated fadeInRight m-t-xs">
<li><a href="login.php">Logout</a></li>
</ul>
</div>
<div class="logo-element"><span><img alt="image" class="img-circle" src="../img/truffle-nation-logo-1.png" width="50" /></span></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 =='course-list' || $currentPage =='course-create'){echo 'active';}?>">
<a href="#"><i class="fa fa-graduation-cap"></i> <span class="nav-label">Course</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li class="<?php if($currentPage =='course-list'){echo 'active';}?>"><a href="../course/index.php">Courses list</a></li>
<li class="<?php if($currentPage =='course-create'){echo 'active';}?>"><a href="../course/create.php">Create New Course</a></li>
</ul>
</li>
<li class="<?php if($currentPage =='student-list' || $currentPage =='past-student-list' || $currentPage =='student-create' || $currentPage =='visit-student-list'){echo 'active';}?>">
<a href="#"><i class="fa fa-user"></i> <span class="nav-label">Student</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li class="<?php if($currentPage =='visit-student-list'){echo 'active';}?>"><a href="../student/institutevisitlist.php">List of Students visiting Institute</a></li>
<li class="<?php if($currentPage =='student-list'){echo 'active';}?>"><a href="../student/index.php">List of Current Students</a></li>
<li class="<?php if($currentPage =='past-student-list'){echo 'active';}?>"><a href="../student/past-students.php">List of Past Students</a></li>
<!-- <li class="<?php if($currentPage =='student-create'){echo 'active';}?>"><a href="../student/create.php">Add New Student</a></li> -->
</ul>
</li>
<li class="<?php if($currentPage =='payments-list' || $currentPage =='outstanding-list' || $currentPage =='adjustment-entry' || $currentPage =='adjustment-entry-list'){echo 'active';}?>">
<a href="#"><i class="fa fa-calculator"></i> <span class="nav-label">Accounts</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li class="<?php if($currentPage =='payments-list'){echo 'active';}?>"><a href="../accounts/index.php">Payments List</a></li>
<li class="<?php if($currentPage =='outstanding-list'){echo 'active';}?>"><a href="../payments/outstanding-list.php">Outstandings List</a></li>
<li class="<?php if($currentPage =='adjustment-entry'){echo 'active';}?>"><a href="../accounts/adjustment-entry.php">Add Adjustment Entry</a></li>
<li class="<?php if($currentPage =='adjustment-entry-list'){echo 'active';}?>"><a href="../accounts/adjustment-entry-list.php">Adjustment Entry List</a></li>
</ul>
</li>
<li class="<?php if($currentPage =='payments'){echo 'active';}?>">
<a href="#"><i class="fa fa-calculator"></i> <span class="nav-label">Payments</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li class="<?php if($currentPage =='payments'){echo 'active';}?>"><a href="../payments/index.php">Payments</a></li>
</ul>
</li>
<li class="<?php if($currentPage =='report-batch-wise'){echo 'active';}?>">
<a href="#"><i class="fa fa-calculator"></i> <span class="nav-label">Student Report</span><span class="fa arrow"></span></a>
<ul class="nav nav-second-level collapse">
<li class="<?php if($currentPage =='report-batch-wise'){echo 'active';}?>"><a href="../report/report-batch-wise.php">Batch wise list</a></li>
</ul>
</li>
</ul>
</div>
</nav>


PK 99