139 lines
4.0 KiB
PHP
139 lines
4.0 KiB
PHP
|
||
|
||
<div class="content-wrapper">
|
||
|
||
<section class="content">
|
||
<div class="row">
|
||
<div class="col-md-12">
|
||
<?php
|
||
helper('form');
|
||
$error = session()->getFlashdata('error');
|
||
if($error){
|
||
$type = "error";
|
||
echo show_alert($type, $error);
|
||
}
|
||
$success = session()->getFlashdata('success');
|
||
if($success){
|
||
$type = "success";
|
||
echo show_alert($type, $success);
|
||
}
|
||
?>
|
||
|
||
<div class="row">
|
||
<div class="col-md-12">
|
||
<?php // \Config\Services::validation()->listErrors('<div class="alert alert-danger alert-dismissable">', ' <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button></div>');
|
||
?> </div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="box">
|
||
<div class="box-header">
|
||
<center><b><h3 class="box-title">User Listing</h3></b></center>
|
||
</div>
|
||
<div class="container-fluid">
|
||
<div class="row">
|
||
<div class="col-xs-12 text-right">
|
||
<div class="form-group">
|
||
<a class="btn btn-success" href="<?php echo base_url(); ?>addNew">Add New User</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="row">
|
||
<div class="col-xs-12">
|
||
|
||
<table class="table table-hover table-bordered" id="datatable" style="background-color:#fff;font-size:12px;" >
|
||
<thead style="background-color: #ddd;">
|
||
<tr>
|
||
<th>User Id</th>
|
||
<th>User Name</th>
|
||
<th>Email</th>
|
||
<th>Contact Number</th>
|
||
<th>Designation</th>
|
||
<th>Department</th>
|
||
<th>Role Name</th>
|
||
<th>Actions</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<?php
|
||
if(!empty($userRecords))
|
||
{
|
||
foreach($userRecords as $record)
|
||
{
|
||
?>
|
||
<tr>
|
||
<td><?php echo $record->userId ?></td>
|
||
<td><?php echo $record->FirstName ?></td>
|
||
<td><?php echo $record->EmailId ?></td>
|
||
<td><?php echo $record->ContactNumber ?></td>
|
||
<td><?php echo $record->Designation ?></td>
|
||
<td><?php echo $record->DepartmentName ?></td>
|
||
<td><?php echo $record->role ?></td>
|
||
<td>
|
||
<a href="<?php echo base_url().'user/editOld?UID='.$record->userId.'&EMPID='.$record->EmpID;?>"><i class="fa fa-pencil"></i> </a>
|
||
|
||
<a onclick="deleteUser(<?php echo $record->userId;?>)"><i class="fa fa-trash"></i> </a>
|
||
</td>
|
||
</tr>
|
||
<?php
|
||
}
|
||
}
|
||
?>
|
||
</tbody>
|
||
</table>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
<script type="text/javascript" src="<?php echo base_url(); ?>public/assets/js/common.js" charset="utf-8"></script>
|
||
<script type="text/javascript">
|
||
|
||
|
||
$(function () {
|
||
|
||
$('#datatable').DataTable({
|
||
"paging": true,
|
||
"lengthChange": true,
|
||
"searching": true,
|
||
"ordering": true,
|
||
"info": true,
|
||
"autoWidth": true
|
||
|
||
});
|
||
});
|
||
|
||
|
||
|
||
function deleteUser(userid)
|
||
{
|
||
var answer = confirm(" Do you want to delete the user from the List?")
|
||
if (answer)
|
||
{
|
||
$.ajax({
|
||
data:{id:userid},
|
||
type:"POST",
|
||
url:"<?php echo base_url() ?>user/deleteUser",
|
||
success:function(data) {
|
||
if(data)
|
||
{
|
||
$('#content').loader('hide');
|
||
alert(data);
|
||
|
||
location.reload();
|
||
|
||
|
||
}
|
||
else
|
||
{
|
||
alert("Error");
|
||
}
|
||
|
||
}});
|
||
}
|
||
}
|
||
</script>
|
||
|