ok

Mini Shell

Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/y1jobportal.in/admin/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/y1jobportal.in/admin/users-list.php

<?php include 'header.php'; ?>


<div class="page-wrapper">
	<div class="page-content">
	   <div class=" card card-body">
	       <div class="tab-content ">
<!--new order start-->
    <div class="tab-pane fade show active" id="new" role="tabpanel">
        
<a  href="users-add.php" class="btn btn-success btn-sm" style="float: right;"><i class="fa fa-plus-circle"></i> Add New Users</a>
<span class="btn btn-secondary btn-sm filter" style="float: right; margin-right: 5px;"><i class="bi bi-funnel"></i> Show/Hide Filter</span>
<b style="font-size:14px;">Users Details</b>
                    


<div class="row" style="margin: 10px 0px 10px 0px;" id="filter">
    
    <div class="col-sm-3">
        <div class="form-group">
            <label class="control-label" for="status">Status</label>
            <select name="status" class="form-control select2" style="width:100%" id="status">
                <option value="1">Active</option>
                <option value="0">In-Active</option>
                <option value="">All Status</option>
            </select>
        </div>
    </div>
    
    <div class="col-sm-3">
        <div class="form-group">
            <label for="filter_hostel_id" class="form-label required">Role</label>
		    <select class="form-control select2" id="role" name="role" >
		            <option value="">All Role</option>
                        <?php 
                            $statement = $pdo->prepare("SELECT * FROM `tbl_role` WHERE status=1");
                            $statement->execute();
                            $resultss = $statement->fetchAll(PDO::FETCH_ASSOC); 
                            foreach ($resultss as $result) { 
                        ?>
                                <option  value="<?=$result['id']?>"><?=$result['role_name']?></option>
                        <?php } ?>
		    </select>
        </div>
    </div>
</div>

<div class="row" style="margin:10px 0px 10px 0px;" >
    
</div>


<div style="overflow-x:scroll;padding: 10px;">

	    <table id="DataTable" style="width: 100% !important;">

	    <!--<table id="DataTable">-->
	        <thead>
	            <tr>
	                <th>Actions</th>
	                <th>S.No</th>
    	            <th>Name</th>
    	            <th>Username</th>
    	            <th>Password</th>
    	            <th>Role</th>
    	            <th>Mobile No</th>
    	            <th>Email Id</th>
    	            <th>Status</th>
    	        </tr>
	        </thead>
	    </table>
	    

	</div>
<!--new order end-->
			</div>
	    </div>
	</div>
</div>

<style>
    table{ width:100%;font-size:14px;font-family: SFProDisplay-Semibold;}
    th{padding:10px;font-weight:bold;}
    td{padding:7px;}
    tr{margin:5px;}
   thead,tr{
        border: 0 solid transparent;
        margin-bottom: 1.5rem;
        border-radius:5px;
        box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%);
   }.span-success{
        background: #819558;
        color: white;
        padding: 3px 6px 3px 6px;
        border-radius: 15px;
   }
   

   .breadcrumb-title {
    font-size: 20px;
    border-right: 0px solid #ffffff !important;
}
</style>




<?php include('footer.php'); ?>

<script>
<?php
$data_table = "var status = $('#status').val();
               var role  = $('#role').val();
			   var dataTable = $('#DataTable').DataTable( {									     
					processing: true,
					order:[[0,'asc']],
					serverSide: true,
					lengthMenu: [[10, 25, 50, 100], [10, 25, 50, 100]],
                    destroy:true,
                        ajax:{
    						url : 'data-tables/users-data-table.php',
    						data: {type:'get-users-details',status:status,role:role},
    						type: 'post',  
    						error: function(){ 
    							$('.example-error').html('');
    							$('#DataTable').css('display','none');
    						}
    					}
				});";

?>
$(document).ready(function() {
    getData();
    function getData(){
        <?=$data_table?>
	}
			    
	$('#status, #role').change(function() {
            getData();
        });
});

function delete_Details(id){
            var result = confirm("Confirm Want to In-Active This Details?");
            if (result) {
                    $.ajax({
                    type: 'POST',
                    url: 'api/delete.php',
                    data: {type:'soft_delete',delete_id:id,table:'tbl_user'},                  
                    success: function(response) {
                        console.log(response); 
                        emp_datas();
                    }
                });
            }
         }
                  
function DynamicActive(id){
            var result = confirm("Confirm Want to Active This Users?");
            if (result) {
                $.ajax({
                    type: 'POST',
                    url: 'api/delete.php',
                    data: {type:'dynamic_active',delete_id:id, table:'tbl_user'},                  
                    success: function(response) {
                        console.log(response); 
                        emp_datas();
                    }
                });
            }
    }
function emp_datas(){
    <?=$data_table?>
}
/***********************************/        
</script>
<script>
    $(document).ready(function(){
        $('#filter').hide();
        $('.filter').click(function(){
            $("#filter").slideToggle();
            return false;
        });
    });
</script>

Zerion Mini Shell 1.0