0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.145.85.233


Current Path : /proc/thread-self/root/var/www/html/gcg/src/
Upload File :
Current File : //proc/thread-self/root/var/www/html/gcg/src/freeze_module_at_admin_college_subject.php

<?php 
	function getFmacasSubjectDetails($aobj_context)
	{
		session_start();	
		$college_code = $_SESSION['collcode'];
		$user_type = $_SESSION['user_type'];
		$userid = $_SESSION['user_id'];
		$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);  	
		$degree = trim($aobj_context->mobj_data["degree"]); 	
		$exam_no = trim($aobj_context->mobj_data["exam_no"]); 	
		$test = trim($aobj_context->mobj_data["test"]); 
		
		$query="Select FUNIVCODE,FUNIVNAME,pdf_logo_path,DATE_FORMAT(NOW(),'%d/%m/%Y') as date from control";
		$rst = $aobj_context->mobj_db->GetRow($query);
		$univcode = $rst[FUNIVCODE];
		
		$select_category_cond="select * from markentrycodition";
		$cat_cond='';
		$lobj_select_category_cond = $aobj_context->mobj_db->GetRow($select_category_cond);
		
		if($lobj_select_category_cond['Value']!='0' || $lobj_select_category_cond['Value']!=0) 
			$cat_cond=" and ".$lobj_select_category_cond['Value'];
		
		$freezcnd = "and  (IFNULL(subject.FINTASS,'F') = 'T' or IFNULL(subject.FSUBSIDARY,'F') = 'T')";
		
		if($univcode == '018' )
			$freezcnd = "and  ((IFNULL(subject.FINTASS,'F') = 'T' OR IFNULL(subject.FTHEORY,'F') <> 'T') or IFNULL(subject.FSUBSIDARY,'F') = 'T')";
		
		if(strtoupper($_SESSION['usr']) =='ADMIN' || strtoupper($_SESSION['usr']) =='SUPER')
		{
			$ltable = 'and 1=1';
		}
		else
		{
			$ltable = " 
			inner join usersub us on collia.fdegree = us.fdegree and instr(us.fsubcode,collia.fsubcode) > 0 and collia.fcollcode = us.fcollegecode and us.fuser = '{$userid}'";
		}
		
		
		$query = "select subject.FCSUBCODE,concat(subject.fsubname,', ',subject.fssubname) as fsubname,ifnull(ffreezed,'') as ffreezed,ifnull(collia.$test,'') as test from 
		subject inner join collia  on subject.FDEGREE = collia.fdegree and subject.FEXAMNO = collia.fexamno 
		and  subject.FCSUBCODE = collia.fsubcode and collia.fcollcode = '{$college_code}'
			{$ltable}
		where subject.fdegree = '{$degree}' and subject.fexamno='{$exam_no}' {$freezcnd}";
		$obj_get_details = $aobj_context->mobj_db->GetAll($query);
		//var_dump($query);die();
		for($m=0;$m<count($obj_get_details);$m++)
		{		
			$FSUBCODE=$obj_get_details[$m]['FCSUBCODE']; 
			$FSUBNAME=$obj_get_details[$m]['fsubname'];			 
			//$pos = $obj_get_details[$m]['ffreezed'];
			$pos = $obj_get_details[$m]['test'];
			$disablefreeze = '';
			$disablestatus = '';
			if($univcode == '018')
			{	
				$query = "select sum(if(fmarks = -1,1,0)) as markspending from marks 
				where fcollcode='{$college_code}' and fdegree = '{$degree}'
				and FEXAMNO ='{$exam_no}' and FSUBCODE='{$FSUBCODE}'";
				$rst = $aobj_context->mobj_db->GetRow($query);
			
				if($rst[markspending] != 0)
				{
					$disablefreeze = 'disabled';
					$disablestatus = 'pending';
					$disableAllck = 'disabled=true';
				}	
			}
				
			if($pos == 'T')
			{
				$start_val = '';
				$end_val = '';
				$exam_removed_subject_code =$start_val.$end_val;
				$fc_checked = "checked  disabled=true;";
				if(strtolower($user_type)=='superuser')	
				{
					if($univcode == '018')
					{
						if($disablefreeze !='')
						{	
							$fc_checked = 'checked disabled=true';
						}	
						else
							$fc_checked=" checked";
					}
					else
					{
						$fc_checked=" checked";
					}		
				}
			}
			else
			{
				if($univcode == '018') 
				{	
					if($disablefreeze !='')
						$fc_checked = 'disabled';
					else
						$fc_checked = '';
				}
				else
					$fc_checked = '';	
			}		
			if($k%2==0)
			{
				$class='tbl_row';
			}
			else
			{
				$class='tbl_row1'; 
			}
			
			$edy_data.="<tr class='ui-widget-content jqgrow'>";
			$edy_data.="<td class='tbl_row_new' align='center' style='border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; padding:2px;' id='fmacas_FSUBCODE_{$m}'>{$FSUBCODE} </td>";
			$edy_data.="<td class='tbl_row_new' align='left'   style='border-right:1px solid #C5DBEC;  padding:2px;' id='fmacas_FSUBNAME_{$m}'>{$FSUBNAME} </td>";
			$edy_data.="<td class='tbl_row_new' align='center' style='border-right:1px solid #C5DBEC;  padding:2px;'><input  id='fmacas_FCSTATUS_check_{$m}' type=checkbox {$fc_checked} ><span style='color:red;'>{$disablestatus}</span></td>";
			$edy_data.="<td class='tbl_row_new' align='center' style='border-right:1px solid #C5DBEC;  padding:2px;display:none;'><input  id='fmacas_FCSTATUS_checkH_{$m}' type=checkbox {$fc_checked} ></td>";	
			$edy_data.="</tr>";   
			$k++;
		}
		$check_all="";
		if(strtolower($user_type)=='superuser')	
			$check_all="<input type='checkbox' onclick='checkAllFamuFcSubjects(this.id);' {$disableAllck} id=Fmacas_fc_check> ";
	
		$e_data="<table  width='90%'  class='tr_ventor_row' align='center' cellspacing='0' cellpadding='0' border='0' >";
		$e_data.="<th align='left' colspan='3' class='ui-jqgrid-titlebar ui-widget-header ui-corner-tl ui-corner-tr ui-helper' style='font-size:12px; padding-left:6px; height:22px;'>Subject Freeze Details </th>";		
		$e_data.="<tr  class='ui-state-default ui-jqgrid-hdiv'>";
		$e_data.="<td  align=center style='padding:2px; width:24px; border-bottom:1px solid #C5DBEC; border-left:1px solid #C5DBEC; border-right:1px solid #C5DBEC; border-bottom:1px solid #C5DBEC;'>Sub Code</td>";
		$e_data.="<td align=center  style='padding:2px;  width:60px; border-bottom:1px solid #C5DBEC;border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC;  border-bottom:1px solid #C5DBEC;'>Sub Name</td>";
		$e_data.="<td  align=center style='padding:2px; width:20px; border-bottom:1px solid #C5DBEC; border-left:0px solid #C5DBEC; border-right:1px solid #C5DBEC;  border-bottom:1px solid #C5DBEC;'>Freeze{$check_all}</td>";//
		$e_data.="</tr>";		
		
		$arr['html_data']=$e_data.$edy_data;		  
		$arr['total_count']=$m;	
		$arr['rem_sub']=trim($exam_removed_subject_code);	
		
		if($obj_get_details)	
	      echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); 
	    else
	      echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure");
		return;
		
	}
function savefreezeModuleAtAdminCollegeSubject($aobj_context)
{
	session_start();
	$college_code = $_SESSION['collcode'];
	$realname = $_SESSION['realname'];
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
	$format_file= $aobj_context->main_src."/src/format.php";
	include($format_file);
	$clientIp ='';
	
		if (!empty($_SERVER['HTTP_X_REAL_IP'])) 
			 $_SERVER['HTTP_X_REAL_IP'];
		else if (!empty($_SERVER['HTTP_CLIENT_IP'])) 
			 $clientIp = $_SERVER['HTTP_CLIENT_IP'];
		else if (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
				$clientIp = $_SERVER['HTTP_X_FORWARDED_FOR'];
		else 
			 $clientIp = $_SERVER['REMOTE_ADDR'];	
			 
	$degree=trim($aobj_context->mobj_data["degree"]);
	$test=trim($aobj_context->mobj_data["test"]);
	// /var_dump($test);
	$examno=trim($aobj_context->mobj_data["exam_no"]);
	$rem_sub=trim($aobj_context->mobj_data["rem_sub"]);
	$rem_unsub=trim($aobj_context->mobj_data["rem_unsub"]);
	$user_id = $_SESSION['user_id'];
	if($rem_unsub !='')
	{	

		if($test == 'ftest1')
		{
			$cnd = "FFREEZE11 = NULL,FFREEZE12 = NULL";
		}else if($test == 'ftest2')
		{
			$cnd = "FFREEZE21 = NULL,FFREEZE22 = NULL";
		}
		else if($test == 'ftest3')
		{
			$cnd = "FFREEZE31 = NULL,FFREEZE32 = NULL";
		}

		

		$unfzsub = $rem_unsub;
		$rem_unsub = "'".str_replace('*',"','",$rem_unsub);
		$rem_unsub = substr($rem_unsub,0,strlen($rem_unsub)-2);
		$update_fcstatus = "update collia set $test = null, ffreezedate =now(),
		ffreezeuser = '{$user_id}', ffreezeip = '{$clientIp}'
		WHERE fcollcode='{$college_code}' and fdegree='{$degree}' 
		and fexamno = '{$examno}' and fsubcode in ({$rem_unsub})";  
		$obj_update_fcstatus = $aobj_context->mobj_db->Execute($update_fcstatus);

		$query = "update marks set $cnd
		WHERE fcollcode='{$college_code}' and fdegree='{$degree}' 
		and fexamno = '{$examno}' and fsubcode in ({$rem_unsub})";  
		$res = $aobj_context->mobj_db->Execute($query);
		
		$query = "insert into userlog values('{$user_id}','{$realname}',now(),DATE_FORMAT(now(),'%H:%i:%s'),'{$college_code}*{$degree}*{$examno}*{$unfzsub}',null,'UFZ*IA')";
		$rst = $aobj_context->mobj_db->Execute($query); 	
	}	
	if($rem_sub !='')
	{	

		if($test == 'ftest1')
		{
			$cnd = "FFREEZE11 = 'T',FFREEZE12 = 'T' ";
		}else if($test == 'ftest2')
		{
			$cnd = "FFREEZE21 = 'T',FFREEZE22 = 'T'";
		}
		else if($test == 'ftest3')
		{
			$cnd = "FFREEZE31 = 'T',FFREEZE32 = 'T'";
		}

		

		$fzsub = $rem_sub;
		$rem_sub = "'".str_replace('*',"','",$rem_sub);
		$rem_sub = substr($rem_sub,0,strlen($rem_sub)-2);
		$update_fcstatus = "update collia set $test = 'T', ffreezedate =now(),
		ffreezeuser = '{$user_id}', ffreezeip = '{$clientIp}'
		WHERE fcollcode='{$college_code}' and fdegree='{$degree}' 
		and fexamno = '{$examno}' and fsubcode in ({$rem_sub})"; 
		//var_dump($update_fcstatus); 
		$obj_update_fcstatus = $aobj_context->mobj_db->Execute($update_fcstatus);

		$query = "update marks set $cnd
		WHERE fcollcode='{$college_code}' and fdegree='{$degree}' 
		and fexamno = '{$examno}' and fsubcode in ({$rem_sub})";  
		//var_dump($query); 
		$res = $aobj_context->mobj_db->Execute($query);

		$query = "insert into userlog values('{$user_id}','{$realname}',now(),DATE_FORMAT(now(),'%H:%i:%s'),'{$college_code}*{$degree}*{$examno}*{$fzsub}',null,'FZ*IA')";
		$rst = $aobj_context->mobj_db->Execute($query); 	
	}
	

	if($obj_update_fcstatus) 
	{
			$arr='Updated Successfully';
			 echo $aobj_context->mobj_output->ToJSONEnvelope($arr,0,"success"); 
			 return;
	}	
	else
	{
			$arr='Updatation Failed';
			echo $aobj_context->mobj_output->ToJSONEnvelope($arr,-1,"Failure");
		   return;
	}	
}





?>