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.149.24.70
<?php
$main_src = substr($_SERVER['SCRIPT_FILENAME'], 0, strlen($_SERVER['SCRIPT_FILENAME']) - 7);
$pdf_writer_class = $main_src . "tcpdf/tcpdf.php";
require_once $pdf_writer_class;
class MYPDF extends TCPDF
{
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);
$this->SetTitle("Degree list for Admission");
// set bacground image
$this->SetFillColor(248, 248, 255);
$img_path = $this->aobj_context->main_src . "/img/".$this->aobj_context->FUNIVCODE."_logo.jpg";
if (file_exists($img_path)) {
$this->Image($img_path, 15, 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', 'BU', 12);
$this->Ln(1);
$cur_year = date("Y");
$this->Cell(0, 5, 'Degree list for Admission', '0', 1, 'C');
$this->SetFont('Times', 'B', 10);
$this->Cell(0, 6, " Degree Group: " . $this->aobj_context->DEGGRP, "0", 1, "C");
$this->Cell(0, 6, " Degree Range: " . $this->aobj_context->DEGREE, "0", 1, "C");
// 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);
// var_dump();
if($this->CurOrientation == 'P')
{
$this->Cell(60, 10, 'IP : ' . $_SERVER["REMOTE_ADDR"], 0, 0, 'L');
$this->Cell(60, 10, 'Date : ' . date("d-m-Y h:i:s A"), 0, 0, 'C');
$this->Cell(60, 10, 'Page ' . $this->getPageNumGroupAlias() . '/' . $this->getPageGroupAlias(), 0, 1, 'R');
}
else {
$this->Cell(90, 10, 'IP : ' . $_SERVER["REMOTE_ADDR"], 0, 0, 'L');
$this->Cell(90, 10, 'Date : ' . date("d-m-Y h:i:s A"), 0, 0, 'C');
$this->Cell(90, 10, 'Page ' . $this->getPageNumGroupAlias() . '/' . $this->getPageGroupAlias(), 0, 1, 'R');
}
}
}
class Report{
public function DefaultConstructor($aobj_context){
$this->aobj_context = $aobj_context;
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
$univDet = "select FUNIVNAME as 'FUNIVNAME',FUNIVCODE,
FUNIVADD1 as 'state', pdf_logo_path,
ifnull(FEXAMAPPREQ,'F') as FEXAMAPPREQ From control";
$univDetRes= $this->aobj_context->pobj_db->GetRow($univDet);
$deggrp = $this->aobj_context->mobj_data["deggrp"];
$getDeggrp = "select concat(fdeggrp, ' - ', fdescpn) as fdeggrp
from deggrp where fdeggrp = '{$deggrp}'";
$lobj_get_degree = $this->aobj_context->pobj_db->GetRow($getDeggrp);
$aobj_context->deggrp = $lobj_get_degree['fdeggrp'];
$aobj_context->FUNIVNAME = $univDetRes['FUNIVNAME'];
$aobj_context->s_state = $univDetRes['state'];
$aobj_context->pdf_logo_path = $univDetRes['pdf_logo_path'];
$aobj_context->FUNIVCODE = $univDetRes['FUNIVCODE'];
$this->pdf = new MYPDF('L');
$this->pdf->aobj_context = $aobj_context;
}
public function TblHeader($pdf){
$pdf->SetFont('Times', 'B', 10);
$pdf->Cell(10,6,"Sl.","LRT",0,"C");
$pdf->Cell(25,6,"Degree","LRT",0,"C");
$pdf->Cell(130,6,"Degree Name","LRT",1,"C");
// $pdf->Cell(20,6,"Admission","LRT",0,"C");
// $pdf->Cell(20,6,"Admission","LRT",1,"C");
$pdf->Cell(10,6,"No.","LRB",0,"C");
$pdf->Cell(25,6,"Code","LRB",0,"C");
$pdf->Cell(130,6,"","LRB",1,"C");
// $pdf->Cell(20,6,"Year","LRB",0,"C");
// $pdf->Cell(20,6,"Type","LRB",1,"C");
$pdf->SetFont('Times', '', 10);
}
public function writeReport($det){
$pdf = $this->pdf;
$pdf->SetMargins(20,35,10);
$pdf->startPageGroup();
$pdf->AddPage("P");
$pdf->SetMargins(20,35,10);
$sl_no = 1;
$pdf->SetFont('Times', '', 10);
$this->TblHeader($pdf);
foreach($det as $k=>$v){
$x = $pdf->GetX();
$y = $pdf->GetY();
// $pdf->SetX($x + 25);
// $pdf->MultiCell(110, 6, $v['fdescpn'], "1", "L");
// $y1 = $pdf->GetY();
// $h = $y1 - $y;
// $pdf->SetXY($x, $y);
$pdf->Cell(10,6,$sl_no,"1",0,"C");
$pdf->Cell(25,6,$v['fdegree'],"1",0,"C");
$pdf->Cell(130, 6, $v['fdescpn'], "1",1, "L");
// $pdf->Cell(90,6,$v['fdescpn'],"1",0,"L");
// $pdf->SetXY($x+135, $y);
// $pdf->Cell(20,$h,$v['fadyear'],"1",0,"C");
// $pdf->Cell(20,$h,$v['fadexamtyp'],"1",1,"C");
if($pdf->getY()>260){
$pdf->AddPage("P");
$this->TblHeader($pdf);
}
$sl_no++;
}
}
public function SendOutput()
{
// ob_end_clean();
$this->pdf->Output("UnivAdmDegReport.pdf", "I");
}
}
function univAdmDegList($aobj_context){
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
$univcode = $aobj_context->mobj_data['univcode'];
$fdeggrp = $aobj_context->mobj_data["deggrp"];
$_degree = $aobj_context->mobj_data['degree'];
$degree = json_decode($_degree,true);
if($fdeggrp !== 'All'){
$cond1 = "and ifnull(fdeggrp,'') = '{$fdeggrp}'";
}
foreach($degree as $key => $val){
$deg .= "'".$val."',";
}
$degarr = substr_replace($deg ,"",-1);
if($degarr == "'All'" || $degarr == ""){
$cnd = "";
}else{
$cnd = "and fdegree in ($degarr)";
}
$query="select fdegree,fdescpn,fadyear,fadexamtyp
from degree
where fadmdeg='T'
$cond1
and fexamno = 'A'
$cnd";
// var_dump($query);die();
$result= $aobj_context->pobj_db->GetAll($query);
foreach($degree as $key => $val){
$degg .= $val.", ";
}
$hdegarr = substr_replace($degg ,"",-2);
$class_obj = new Report();
$class_obj->DefaultConstructor($aobj_context);
$class_obj->univcode=$univcode;
$aobj_context->DEGREE = $hdegarr;
$aobj_context->DEGGRP = $fdeggrp;
if(count($result)>0)
$class_obj->writeReport($result);
$class_obj->SendOutput();
}
?>
|