ok

Mini Shell

Direktori : /home2/selectio/public_html/pvmatricschool.com/admin/data-tables/
Upload File :
Current File : /home2/selectio/public_html/pvmatricschool.com/admin/data-tables/gallery-data-table.php

<?php 
ob_start();
session_start();
include"../config/config.php";
$allPermissions=$_SESSION['permission'];

$requestData= $_REQUEST;


/*Fetch Database column Details*/
        $columns = array( 
            0 =>'id',
            1 =>'image_name',
            2 =>'id',
            3 =>'type',
            4 =>'id',
            5 =>'image',
            6 =>'id'
            
        );
        
$conditions="";

/*$department=$_REQUEST['department'];

if(!empty($department)){
    $conditions.=" and h.departement  ='$department'";
}*/
        
/*Fetch All Data Start*/        
        
    	$statement = $pdo->prepare("SELECT h.* FROM gallery_table h where h.id!=0 ".$conditions." ORDER BY h.id DESC");
		$statement->execute();
		$query = $statement->fetchAll(PDO::FETCH_ASSOC);
		$totalData = $statement->rowCount();
        $totalFiltered = $totalData;
/*Fetch All Data End*/       
        
/*Fetch Filter Data Start*/    
         $sql="SELECT h.* FROM gallery_table h where h.id!=0".$conditions;
         
        if( !empty($_REQUEST['search']) ) 
        {   
        	$sql.=" AND ( h.image_name LIKE '%".$_REQUEST['search']."%') ";  
        }
        
/*Fetch Filter Data End*/       
        


         $sql.=" ORDER BY ". $columns[$requestData['order'][0]['column']]."   ".$requestData['order'][0]['dir']."  LIMIT ".$requestData['start']." ,".$requestData['length']."   ";
       	
        $statement = $pdo->prepare($sql);
        $statement->execute();
		$query = $statement->fetchAll(PDO::FETCH_ASSOC);

$data = array();
$i=1;
foreach( $query as $row ) {  // preparing an array
	$nestedData=array(); 
	
	$action= "<div class='text-center'><div class='btn-group'>";
	 
	 if($_SESSION['hrm']['id']==1 || $allPermissions['gallery']['update']=="1"){                   
		               $action.=" <a style='padding: 6px;margin-right: 3px;' href='gallery-edit.php?id=".$row["id"]."' title='Edit Gallery' class='tip btn btn-warning btn-xs'>
		                    <i class='fa fa-edit'></i>
		                </a>";
	}	                
    if($_SESSION['hrm']['id']==1 || $allPermissions['gallery']['delete']=="1"){	  
        $r="'".$row["image"]."'";
		                $action.='<button style="padding: 6px;margin-right: 3px;" title="Delete Gallery Details" onClick="delete_gallery('.$row["id"].','.$r.')" class="tip btn btn-danger btn-xs">
		                    <i class="fa fa-trash-o"></i>
		                </button>';
	}
		 	$action.="</div></div>";
		 	$nestedData[] = $action;	 
		 
		 
	$nestedData[] = $i;
	$nestedData[] = $row["image_name"];
	if($row["type"]==1)
	{
	    $nestedData[] ="CIVIL";
	 }
	 else if($row["type"]==2)
	 {
	     $nestedData[] ="EEE";
	 }
	 else if($row["type"]==3)
	 {
	     $nestedData[] ="MECH";
	 }
	 else if($row["type"]==4)
	 {
	     $nestedData[] ="CSE";
	 }
	 else if($row["type"]==5)
	 {
	     $nestedData[] ="ECE";
	 }
	 else if($row["type"]==6)
	 {
	     $nestedData[] ="BME";
	 }
	 else if($row["type"]==7)
	 {
	     $nestedData[] ="IT";
	 }
	 else
	 {
	      $nestedData[] ="AI & DS";
	 }
	 $nestedData[] = "<img src='".$row["image"]."' class='img-thumbnail' alt='' style='height: 90px;'>";
	$data[] = $nestedData;
	$i++;
}

$json_data = array(
			"draw"            => intval( $requestData['draw'] ),  
			"recordsTotal"    => intval( $totalData ),  
			"recordsFiltered" => intval( $totalFiltered ), 
			"data"            => $data   
			);

echo json_encode($json_data); 




?>

Zerion Mini Shell 1.0