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.143.17.175
<?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,34,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,40,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',12);
$this->Cell(0,4,'College : '.$this->aobj_context->col_name,0,1,'C');
$this->SetFont('Times','B',12);
$this->Ln(1);
$cur_year = date("Y");
$this->Cell(0,5,'Admission Summary ('.$cur_year.')','0',1,'C');
$this->Ln(1);
// 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);
$this->Cell(100, 10,'IP : '.$_SERVER["REMOTE_ADDR"], 0, 0, 'L');
$this->Cell(100, 10,'Date : ' .$this->aobj_context->current_date, 0, 0, 'C');
$this->Cell(80, 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->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(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'];
$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($admSummary, $category, $admSummaryTot)
{
$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">
';
$row1 = '<tr nobr="true">';
$row2 = '<tr nobr="true">';
$row1 .= '<th width="20" align="center" rowspan="2"><b>Sl. No.</b></th>';
$row1 .= '<th width="60" align="center" rowspan="2"><b>Degree</b></th>';
$i = 0;
foreach($category as $key => $value)
{
$row1 .= '<th width="84" align="center" colspan="4"><b>'.$value['fcategory'].'</b></th>';
$row2 .= '<th width="21" align="center"><b>M</b></th>
<th width="21" align="center"><b>F</b></th>
<th width="21" align="center"><b>T</b></th>
<th width="21" align="center"><b>Tot</b></th>';
$cat[$i] = $value['fcategory'];
}
$row1 .= '<th width="40" align="center" rowspan="2"><b>Total</b></th>';
$row1 .= '</tr>';
$row2 .= '</tr>';
$table5 .= $row1.$row2;
$old_degree = '';
$new_degree = '';
// $table5 .= '<tr>';
$j = 0;
$total = 0;
foreach($admSummary as $key => $value)
{
$flag = false;
$new_degree = $value['fdegree'];
if($new_degree != $old_degree)
{
$flag = true;
if($j != 0)
{
$table5 .= '<td width="40" align="right"><b>'.$total.'</b></td></tr>';
}
$total = 0;
$table5 .= '<tr><td width="20" align="center">'.++$j.'</td><td width="60">'.$new_degree.'</td>';
}
$tot = $value['MaleCount'] + $value['FemaleCount']+$value['TransCount'];
$table5 .= '<td width="21" align="right">'.$value['MaleCount'].'</td>
<td width="21" align="right">'.$value['FemaleCount'].'</td>
<td width="21" align="right">'.$value['TransCount'].'</td>
<td width="21" align="right"><b>'.$tot.'</b></td>';
$total += $tot;
$old_degree = $new_degree;
// $j++;
}
$table5 .= '<td width="40" align="right"><b>'.$total.'</b></td></tr>';
$table5 .= '<tr><td width="80" align="center" colspan="2"><b>Total</b></td>';
$total = 0;
foreach($admSummaryTot as $key => $value)
{
$tot = $value['MaleCount'] + $value['FemaleCount']+$value['TransCount'];
$table5 .= '<td width="21" align="right"><b>'.$value['MaleCount'].'</b></td>
<td width="21" align="right"><b>'.$value['FemaleCount'].'</b></td>
<td width="21" align="right"><b>'.$value['TransCount'].'</b></td>
<td width="21" align="right"><b>'.$tot.'</b></td>';
$total += $tot;
}
$table5 .= '<td width="40" align="right"><b>'.$total.'</b></td></tr>';
$table5 .='</table>';
//$pdf->SetX(12);
$pdf->writeHTML($table5, true, false, true, false, 'L');
}
function SendOutput()
{
$this->pdf->Output("Admission_summary_{$_SESSION['collcode']}.pdf","D");
}
}
function PrintDataSentToUniv($aobj_context)
{
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
$admSummaryQuery = "select a.fdegree, a.fcategory,
ifnull(b.MaleCount,0) as MaleCount,
ifnull(b.FemaleCount, 0) as FemaleCount,
ifnull(b.TransCount, 0) as TransCount from
(select distinct d.fdegree, c.fcategory from category c, degree d
inner join studadm s on s.fdegree = d.fdegree
and s.fexamno = d.fexamno and fcollcode = '{$_SESSION['collcode']}') a left join
(select fdegree, fcategory,
sum(case when fgender = 'M' then 1 else 0 end) as MaleCount,
sum(case when fgender = 'F' then 1 else 0 end) as FemaleCount,
sum(case when fgender = 'T' then 1 else 0 end) as TransCount
from category c left join studadm s on c.fcategory = s.FCASTE
where fcollcode = '{$_SESSION['collcode']}'
group by c.fcategory, fdegree
order by fdegree, c.fcategory) b on a.fdegree = b.fdegree
and a.fcategory = b.fcategory";
//'{$_SESSION['collcode']}'
$admSummary = $aobj_context->mobj_db->GetAll($admSummaryQuery);
$admSummaryQueryTot = "select fcategory,
sum(case when fgender = 'M' then 1 else 0 end) as MaleCount,
sum(case when fgender = 'F' then 1 else 0 end) as FemaleCount,
sum(case when fgender = 'T' then 1 else 0 end) as TransCount
from category c left join studadm s on c.fcategory = s.FCASTE
where fcollcode = '{$_SESSION['collcode']}'
group by c.fcategory
order by c.fcategory";
$admSummaryTot = $aobj_context->mobj_db->GetAll($admSummaryQueryTot);
$categoryQuery = "select fcategory from category order by fcategory";
$category = $aobj_context->mobj_db->GetAll($categoryQuery);
$class_obj = new AddmissionApplication();
$class_obj->DefaultConstructor($aobj_context);
$class_obj->writeApplication($admSummary, $category, $admSummaryTot);
$class_obj->SendOutput();
}
?>
|