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.54.210
<?php
$main_src=substr($_SERVER['SCRIPT_FILENAME'],0,strlen($_SERVER['SCRIPT_FILENAME'])-7);
$pdf_writer_class =$main_src."/tarka_pdf_latest/fpdf.php";
require_once($pdf_writer_class);
ini_set('max_execution_time', 0);
class DisplayAckApplications extends FPDF
{
function DefaultConstructor($aobj_context)
{
include_once($aobj_context->main_src."/src/format.php");
$this->aobj_context=$aobj_context;
$this->pdf= new FPDF();
$this->pdf=$this;
session_start();
$this->ip=$_SERVER["REMOTE_ADDR"];
$get_date="select date_add(date_add(now(),INTERVAL 13 hour),interval 30 minute) as now_date";
$obj=$this->aobj_context->mobj_db->GetRow($get_date);
$this->current_date=$obj['now_date'];
$this->app_from = substr("0000000000".$aobj_context->mobj_data["app_from"],-4);
$this->app_to =substr("ZZZZZZZZZZ".$aobj_context->mobj_data["app_to"],-4);
}
function Header()
{
// $this->$aobj_context->mobj_data["db"]
$img_path=$this->aobj_context->main_src.$this->aobj_context->mobj_data["db"].'/'.$this->pdf_logo_path;
if(!empty($this->pdf_logo_path) && file_exists($img_path))
{
$this->pdf->Image($img_path,70,20,20);
}
$this->pdf->SetFont('Times','B',15);
$this->pdf->cell(0,7,"".$this->FUNIVNAME,"0",1,"C");
$this->pdf->SetFont('Times','',8);
$this->pdf->cell(0,4, $this->s_state,"0",0,"C");
$this->pdf->SetFont('Times','',10);
$this->pdf->Cell(-20,4,"Page {$this->pdf->PageNo()}/{nb}",0,1,'C');
$this->pdf->SetFont('Times','B',10);
$this->pdf->cell(0,5,$this->Screentype,"0",1,"C");
$this->pdf->cell(0,5,$this->ReportType,"0",1,"C");
$this->pdf->cell(0,5,"Degree Group:" ." ".$this->Degree,"0",1,"C");
$this->pdf->cell(0,5,"Application Range :" ." ".$this->app_from." "."to"." ".$this->app_to,"0",1,"C");
$this->pdf->cell(0,5,"Degree Range :" ." ".$this->degree_from." "."to"." ".$this->degree_to,"0",1,"C");
}
function Footer()
{
if($this->Screentype=="Exam Application Fee Summary"){
$this->SetY(-15);
$this->pdf->SetFont('Times','B',8);
$new_y=$this->pdf->GetY();
$this->pdf->Line(8,$new_y, 290,$new_y);
$this->pdf->Ln(2);
$this->Cell(180,6,'Printed : IP Address : '.$this->ip." Date ".$this->current_date,'0',0,'L');
}
else if($this->Screentype=="Admission Apllication Fee Summary")
{
$this->SetY(-15);
$this->pdf->SetFont('Times','B',8);
$new_y=$this->pdf->GetY();
$this->pdf->Line(5,$new_y, 203,$new_y);
$this->pdf->Ln(2);
$this->Cell(140,6,'Printed : IP Address : '.$this->ip." Date ".$this->current_date,'0',0,'L');
}
}
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'];
}
function formdata()
{
$this->pdf->AddPage('L');
//$this->pdf->SetFillColor(248, 248 ,255);
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(10,6,"Sl. No","1",0,"C");
$this->pdf->Cell(160,6,"College Name","1",0,"C");
$this->pdf->Cell(20,6,"N.F.Tot.App","1",0,"C");
$this->pdf->Cell(20,6,"Normal Fee","1",0,"R");
$this->pdf->Cell(20,6,"L.F.Tot.App","1",0,"C");
$this->pdf->Cell(20,6,"Low Fee","1",0,"R");
$this->pdf->Cell(20,6,"Amount","1",1,"R");
}
function SendOutput()
{
$this->pdf->Output("ack_summary.pdf","D");
}
}
function DisplayAckApplications($aobj_context)
{
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
$class_obj=new DisplayAckApplications();
//$class_obj->AliasNbPages();
$class_obj->DefaultConstructor($aobj_context);
$class_obj->Header();
$class_obj->formcolldata();
$class_obj->formdata();
$class_obj->SendOutput();
}
function moneyFormatIndia($num) {
$explrestunits = "" ;
if(strlen($num)>3) {
$lastthree = substr($num, strlen($num)-3, strlen($num));
$restunits = substr($num, 0, strlen($num)-3); // extracts the last three digits
$restunits = (strlen($restunits)%2 == 1)?"0".$restunits:$restunits; // explodes the remaining digits in 2's formats, adds a zero in the beginning to maintain the 2's grouping.
$expunit = str_split($restunits, 2);
for($i=0; $i<sizeof($expunit); $i++) {
// creates each of the 2's group and adds a comma to the end
if($i==0) {
$explrestunits .= (int)$expunit[$i].","; // if is first value , convert into integer
} else {
$explrestunits .= $expunit[$i].",";
}
}
$thecash = $explrestunits.$lastthree;
} else {
$thecash = $num;
}
return $thecash; // writes the final format where $currency is the currency symbol.
}
?>
|