Example #1
0
    $pdf->ln();
    $pdf->WriteHtml('<h3>' . $kga['lang']['export_extension']['summary'] . '</h3>');
    $pdf->ln();
    $pdf->printSummary(array($kga['lang']['activity'], $kga['lang']['export_extension']['duration'], $kga['lang']['export_extension']['costs']), $orderedExportData);
    $pdf->AddPage();
}
// Write to the PDF document which, if any, customer filters were applied.
$customers = array();
foreach ($filterCustomers as $customerID) {
    $customer_info = $database->customer_get_data($customerID);
    $customers[] = $customer_info['name'];
}
if (count($customers) > 0) {
    $label = $kga['lang']['customer'] . ': ';
    $labelWidth = $pdf->GetStringWidth($label);
    $pdf->cell($labelWidth, 6, $label);
    $pdf->cell($labelWidth, 6, implode(', ', $customers));
    $pdf->ln();
}
// Write to the PDF document which, if any, project filters were applied.
$projects = array();
foreach ($filterProjects as $projectID) {
    $project_info = $database->project_get_data($projectID);
    $projects[] = $project_info['name'];
}
if (count($projects) > 0) {
    $label = $kga['lang']['project'] . ': ';
    $labelWidth = $pdf->GetStringWidth($label);
    $pdf->cell($labelWidth, 6, $label);
    $pdf->cell($labelWidth, 6, implode(', ', $projects));
    $pdf->ln();
Example #2
0
        $pdf->Bookmark($kga['lang']['xp_ext']['summary'], 0, 0);
    }
    $pdf->ln();
    $pdf->WriteHtml('<h3>' . $kga['lang']['xp_ext']['summary'] . '</h3>');
    $pdf->ln();
    $pdf->ColoredTable_result(array($kga['lang']['evt'], $kga['lang']['xp_ext']['duration'], $kga['lang']['xp_ext']['costs']), $summary);
    $pdf->AddPage();
}
// Write to the PDF document which, if any, customer filters were applied.
$customers = array();
foreach ($filterKnd as $knd_id) {
    $customer_info = knd_get_data($knd_id);
    $customers[] = $customer_info['knd_name'];
}
if (count($customers) > 0) {
    $pdf->cell(20, 6, $kga['lang']['knd'] . ':');
    $pdf->cell(20, 6, implode(', ', $customers));
    $pdf->ln();
}
// Write to the PDF document which, if any, project filters were applied.
$projects = array();
foreach ($filterPct as $pct_id) {
    $project_info = pct_get_data($pct_id);
    $projects[] = $project_info['pct_name'];
}
if (count($projects) > 0) {
    $pdf->cell(20, 6, $kga['lang']['pct'] . ':');
    $pdf->cell(20, 6, implode(', ', $projects));
    $pdf->ln();
}
if (isset($_REQUEST['customer_new_page'])) {