function fetchGridPDF() { $pdf = new paloPDF(); $pdf->setOrientation("L"); $pdf->setFormat("A3"); //$pdf->setLogoHeader("themes/elastixwave/images/logo_elastix.gif"); $pdf->setColorHeader(array(5, 68, 132)); $pdf->setColorHeaderTable(array(227, 83, 50)); $pdf->setFont("Verdana"); $pdf->printTable("{$this->nameFile_Export}.pdf", $this->getTitle(), $this->getColumns(), $this->getData()); return ""; }
function fetchGridPDF() { global $arrConf; require_once "{$arrConf['elxPath']}/libs/paloSantoPDF.class.php"; $pdf = new paloPDF(); $pdf->setOrientation("L"); $pdf->setFormat("A3"); $pdf->setColorHeader(array(5, 68, 132)); $pdf->setColorHeaderTable(array(227, 83, 50)); $pdf->setFont("Verdana"); $pdf->printTable("{$this->nameFile_Export}.pdf", $this->getTitle(), $this->getColumns(), $this->getData()); return ""; }