コード例 #1
0
<?php

require_once 'includes/HRChecklist.class.php';
PSU::downloadFix();
require 'fpdf/fpdf.php';
$myuser = new PSUPerson($_SESSION['wp_id']);
$person = new PSUPerson($_GET['identifier']);
$complete = $_GET['complete'];
$list = $_GET['checklist'];
//$GLOBALS['BANNER']->debug = true;
/**
 * hr_checklist_pdf.php
 *
 * HR Employee Exit Report PDF Object
 *
 * &copy; 2010 Plymouth State University ITS
 *
 * @author		Laurianne Olcott <*****@*****.**>
 */
class PDF extends FPDF
{
    function Header()
    {
        $this->SetFont('Arial', 'B', 10);
    }
    function Footer()
    {
        $this->SetY(-25);
        //Arial bold 7
    }
}