siddharth_application/application/views/employeeListing.php
2017-03-29 10:45:36 +05:30

112 lines
4.8 KiB
PHP

<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
<CENTER>EMPLOYEE LIST</CENTER>
</h1>
</section>
<section class="content">
<div class="row">
<div class="col-xs-12 text-right">
<div class="form-group">
<a class="btn btn-primary" href="<?php echo base_url(); ?>addemployee">Add New</a>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="box">
<div class="box-header">
<CENTER><h3 class="box-title">Employee List</h3></CENTER>
<div class="box-tools">
<form action="<?php echo base_url() ?>employeeListing" method="POST" id="searchList">
<div class="input-group">
<input type="text" name="searchText" value="<?php echo $searchText; ?>" class="form-control input-sm pull-right" style="width: 150px;" placeholder="Search"/>
<div class="input-group-btn">
<button class="btn btn-sm btn-default searchList"><i class="fa fa-search"></i></button>
</div>
</div>
</form>
</div>
</div><!-- /.box-header -->
<div class="box-body table-responsive no-padding">
<table class="table table-hover">
<tr>
<th>Emp ID</th>
<th>First Name</th>
<th>Last Name</th>
<th>Date of Birth</th>
<th>Contact Number</th>
<th>Email ID</th>
<th>Date of Joining</th>
<th>Role</th>
<th>Address1</th>
<th>Address2</th>
<th>Place</th>
<th>City</th>
<th>State</th>
<th>Pin</th>
<th>DepartmentName</th>
<th>User_Comments</th>
<th>Edit</th>
</tr>
<?php
if(!empty($userRecords))
{
foreach($userRecords as $record)
{
?>
<tr>
<td><?php echo $record->EmpID ?></td>
<td><?php echo $record->FirstName ?></td>
<td><?php echo $record->LastName ?></td>
<td><?php echo $record->DateofBirth ?></td>
<td><?php echo $record->ContactNumber ?></td>
<td><?php echo $record->EmailId ?></td>
<td><?php echo $record->DateofJoining ?></td>
<td><?php echo $record->role ?></td>
<td><?php echo $record->Address1 ?></td>
<td><?php echo $record->Address2 ?></td>
<td><?php echo $record->Place ?></td>
<td><?php echo $record->City ?></td>
<td><?php echo $record->State ?></td>
<td><?php echo $record->Pin ?></td>
<td><?php echo $record->DepartmentName ?></td>
<td><?php echo $record->User_Comments ?></td>
<td>
<a href="<?php echo base_url().'employeedetails/editOldemployee/'.$record->EmpID; ?>"><i class="fa fa-pencil"></i>&nbsp;&nbsp;&nbsp;</a>
<a href="<?php echo base_url().'employeedetails/viewemployee/'.$record->EmpID; ?>"><i class="fa fa-eye"></i>&nbsp;&nbsp;&nbsp;</a>
<!-- <a href="#" data-userid="<?php echo $record->userId; ?>" class="deleteUser"><i class="fa fa-trash"></i>&nbsp;&nbsp;&nbsp;</a>-->
</td>
</tr>
<?php
}
}
?>
</table>
</div><!-- /.box-body -->
<div class="box-footer clearfix">
<?php echo $this->pagination->create_links(); ?>
</div>
</div><!-- /.box -->
</div>
</div>
</section>
</div>
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('ul.pagination li a').click(function (e) {
e.preventDefault();
var link = jQuery(this).get(0).href;
var value = link.substring(link.lastIndexOf('/') + 1);
jQuery("#searchList").attr("action", baseURL + "employeeListing/" + value);
jQuery("#searchList").submit();
});
});
</script>