2007-11-14 10:28:39 +00:00
|
|
|
<?PHP
|
|
|
|
/*
|
|
|
|
$Id$
|
|
|
|
|
2009-10-27 18:47:12 +00:00
|
|
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
2007-11-14 10:28:39 +00:00
|
|
|
Copyright (C) 2003 - 2006 Michael Duergner
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* LDAP Account Manager PDF printing library. It consists of lamPDF class,
|
|
|
|
* the createModulePDF() function that may be called by other pages
|
|
|
|
* and furthermore some helper functions.
|
|
|
|
*
|
|
|
|
* @author Michael Duergner
|
|
|
|
* @package PDF
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a LAM information page in PDF format.
|
|
|
|
*
|
|
|
|
* @package PDF
|
|
|
|
* @author Michael Duergner
|
|
|
|
*/
|
|
|
|
class lamPDF extends UFPDF {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* format settings for page layout
|
|
|
|
*/
|
2008-01-08 18:10:41 +00:00
|
|
|
private $page_definitions;
|
2007-11-14 10:28:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* current active font name
|
|
|
|
*/
|
2008-01-08 18:10:41 +00:00
|
|
|
private $fontName;
|
2007-11-14 10:28:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* list of supported fonts
|
|
|
|
* format: <font name> => array(<file for default font style>, <file for bold>, <italic>, <bold italic>)
|
|
|
|
*/
|
2008-01-08 18:10:41 +00:00
|
|
|
private $fontList = array(
|
2007-11-14 10:28:39 +00:00
|
|
|
'BitstreamVeraSans-Roman' => array('vera.php', 'verab.php', 'verabi.php', 'verai.php')
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param string $account_type
|
|
|
|
* @param array $page_definitions
|
|
|
|
*/
|
2008-01-08 18:10:41 +00:00
|
|
|
function __construct($page_definitions = array(),$fontName) {
|
2007-11-14 10:28:39 +00:00
|
|
|
$this->fontName = $fontName;
|
2010-04-01 18:12:07 +00:00
|
|
|
define('FPDF_FONTPATH', dirname(__FILE__) . '/font/');
|
2007-11-14 10:28:39 +00:00
|
|
|
// Call constructor of superclass
|
|
|
|
$this->FPDF('P','mm','A4');
|
|
|
|
|
|
|
|
$this->page_definitions = $page_definitions;
|
|
|
|
|
|
|
|
// Open PDF file and write some basic information
|
|
|
|
$this->Open();
|
|
|
|
$this->AddFont($this->fontName, '', $this->fontList[$this->fontName][0]);
|
|
|
|
$this->AddFont($this->fontName, 'B', $this->fontList[$this->fontName][1]);
|
|
|
|
$this->AddFont($this->fontName, 'I', $this->fontList[$this->fontName][2]);
|
|
|
|
$this->AddFont($this->fontName, 'BI', $this->fontList[$this->fontName][3]);
|
|
|
|
$this->setFont($this->fontName,"",12);
|
|
|
|
$this->setTitle($this->page_definitions['headline']);
|
|
|
|
$this->setCreator("LDAP Account Manager");
|
2008-03-16 10:52:50 +00:00
|
|
|
$this->setMargins('10.0','10.0','10.0');
|
|
|
|
$this->setAutoPageBreak(true,'20.0');
|
2007-11-14 10:28:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function header() {
|
|
|
|
if($this->page_definitions['filename'] != 'none') {
|
|
|
|
$imageFile = substr(__FILE__,0,strlen(__FILE__)- 14) . "config/pdf/logos/" . $this->page_definitions['filename'];
|
|
|
|
$width = $this->page_definitions['logo-width'];
|
|
|
|
$height = $this->page_definitions['logo-height'];
|
|
|
|
if($this->page_definitions['logo-max'] == true) {
|
|
|
|
if(($width / $height) <= 2.5) {
|
|
|
|
$factor = 20 / $height;
|
|
|
|
$width = $factor * $width;
|
|
|
|
$height = 20;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$factor = 50 / $width;
|
|
|
|
$height = $factor * $height;
|
|
|
|
$width = 50;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->Image($imageFile,10,10,$width,$height,"JPG");
|
|
|
|
}
|
|
|
|
$this->SetY(18);
|
|
|
|
$this->SetFont($this->fontName,"B",18);
|
|
|
|
$this->Cell(170,5,$this->page_definitions['headline'],0,1,"R",0);
|
|
|
|
$this->Ln(3);
|
|
|
|
$this->SetLineWidth(0.4);
|
2008-03-16 10:52:50 +00:00
|
|
|
$this->Line(10,40,200,40);
|
|
|
|
$this->Line(10,42,200,42);
|
2007-11-14 10:28:39 +00:00
|
|
|
$this->SetY(50);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function footer() {
|
|
|
|
$this->SetLineWidth(0.4);
|
|
|
|
$this->Line(10,280,200,280);
|
|
|
|
$this->Line(10,282,200,282);
|
|
|
|
$this->SetY(286);
|
|
|
|
$this->SetFont($this->fontName,"",7);
|
|
|
|
$this->Cell(0,5,_("This document was automatically created by LDAP Account Manager"),0,0,"C",0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|