retrieve ( $record ); $user = new User (); $user->retrieve ( $focus->assigned_user_id ); include_once ("include/MPDF57/mpdf.php"); $p = new mPDF ( '', 'A4', null, 'helvetica', 10, 10, 30, 45, 5, 5 ); $mpdf->mirrorMargins = 1; $db = $GLOBALS ['db']; $r=$db->query ("select name,footer_address,footer_nip from ecmdocumenttemplates where id='75997203-f430-7f64-10e0-4b0a912673fa'"); $comp=$db->fetchByAssoc($r); $addr = explode(",", $comp['footer_address']); // document pdf // document already exist? $res = $db->query ( "SELECT footer, content FROM ecmstockdoccorrect_pdf WHERE id='$record'" ); if ($res->num_rows == 0) { // create and save document $positions = formatPDFPositions ( $focus->getPositionList ( true ), $focus ); // get header $header = ''; include_once ("modules/EcmStockDocCorrects/PDFTemplate/header.php"); $content = ''; include_once ("modules/EcmStockDocCorrects/PDFTemplate/content.php"); global $current_user; $db->query ( "INSERT INTO ecmstockdoccorrect_pdf VALUES ('$record','$current_user->id', NOW(),'" . urlencode ( $header ) . "', '" . urlencode ( $content ) . "')" ); } else { $positions = formatPDFPositions ( $focus->getPositionList ( true ), $focus ); $row = $db->fetchByAssoc ( $res ); $header = urldecode ( $row ['footer'] ); // punk rock! $content = urldecode ( $row ['content'] ); } $p->SetHTMLHeader ( $header ); $p->WriteHTML ( $content ); // draw PDF $p->Output ();