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.118.126.69
<?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;
ini_set('max_execution_time', 600);
ini_set("memory_limit",'2048M');
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("Valuator Report");
// 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, 20, 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, ' Valuator Details', '0', 1, 'C');
$this->SetFont('Times', 'B', 12);
// 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);
$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->pobj_db->GetRow($get_coll_name);
// var_dump($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->FUNIVCODE = $lobj_get_coll_name['FUNIVCODE'];
$this->current_date = $obj['now_date'];
$deggrp = $this->aobj_context->mobj_data["deggrp"];
$get_coll_name = "select concat(fdeggrp, ' - ', fdescpn) as fdeggrp
from deggrp where fdeggrp = '{$deggrp}'";
$lobj_get_degree = $this->aobj_context->pobj_db->GetRow($get_coll_name);
$aobj_context->deggrp = $lobj_get_degree['fdeggrp'];
$this->pdf = new MYPDF('L');
$this->pdf->aobj_context = $aobj_context;
}
public function TblHeaderCollWise($pdf)
{
$pdf->SetFont('Times', 'B', 10);
$pdf->Cell(8, 6, "Sl", "LRT", 0, "C");
$pdf->Cell(25, 6, "Board Code", "LRT", 0, "C");
$pdf->Cell(70, 6, "Description ", "LRT", 0, "C");
$pdf->Cell(30, 6, "Chairman Code", "LRT", 0, "C");
$pdf->Cell(65, 6, "Chairman Name", "LRT", 0, "C");
$pdf->Cell(25, 6, "Mobile No. ", "LRT", 0, "C");
$pdf->Cell(65, 6, "Email", "LRT", 1, "C");
$pdf->SetFont('Times', '', 10);
}
public function writeReport($data){
$pdf = $this->pdf;
$pdf->SetMargins(7, 30);
$pdf->startPageGroup();
$pdf->AddPage("L");
// var_dump($pdf->getY());
$this->TblHeaderCollWise($pdf);
$sl_no = 1;
foreach($data as $k => $v)
{
if($pdf->GetY()>= 175)
{
$pdf->AddPage();
$this->TblHeaderCollWise($pdf);
}
$x = $pdf->GetX();
$y = $pdf->GetY();
$h = 6;
$pdf->Cell(8, $h, $sl_no, "1", 0, "C");
$pdf->Cell(25, $h, $v['fboardcode'], "1", 0, "C");
$pdf->Cell(70, $h, $v['fboardname'], "1", 0, "L");
$pdf->Cell(30, $h, $v['fchairman'], "1", 0, "C");
$pdf->Cell(65, $h, $v['fboename'], "1", 0, "L");
$pdf->Cell(25, $h, $v['fboemobileno'], "1", 0, "C");
$pdf->Cell(65, $h, $v['fboeemail'], "1", 1, "L");
$sl_no++;
}
}
public function SendOutput()
{
// ob_end_clean();
$this->pdf->Output("MasboardReportPdf.pdf", "I");
}
}
function getPDFReportMasBoard($aobj_context)
{
$univcode = $aobj_context->mobj_data["univcode"];
$query = "SELECT IFNULL(fboardcode,'') AS fboardcode,IFNULL(fboardname,'') AS fboardname,IFNULL(fchairman,'') AS fchairman,
IFNULL(fdeleted,'F') AS fdeleted,IFNULL(fboename,'') AS fboename,IFNULL(fboemobileno,'') AS fboemobileno,
IFNULL(fboeemail,'') AS fboeemail
FROM masboard WHERE IFNULL(fdeleted,'') <> 'T'
ORDER BY fboardcode";
$result = $aobj_context->pobj_db->GetAll($query);
$class_obj = new Report();
$class_obj->univcode=$univcode;
$class_obj->DefaultConstructor($aobj_context);
$class_obj->writeReport($result);
$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.
}
?>
|