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.217.241.235
<?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, 38, 20, false);
// $this->SetMargins(15, 45, 20, true);
$this->SetFillColor(248, 248, 255);
$img_path = $this->aobj_context->main_src . "/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', 11);
$this->Cell(0, 5, $this->aobj_context->col_name, 0, 1, 'C');
$this->Cell(0, 5, "{$this->aobj_context->degree}", '0', 1, 'C');
$reporttype = trim($this->aobj_context->mobj_data["reporttype"]);
$cur_year = date("Y");
if ($reporttype == 'rgsap')
$this->Cell(0, 5, 'ADMISSION APPLICATION LIST (VERIFICATION PENDING)', '0', 1, 'C');
else if ($reporttype == 'rgsad')
$this->Cell(0, 5, 'ADMISSION APPLICATION LIST (VERIFIED)', '0', 1, 'C');
else if ($reporttype == 'rgsfs')
$this->Cell(0, 5, 'ADMISSION APPLICATION LIST (PAYMENT SUCCESS)', '0', 1, 'C');
else if ($reporttype == 'rgsfp')
$this->Cell(0, 5, 'ADMISSION APPLICATION LIST (PAYMENT PENDING)', '0', 1, 'C');
else
$this->Cell(0, 5, 'ADMISSION APPLICATION LIST (ALL)', '0', 1, 'C');
$this->Ln(1);
$table = '<style>
td, th {
border: 0.5px solid black;
}
</style>
<table cellpadding="2" cellspacing="0">
';
$table .= '<thead><tr nobr="true">';
$table .= '<th width="5%" align="center"><b>Sl.</b></th>';
$table .= '<th width="12%" align="center"><b>App. No.</b></th>';
$table .= '<th width="30%" align="center"><b>Candidate Name</b></th>';
$table .= '<th width="8%" align="center"><b>Cat.</b></th>';
$table .= '<th width="10%" align="center"><b>Comb.</b></th>';
$table .= '<th width="10%" align="center"><b>Mobile</b></th>';
$table .= '<th width="8%" align="center"><b>Fee</b></th>';
$table .= '<th width="10%" align="center"><b>Payment</b></th>';
$table .= '<th width="10%" align="center"><b>App. Status</b></th>';
$table .= '</tr></thead>';
$table .= '</table>';
$this->writeHTML($table, true, false, true, false, 'L');
// 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', '', 8);
$this->Cell(100, 10, 'IP : ' . $_SERVER["REMOTE_ADDR"] . ', Print Date : ' . date('d/m/Y h:i:s A'), 0, 0, 'L');
$this->Cell(185, 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'];
$get_degree_name = "select concat(fdegree,' - ',fdescpn) as degree from degree where fdegree='{$this->degree}' and fexamno = 'A'";
$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 formcolldata()
{
$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);
$this->FUNIVNAME = $lobj_get_coll_name['FUNIVNAME'];
$this->s_state = $lobj_get_coll_name['state'];
$this->pdf_logo_path = $lobj_get_coll_name['pdf_logo_path'];
$this->FEXAMAPPREQ = $lobj_get_coll_name['FEXAMAPPREQ'];
$this->FUNIVCODE = $lobj_get_coll_name['FUNIVCODE'];
}
function writeApplication($admRegList)
{
$pdf = $this->pdf;
$pdf->SetMargins(10, 30, 20, false);
$pdf->startPageGroup();
$pdf->AddPage("L");
$pdf->SetFont('Times', '', 10);
// var_dump($category);
// return;
$table5 = '<style>
td, th {
border: 0.5px solid black;
}
</style>
<table cellpadding="2" cellspacing="0">
';
$i = 0;
foreach ($admRegList as $key => $value) {
$table5 .= '<tr nobr="true">';
$table5 .= '<td width="5%" align="center">' . ++$i . '</td>';
$table5 .= '<td width="12%" align="center">' . $value['fappno'] . '</td>';
$table5 .= '<td width="30%" align="left">' . $value['fname'] . '</td>';
$table5 .= '<td width="8%" align="center">' . $value['fcaste'] . '</td>';
$table5 .= '<td width="10%" align="center">' . $value['fcombcode'] . '</td>';
$table5 .= '<td width="10%" align="center">' . $value['fcontact_no'] . '</td>';
$table5 .= '<td width="8%" align="right">' . $value['ftotfee'] . '</td>';
$table5 .= '<td width="10%" align="center">' . $value['fpaystatus'] . '</td>';
$table5 .= '<td width="10%" align="center">' . $value['fappstatus'] . '</td>';
$table5 .= '</tr>';
if ($i % 50 == 0) {
$table5 .= '</table>';
$pdf->writeHTML($table5, false, false, true, false, 'L');
$table5 = '<style>
td, th {
border: 0.5px solid black;
}
</style>
<table cellpadding="2" cellspacing="0">';
}
}
if ($i % 50 > 0) {
$table5 .= '</table>';
$pdf->writeHTML($table5, false, false, true, false, 'L');
}
}
function SendOutput()
{
ob_end_clean();
$this->pdf->Output("admission_application_list_{$_SESSION['collcode']}.pdf", "D");
}
}
function PrintRegStudList($aobj_context)
{
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
$degree_code = $aobj_context->mobj_data["degree_code"];
$reporttype = trim($aobj_context->mobj_data["reporttype"]);
$appfrom = trim($aobj_context->mobj_data["appfrom"]);
$appto = trim($aobj_context->mobj_data["appto"]);
// var_dump($reporttype);
if ($reporttype == 'rgsap')
$statuscond = "and ifnull(ffinsub,'') = 'T' and ifnull(fappstatus,'') <> 'verified'";
else if ($reporttype == 'rgsfs')
$statuscond = "and ifnull(fpaystatus,'') = 'success'";
else if ($reporttype == 'rgsfp')
$statuscond = "and ifnull(fpaystatus,'') <> 'success'";
else if ($reporttype == 'rgsad')
$statuscond = "and ifnull(ffinsub,'') = 'T' and ifnull(fappstatus,'') = 'verified'";
else
$statuscond = '';
// var_dump($statuscond);
$admRegListQuery = "select s.fappno, s.fname, s.fcombcode, s.fcaste,
if(length(s.fcontact_no) <> 10, 'No Mobile', s.fcontact_no) as fcontact_no,
lcase(s.femail) as femail,ftotfee,
if(ifnull(fappstatus,'') = 'verified', 'Verified', 'Not Verified') as fappstatus,
if(ifnull(fpaystatus,'') = 'success', 'Success', 'Pending') as fpaystatus,
if(ifnull(ffinsub,'') = 'T', 'Done', 'Not Done') as remarks
from studadm s
where s.fdegree = '{$degree_code}' and s.fcollcode = '{$_SESSION['collcode']}'
{$statuscond} and fappno between '{$appfrom}' and '{$appto}'
and ifnull(s.fdeleted,'') <> 'T'
order by fname, fcombcode";
// var_dump($admRegListQuery);
$admRegList = $aobj_context->mobj_db->GetAll($admRegListQuery);
$class_obj = new AddmissionApplication();
$class_obj->DefaultConstructor($aobj_context);
$class_obj->writeApplication($admRegList);
$class_obj->SendOutput();
}
|