class ReportGenerator extends ObjectModel
{
require_once('tcpdf/config/lang/eng.php');
require_once('tcpdf/tcpdf.php');
// extend TCPF with custom functions
class MYPDF extends TCPDF {
// some overrirdden TCPDF class methods going here.
}
// DO a whole lot of things to build the PDF file.
} |