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 : 18.222.182.226
<?php
$main_src=substr($_SERVER['SCRIPT_FILENAME'],0,strlen($_SERVER['SCRIPT_FILENAME'])-7);
$pdf_writer_class =$main_src."/tarka_pdf/fpdf.php";
require_once($pdf_writer_class);
include_once("stringspliter.php");
class report_ra_qp_wise_student_count extends FPDF
{
function DefaultConstructor($aobj_context)
{
session_start();
$this->aobj_context=$aobj_context;
$this->pdf= new FPDF();
$this->pdf=$this;
$this->ttd_degree = $this->aobj_context->mobj_data["degree"];
$this->ttd_examno = $this->aobj_context->mobj_data["examno"];
$this->alldeg = $this->aobj_context->mobj_data["alldeg"];
$this->ip=$_SERVER["REMOTE_ADDR"];
$get_date="select date_format(now(),'%d/%m/%Y %H:%i:%s') now_date";
$obj=$this->aobj_context->mobj_db->GetRow($get_date);
$this->current_date=$obj[now_date];
$this->collcode=$_SESSION['collcode'];
}
function Header()
{
session_start();
$FUNIVCODE = $_SESSION['FUNIVCODE'];
$img_path=$this->aobj_context->main_src.$this->photo_path;
if(!empty($this->photo_path) && file_exists($img_path))
{
$this->pdf->Image($img_path,166,50,50);
}
if(!empty($this->pdf_logo_path))
{
$img_logo_path=$this->aobj_context->main_src.'/'.$this->aobj_context->mobj_data["db"].'/'.$this->pdf_logo_path;
$this->pdf->Image($img_logo_path,10,10,23,22);
}
$img_path2 = $this->aobj_context->main_src."/img/logo2.jpg";
if(file_exists($img_path2))
{
$this->pdf->Image($img_path2,170,6,23,23);
}
$this->pdf->SetFont('Times','B',12);
$this->pdf->cell(180,3,$this->FUNIVNAME."","0",1,"C");
$this->pdf->SetFont('Times','B',7);
$this->pdf->cell(180,7, $this->s_state,"0",1,"C");
$this->pdf->SetFont('Times','B',9);
$this->pdf->cell(180,7, $this->college_details,"0",'1',"C");
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(180,7,"Time Table Degreewise - ".$this->ttd_degree."- (".$this->lobj_get_data[0]['fexamdate'].")","0",1,"C");
$this->pdf->Ln(2);
$this->pdf->SetFont('Times','',13);
}
function Footer()
{
$this->SetY(-15);
$this->pdf->SetFont('Times','B',8);
$this->Cell(140,6,'Printed : IP Address : '.$this->ip." Date ".$this->current_date,'0',0,'L');
$this->Cell(50,6,'Page '.$this->PageNo().' of {nb}',0,1,'R');
}
function formcolldata()
{
$get_coll_name="select FUNIVNAME as 'FUNIVNAME',
FUNIVADD1 as 'state', pdf_logo_path From control";
$lobj_get_coll_name=$this->aobj_context->mobj_db->GetRow($get_coll_name);
$this->FUNIVNAME=$lobj_get_coll_name['FUNIVNAME'];
$this->s_state=$lobj_get_coll_name['state'];
$this->f_year=$lobj_get_coll_name['f_year'];
$this->pdf_logo_path=$lobj_get_coll_name['pdf_logo_path'];
$get_data="SELECT c.FCOLLCODE,
CONCAT(c.FCOLLCODE, ' - ', c.FCOLLNAME,', ',c.FTOWN) AS FCOLLNAME FROM college c
where c.FCOLLCODE='{$this->collcode}'";
$obj_student=$this->aobj_context->mobj_db->GetRow($get_data);
$this->college_details=$obj_student[FCOLLNAME];
$this->degree_details=" College : {$this->FCOLLNAME}";
}
function GetFullQry()
{
if($this->ttd_examno == ''){
$this->ttd_examno = '%';
}
$ttd_degree = $this->ttd_degree;
$ttd_examno = $this->ttd_examno;
$query = "SELECT s.fqpcode,s.fdegree, s.fexamno, fexamname, s.fsubname,DATE_FORMAT(s.fdoe,'%d/%m/%Y') AS fdoe, r.FDESCPN, d.fexamdate
FROM subject s LEFT JOIN reason r
ON fsession = freasoncd INNER JOIN degree d ON s.fdegree = d.fdegree AND s.fexamno = d.fexamno
WHERE s.fdegree LIKE '{$ttd_degree}' AND s.fexamno LIKE '{$ttd_examno}' AND IFNULL(s.fqpcode,'')<> ''";
// var_dump($query);
$this->lobj_get_data = $this->aobj_context->mobj_db->GetAll($query);
// var_dump($this->lobj_get_data);
// die();
}
function formData()
{
$this->pdf->SetMargins(10,12,10);
$this->pdf->AddPage();
$empty_cell_width=2;
$sl_no=1;
$k2 = 1;
$first = true;
foreach($this->lobj_get_data as $dk => $dv)
{
if($k2 > 29)
{
$this->pdf->AddPage();
$k2 = 1;
}
if($first == true || $k2 == 1)
{
$this->pdf->SetFont('Times','B',10);
$this->pdf->cell($empty_cell_width,7, ""," ",0,"C");
$this->pdf->cell(12,7, "Sl. No.","1",0,"C");
$this->pdf->cell(18,7, "QP Code","1",0,"C");
$this->pdf->cell(25,7, "Semester","1",0,"C");
$this->pdf->cell(60,7, "Subject","1",0,"C");
$this->pdf->cell(25,7, "Exam Date","1",0,"C");
$this->pdf->cell(50,7, "Session","1",1,"C");
$this->pdf->SetFont('Times','',9);
$first = false;
}
$x = $this->pdf->GetX();
$y = $this->pdf->GetY();
$subname = trim($dv['FSSUBNAME']);
$subnamearr = str_splitf($subname,50);
$this->pdf->cell($empty_cell_width,7, ""," ",0,"C");
$this->pdf->cell(12,7, $sl_no,"LRT",0,"C");
$this->pdf->cell(18,7, $dv['fqpcode'],"LRT",0,"C");
$this->pdf->cell(25,7, $dv['fexamname'],"LRT",0,"C");
// $this->pdf->MultiCell(60,7, $dv['fsubname'],"LRT",0,"L");
$this->pdf->SetX($x + 57);
$this->pdf->MultiCell(60, 7, $dv['fsubname'], "T", "L");
$this->pdf->SetFont('Times','',8);
$this->pdf->SetXY($x+117, $y);
$this->pdf->cell(25,7, $dv['fdoe'],"LRT",0,"C");
$this->pdf->SetFont('Times','',9);
$this->pdf->cell(50,7, $dv['FDESCPN'],"LRT",1,"C");
if($k2 == 29)
{
$this->pdf->cell($empty_cell_width,7, "","",0,"C");
$this->pdf->cell(190,1, "","T",0,"C");
}
if($subnamearr[1] != '')
{
$this->pdf->cell($empty_cell_width,7, ""," ",0,"C");
$this->pdf->cell(12,4,'',"LRB",0,"C");
$this->pdf->cell(18,4,'',"LRB",0,"C");
$this->pdf->cell(20,4,'',"LRB",0,"C");
$this->pdf->cell(45,4,'',"LRB",0,"L");
$this->pdf->SetFont('Times','',8);
$this->pdf->cell(85,4, $subnamearr[1],"LRB",0,"L");
$this->pdf->SetFont('Times','',9);
$this->pdf->cell(10,4,'',"LRB",1,"C");
if($k2 == 30)
{
$this->pdf->cell($empty_cell_width,7, "","",0,"C");
$this->pdf->cell(190,1, "","T",0,"C");
}
}
$sl_no++;
$k2++;
}
$this->pdf->cell($empty_cell_width,7, "","",0,"C");
$this->pdf->cell(190,1, "","T",1,"C");
}
function SendOutput()
{
$this->pdf->Output("Time Table Degreewise.pdf","D");
}
}
function generatetimetabledegreewise($aobj_context)
{
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
$class_obj=new report_ra_qp_wise_student_count();
$class_obj->AliasNbPages();
$class_obj->DefaultConstructor($aobj_context);
$class_obj->GetFullQry();
$class_obj->formcolldata();
$class_obj->formData();
$class_obj->SendOutput();
}
?>
|