2 require_once('../inc/always.php');
4 require_once('classPdfReport.php');
6 $component = clean_string($_GET['t']);
7 $id = clean_string($_GET['id']);
10 * Note that for this one we don't render any HTML output
12 if ( ! @include_once
( "print/$component.php" ) ) {
13 $c->messages
[] = "print/$component not found";
14 include('page-header.php');
15 include('page-footer.php');
18 if ( isset($pdf) ) echo $pdf->Render();