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.146.65.134


Current Path : /var/www/oasis/Report_details_old/
Upload File :
Current File : /var/www/oasis/Report_details_old/cntDeclaration.php

<?php
$main_src=substr($_SERVER['SCRIPT_FILENAME'],0,strlen($_SERVER['SCRIPT_FILENAME'])-7);
//$pdf_writer_class =$main_src."/tarka_pdf/fpdf.php";
$pdf_writer_class =$main_src."/tcpdf/tcpdf.php";
require_once($pdf_writer_class);
ini_set('memory_limit','900M');
ini_set('max_execution_time',0);

class MYPDF extends TCPDF {
    public $aobj_context;
     
    public function setData($aobj_context){
    	$this->aobj_context = $aobj_context;
    }
    public function Header() {
        // get the current page break margin
        $bMargin = $this->getBreakMargin();
        // get current auto-page-break mode
        $auto_page_break = $this->AutoPageBreak;
        // disable auto-page-break
        $this->SetAutoPageBreak(false, 0);
        // set bacground image

        $this->SetMargins(10,35,20,true);	
		$this->SetFillColor(248, 248 ,255);		
		$img_path = $this->aobj_context->main_src."/".$this->aobj_context->mobj_data["db"]."/img/logo.jpg";
		
		if(file_exists($img_path)) 
			$this->Image($img_path,6,6,20,20);
		
		$this->SetFont('Times','B',13);
		$this->SetY(5);
		$this->Cell(0,4,$this->aobj_context->FUNIVNAME,0,1,'C');
		//state
		$this->SetFont('Times','',11);
		$this->Cell(0,4,$this->aobj_context->s_state,0,1,'C');
		$this->SetFont('Times','B',12);
		$this->Cell(0,4,'College : '.$this->aobj_context->col_name,0,1,'C');
				 
		$this->SetFont('Times','B',12);
		$this->Ln(1);
		
		$cur_year = date("Y");
		$this->Cell(0,5,'Examination Center Declaration','0',1,'C');
		
		$this->Ln(1);
        // restore auto-page-break status
        $this->SetAutoPageBreak($auto_page_break, $bMargin);
        // set the starting point for the page content    
    }

    public function Footer() 
    {
        $this->SetY(-15);
        $this->SetFont('helvetica', 'I', 8);
        $this->Cell(50, 10,'IP : '.$_SERVER["REMOTE_ADDR"], 0, 0, 'L');
        $this->Cell(80, 10,'Date : ' .$this->aobj_context->current_date, 0, 0, 'C');

        $this->Cell(70, 10,'Page ' .$this->getPageNumGroupAlias().'/'.$this->getPageGroupAlias(), 0, 1, 'R');
    }
}

class AddmissionApplication
{	
	function DefaultConstructor($aobj_context)
	{
		$this->aobj_context=$aobj_context;
		//$this->pdf=  new FPDF();
		$this->collcode=$_SESSION['collcode'];
		$this->degree = $aobj_context->mobj_data["degree_code"];
		$this->ip=$_SERVER["REMOTE_ADDR"];
		$get_date="select DATE_FORMAT(now(), '%d/%m/%Y') as now_date";
		$obj=$this->aobj_context->mobj_db->GetRow($get_date);

		$get_coll_name="select FUNIVNAME as 'FUNIVNAME',FUNIVCODE,
		FUNIVADD1 as 'state', pdf_logo_path,
		ifnull(FEXAMAPPREQ,'F') as FEXAMAPPREQ From control";

		$lobj_get_coll_name=$this->aobj_context->mobj_db->GetRow($get_coll_name);
		
		$aobj_context->FUNIVNAME=$lobj_get_coll_name['FUNIVNAME'];
		$aobj_context->s_state=$lobj_get_coll_name['state'];
		$aobj_context->pdf_logo_path=$lobj_get_coll_name['pdf_logo_path'];
		$aobj_context->FEXAMAPPREQ=$lobj_get_coll_name['FEXAMAPPREQ'];
		$aobj_context->FUNIVCODE=$lobj_get_coll_name['FUNIVCODE']; 

		$get_college_name="select concat(fcollcode, ' - ',FCOLLNAME,', ',FTOWN) as col_name from college where FCOLLCODE='{$this->collcode}'";
		$lobj_get_college_name = $this->aobj_context->mobj_db->GetRow($get_college_name);
		$aobj_context->col_name = $lobj_get_college_name['col_name'];
		$this->aobj_context->current_date =  $obj['now_date'];

		$this->current_date = $obj['now_date'];

		
		
		$lobj_get_degree_name = $this->aobj_context->mobj_db->GetRow($get_degree_name);
		$aobj_context->degree = $lobj_get_degree_name['degree'];
		
		$this->pdf= new MYPDF('P');
		$this->pdf->setData($aobj_context);
	}

	
		
	function writeReport($admCollData)
	{

		$pdf=$this->pdf;

		$pdf->SetMargins(10,30,20,false);
		$pdf->startPageGroup();
		$pdf->AddPage("P");

		$pdf->SetFont('Times','',10);


		$table5 = '<style>
			td, th {
			    border: 0.5px solid black;
			}
		 </style>
		 <table cellpadding="2" cellspacing="0">
			';
		$table5 .= '<thead><tr nobr="true">';
		$table5 .= '<th width="25" align="center"><b>Sl. No.</b></th>';
		$table5 .= '<th width="250" align="center"><b>Particulars</b></th>';
		$table5 .= '<th width="260" align="center"><b>Details</b></th>';
		$table5 .= '</tr></thead>';
		$i = 0;

		if(count($admCollData) > 0)	
		{
			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">1</td>';
			$table5 .= '<td width="250" align="left">Name of the College</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fcollname'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">2</td>';
			$table5 .= '<td width="250" align="left">College Website</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fcollwebsite'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">3</td>';
			$table5 .= '<td width="250" align="left">Name of the Legislative Assembly Constituency in which the college is situated (Ward Name should also be mentioned in case of BBMP Limits)</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fconstituency'].'</td>';
			$table5 .= '</tr>';
		
			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">4</td>';
			$table5 .= '<td width="250" align="left">Principal Name</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fprincipal'].'</td>';
			$table5 .= '</tr>';
			
			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">5</td>';
			$table5 .= '<td width="250" align="left">Principal Qualification</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fprinciqual'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">6</td>';
			$table5 .= '<td width="250" align="left">Whether Regular / Incharge / OOD / Ad-hoc?</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fprincitype'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">7</td>';
			$table5 .= '<td width="250" align="left">Principal Years of service in office</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fservyear'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">8</td>';
			$table5 .= '<td width="250" align="left">Principal E-Mail ID</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['femail'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">9</td>';
			$table5 .= '<td width="250" align="left">Principal Phone / Mob No.</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fmobileno'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">10</td>';
			$table5 .= '<td width="250" align="left">Year of Establishment of the College</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['festyear'].'</td>';
			$table5 .= '</tr>';

			//fcentre
			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">11</td>';
			$table5 .= '<td width="250" align="left">Has your College been declared as Examination Centre of Banglore University or any other University? Give details.</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fcentre'].' <br>'.$admCollData['fcentredet'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">12</td>';
			$table5 .= '<td width="250" align="left">Is College building suitable, safe and secure for conduct of University Examination</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fsafe'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">13</td>';
			$table5 .= '<td width="250" align="left">Whether the college belong to 2(f) of UGC Act 1956?</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fugctwof'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">14</td>';
			$table5 .= '<td width="250" align="left">Whether the college belong to 2(f) and(B) 12 of UGC Act 1956?</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fugctwob'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">15</td>';
			$table5 .= '<td width="250" align="left">Whether the college has been accredited / re-accredited by NAAC / NBA? If yes, Mention the Year of accreditation / re-accreditation with grade and CGPA as well as the period validity</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fnaacrep'].' <br>'.$admCollData['fnaacrepdet'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">16</td>';
			$table5 .= '<td width="250" align="left">Whether the college is permanently Affiliated?</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['faffiliated'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">17</td>';
			$table5 .= '<td width="250" align="left">The Details of UG, PG Coures: 
Course wise intake and admitted strength</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fcourses'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">18</td>';
			$table5 .= '<td width="250" align="left">No. of class-rooms / Examination Halls with size and seating capacity</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fclassrooms'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">19</td>';
			$table5 .= '<td width="250" align="left">No. of Permanent Teaching staff working in the College</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fperstaff'].'</td>';
			$table5 .= '</tr>';


			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">20</td>';
			$table5 .= '<td width="250" align="left">No. of Temporary Teaching staff working in the College</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['ftmpstaff'].'</td>';
			$table5 .= '</tr>';

		/*	$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">20</td>';
			$table5 .= '<td width="250" align="left">No. of Temporary Teaching staff working in the College</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['ftmpstaff'].'</td>';
			$table5 .= '</tr>';*/

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">21</td>';
			$table5 .= '<td width="250" align="left">No. of Permanent / temporary Non-Teaching staff working in the College</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fnonteachstaff'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">22</td>';
			$table5 .= '<td width="250" align="left">Whether the CCTV cameras are installed in the Class-Rooms / Examination Halls / the Principal Chamber / Office premises of the college? Give details.</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fofficecctv'].'<br>'.$admCollData['fofficecctvdet'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">23</td>';
			$table5 .= '<td width="250" align="left">Whether the college campus is Wi-Fi?</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fwifi'].'</td>';
			$table5 .= '</tr>';


			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">24</td>';
			$table5 .= '<td width="250" align="left">Is there an IT infrastructure such as Computers, Laser Printers, UPS and high speed broad band internet along with general facility? Give details</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fcomplab'].'<br>'.$admCollData['fcomplabdet'].'</td>';
			$table5 .= '</tr>';


			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">25</td>';
			$table5 .= '<td width="250" align="left">Is the Principal Chamber and Office connected with internet connectivity?</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fclasscctv'].'</td>';
			$table5 .= '</tr>';

			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">26</td>';
			$table5 .= '<td width="250" align="left">The number of teachers, office staff having smart phones with internet</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fteachsmob'].'</td>';
			$table5 .= '</tr>';

			
			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="25" align="center">27</td>';
			$table5 .= '<td width="250" align="left">Any other information justifying the declaration of college as Examination Centre.</td>';
			$table5 .= '<td width="260" align="left">'.$admCollData['fotherdet'].'</td>';
			$table5 .= '</tr>';


		}
		else
		{
			$table5 .= '<tr nobr="true">';
			$table5 .= '<td width="525" collspan = "7" align="center"><b>No Data Found For Your College</b></td>';
			$table5 .= '</tr>';
		}	

		
		
		$table5 .='</table>';
		//$pdf->SetX(12);
		// var_dump($table5);
		$pdf->writeHTML($table5, true, false, true, false, 'L');


		$pdf->Ln(15);
		$pdf->Cell(0,7,'Place : ',0,0,'L');
		$pdf->Cell(0,7,'Signature of the Principal with seal',0,1,'R');
		$pdf->Cell(0,7,'Date : ',0,0,'L');
	}
		
	function SendOutput()
	{
		ob_end_clean();
		$this->pdf->Output("Examination_Center_Declaration_{$_SESSION['collcode']}.pdf","D");
	}	 
}

function reportexamcntrdet($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);

	$query = "SELECT * from examcntr WHERE fcollcode = '{$_SESSION['collcode']}'";

	$admCollData = $aobj_context->mobj_db->GetRow($query);

	$class_obj = new AddmissionApplication();
	
	$class_obj->DefaultConstructor($aobj_context);

	$class_obj->writeReport($admCollData);

	$class_obj->SendOutput();
}

?>