2003-08-20 16:09:41 +00:00
|
|
|
<?php
|
2017-02-18 09:13:08 +00:00
|
|
|
namespace LAM\PDF;
|
2018-08-25 17:39:47 +00:00
|
|
|
use LAM\ImageUtils\ImageManipulationFactory;
|
|
|
|
|
2003-05-31 10:52:15 +00:00
|
|
|
/*
|
2009-10-27 18:47:12 +00:00
|
|
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
2012-02-05 10:38:59 +00:00
|
|
|
Copyright (C) 2003 - 2004 Michael Duergner
|
2018-02-09 19:33:35 +00:00
|
|
|
2003 - 2018 Roland Gruber
|
2003-05-31 10:52:15 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2004-10-30 16:46:06 +00:00
|
|
|
/**
|
|
|
|
* LDAP Account Manager PDF printing library. It consists of lamPDF class,
|
2005-07-27 18:38:17 +00:00
|
|
|
* the createModulePDF() function that may be called by other pages
|
|
|
|
* and furthermore some helper functions.
|
2016-05-10 16:37:01 +00:00
|
|
|
*
|
2006-07-29 15:12:20 +00:00
|
|
|
* @author Michael Duergner
|
2012-02-05 10:38:59 +00:00
|
|
|
* @author Roland Gruber
|
2004-10-30 16:46:06 +00:00
|
|
|
* @package PDF
|
|
|
|
*/
|
|
|
|
|
2017-02-18 20:10:06 +00:00
|
|
|
/** line width */
|
|
|
|
define('LAMPDF_LINEWIDTH', 190);
|
|
|
|
/** line height */
|
|
|
|
define('LAMPDF_LINEHEIGHT', 5);
|
|
|
|
/** width of a label */
|
|
|
|
define('LAMPDF_LABELWIDTH', 50);
|
|
|
|
/** font size */
|
2017-02-15 20:45:26 +00:00
|
|
|
define('LAMPDF_FONT_SIZE', 7);
|
2017-02-18 20:10:06 +00:00
|
|
|
/** font size for bigger text */
|
|
|
|
define('LAMPDF_FONT_SIZE_BIG', 10);
|
2004-10-30 16:46:06 +00:00
|
|
|
|
2005-07-27 18:38:17 +00:00
|
|
|
/** access to PDF configuration files */
|
|
|
|
include_once('pdfstruct.inc');
|
|
|
|
|
2004-10-30 16:46:06 +00:00
|
|
|
/**
|
2010-11-06 09:40:32 +00:00
|
|
|
* This function creates the PDF output of one or more accounts.
|
2016-05-10 16:37:01 +00:00
|
|
|
*
|
2005-07-27 18:38:17 +00:00
|
|
|
* @param array $accounts A numbered array containing all accounts the PDF page should
|
2004-10-30 16:46:06 +00:00
|
|
|
* be created for. The entries of the array must be AccountContainer objects.
|
2005-07-27 18:38:17 +00:00
|
|
|
* @param string $pdf_structure The filename of the structure definition that should be used
|
|
|
|
* to create the PDF page. If not submitted the 'default.user' structure definition
|
2004-10-30 16:46:06 +00:00
|
|
|
* for the appropriate account type.
|
2017-10-23 15:58:08 +00:00
|
|
|
* @param string $font font to use (e.g. DejaVu)
|
2012-02-05 10:38:59 +00:00
|
|
|
* @param $returnAsString returns the PDF output as String value instead of writing it to a file
|
2010-11-06 09:40:32 +00:00
|
|
|
* @return String PDF file name
|
2004-10-30 16:46:06 +00:00
|
|
|
*/
|
2017-10-23 15:58:08 +00:00
|
|
|
function createModulePDF($accounts, $pdf_structure="default", $font, $returnAsString = false) {
|
2008-01-08 18:18:53 +00:00
|
|
|
$account_type = $accounts[0]->get_type();
|
2004-06-03 14:26:48 +00:00
|
|
|
// Get PDF structure from xml file
|
2017-06-25 12:47:33 +00:00
|
|
|
$reader = new PDFStructureReader();
|
|
|
|
$structure = $reader->read($account_type->getId(), $pdf_structure);
|
2015-01-07 17:16:35 +00:00
|
|
|
// get list of PDF keys
|
|
|
|
$pdfKeys = array();
|
2017-06-25 12:47:33 +00:00
|
|
|
foreach($structure->getSections() as $section) {
|
|
|
|
if (!$section instanceof PDFEntrySection) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ($section->isAttributeTitle()) {
|
|
|
|
$pdfKeys[] = $section->getPdfKey();
|
2015-01-07 17:16:35 +00:00
|
|
|
}
|
2017-06-25 12:47:33 +00:00
|
|
|
foreach ($section->getEntries() as $entry) {
|
|
|
|
$pdfKeys[] = $entry->getKey();
|
2015-01-07 17:16:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$pdfKeys = array_unique($pdfKeys);
|
2017-10-23 15:58:08 +00:00
|
|
|
return createPdf($structure, $accounts, $pdfKeys, $account_type, $font, $returnAsString);
|
2017-10-22 08:32:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-10-22 14:58:44 +00:00
|
|
|
* This function creates the PDF output of one or more accounts using TCPDF.
|
2017-10-22 08:32:56 +00:00
|
|
|
*
|
2017-10-22 13:26:52 +00:00
|
|
|
* @param PDFstructure $structure PDF structure
|
|
|
|
* @param array $accounts A numbered array containing all accounts the PDF page should
|
|
|
|
* be created for. The entries of the array must be AccountContainer objects.
|
|
|
|
* @param string $pdf_structure The filename of the structure definition that should be used
|
|
|
|
* to create the PDF page. If not submitted the 'default.user' structure definition
|
|
|
|
* for the appropriate account type.
|
2017-10-23 15:58:08 +00:00
|
|
|
* @param string $font font to use
|
2018-02-09 19:33:35 +00:00
|
|
|
* @param boolean $returnAsString returns the PDF output as String value instead of writing it to a file
|
2017-10-22 13:26:52 +00:00
|
|
|
* @return String PDF file name
|
|
|
|
*/
|
2017-10-23 15:58:08 +00:00
|
|
|
function createPdf($structure, $accounts, $pdfKeys, $account_type, $font, $returnAsString) {
|
2017-10-22 13:26:52 +00:00
|
|
|
/** PDF generator class */
|
2018-12-23 16:52:56 +00:00
|
|
|
include_once(__DIR__ . "/lamtcpdf.inc");
|
2017-10-23 15:58:08 +00:00
|
|
|
$pdf = new LAMTCPDF($structure, $font);
|
2017-10-22 13:26:52 +00:00
|
|
|
|
2016-05-10 16:37:01 +00:00
|
|
|
// Loop over each account and add a new page in the PDF file for it
|
2004-05-23 15:23:00 +00:00
|
|
|
foreach($accounts as $account) {
|
2016-05-10 16:37:01 +00:00
|
|
|
|
2004-05-23 15:23:00 +00:00
|
|
|
// Start a new page for each account
|
|
|
|
$pdf->AddPage();
|
2016-05-10 16:37:01 +00:00
|
|
|
|
2004-05-23 15:23:00 +00:00
|
|
|
// Get PDF entries for the current account
|
2017-04-01 07:57:03 +00:00
|
|
|
$entries = $account->get_pdfEntries($pdfKeys, $account_type->getId());
|
2016-05-10 16:37:01 +00:00
|
|
|
|
|
|
|
// Now create the PDF file acording to the structure with the submitted values
|
2017-06-25 12:47:33 +00:00
|
|
|
foreach ($structure->getSections() as $section) {
|
|
|
|
if ($section instanceof PDFTextSection) {
|
2017-10-23 15:58:08 +00:00
|
|
|
$pdf->setFont($font, "", LAMPDF_FONT_SIZE);
|
2017-06-25 12:47:33 +00:00
|
|
|
$info_string = str_replace("\r", "", $section->getText());
|
2017-02-18 20:10:06 +00:00
|
|
|
$info_string = explode("\n", $info_string);
|
|
|
|
foreach ($info_string as $text) {
|
|
|
|
$pdf->MultiCell(0, LAMPDF_LINEHEIGHT, trim($text), 0, "L", 0);
|
|
|
|
$pdf->Ln(0);
|
|
|
|
}
|
|
|
|
$pdf->Ln(LAMPDF_LINEHEIGHT * 2);
|
2004-05-23 15:23:00 +00:00
|
|
|
}
|
2017-06-25 12:47:33 +00:00
|
|
|
elseif ($section instanceof PDFEntrySection) {
|
|
|
|
// section headline
|
|
|
|
if($section->isAttributeTitle()) {
|
|
|
|
$section_headline = getSectionHeadline($entries[$section->getPdfKey()][0]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$section_headline = $section->getTitle();
|
|
|
|
}
|
2017-10-23 15:58:08 +00:00
|
|
|
$pdf->setFont($font, "B", LAMPDF_FONT_SIZE_BIG);
|
2017-10-22 14:58:44 +00:00
|
|
|
$pdf->Write(0, $section_headline, '', false, 'L', true);
|
2017-06-25 12:47:33 +00:00
|
|
|
$pdf->Ln(LAMPDF_LINEHEIGHT);
|
|
|
|
// entries
|
|
|
|
foreach ($section->getEntries() as $entry) {
|
|
|
|
// skip non-existent entries
|
|
|
|
if (isset($entries[$entry->getKey()])) {
|
|
|
|
// Get current entry
|
|
|
|
$valueEntries = $entries[$entry->getKey()];
|
|
|
|
// Print entry only when module sumitted values for it
|
|
|
|
if(is_array($valueEntries)) {
|
|
|
|
// Loop over all rows of this entry (most of the time this will be just one)
|
|
|
|
foreach($valueEntries as $valueEntry) {
|
|
|
|
if ($valueEntry instanceof PDFLabelValue) {
|
2017-10-23 15:58:08 +00:00
|
|
|
printLabelValue($pdf, $valueEntry, $font);
|
2017-06-25 12:47:33 +00:00
|
|
|
}
|
|
|
|
else if ($valueEntry instanceof PDFTable) {
|
2017-10-23 15:58:08 +00:00
|
|
|
printTable($pdf, $valueEntry, $font);
|
2017-06-25 12:47:33 +00:00
|
|
|
}
|
2018-08-25 17:39:47 +00:00
|
|
|
else if ($valueEntry instanceof PDFImage) {
|
|
|
|
printImage($pdf, $valueEntry, $font);
|
|
|
|
}
|
2017-02-18 09:13:08 +00:00
|
|
|
}
|
2004-05-27 19:07:50 +00:00
|
|
|
}
|
2004-05-23 15:23:00 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-25 12:47:33 +00:00
|
|
|
// section end
|
|
|
|
$pdf->Ln(LAMPDF_LINEHEIGHT * 2);
|
2004-05-23 15:23:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-22 14:58:44 +00:00
|
|
|
|
|
|
|
$out = $pdf->Output('out.pdf', 'S');
|
2012-02-05 10:38:59 +00:00
|
|
|
if (!$returnAsString) {
|
|
|
|
// use timestamp and random number from ldap.inc as filename so it should be unique.
|
2013-07-21 11:34:31 +00:00
|
|
|
$filename = '../../tmp/' . getRandomNumber() . time() .'.pdf';
|
2012-02-05 10:38:59 +00:00
|
|
|
// Save PDF
|
2017-10-22 14:58:44 +00:00
|
|
|
$handle = fopen($filename, 'w');
|
2015-06-18 18:16:00 +00:00
|
|
|
chmod($filename, 0640);
|
2017-10-22 14:58:44 +00:00
|
|
|
fwrite($handle, $out);
|
|
|
|
fclose($handle);
|
2012-02-05 10:38:59 +00:00
|
|
|
// return PDF file name
|
|
|
|
return $filename;
|
|
|
|
}
|
|
|
|
else {
|
2017-10-22 14:58:44 +00:00
|
|
|
return $out;
|
2012-02-05 10:38:59 +00:00
|
|
|
}
|
2004-05-23 15:23:00 +00:00
|
|
|
}
|
|
|
|
|
2004-10-30 16:46:06 +00:00
|
|
|
/**
|
2005-07-27 18:38:17 +00:00
|
|
|
* Creates a section headline.
|
2016-05-10 16:37:01 +00:00
|
|
|
*
|
2017-02-15 20:45:26 +00:00
|
|
|
* @param PDFEntry $entry content entry
|
2016-05-10 16:37:01 +00:00
|
|
|
*
|
2017-02-15 20:45:26 +00:00
|
|
|
* @return string headline
|
2004-10-30 16:46:06 +00:00
|
|
|
*/
|
2017-02-15 20:45:26 +00:00
|
|
|
function getSectionHeadline($entry) {
|
2017-02-18 08:59:57 +00:00
|
|
|
return $entry->getHeadline();
|
2017-02-15 20:45:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prints a PDFLabelValue entry.
|
|
|
|
*
|
2017-10-22 14:58:44 +00:00
|
|
|
* @param LAMTCPDF $pdf PDF
|
2017-02-15 20:45:26 +00:00
|
|
|
* @param PDFLabelValue $valueEntry entry
|
|
|
|
* @param string $fontName font name
|
|
|
|
*/
|
|
|
|
function printLabelValue(&$pdf, $valueEntry, $fontName) {
|
|
|
|
$pdf->SetFont($fontName, 'B', LAMPDF_FONT_SIZE);
|
2017-10-22 14:58:44 +00:00
|
|
|
$pdf->MultiCell(LAMPDF_LABELWIDTH, LAMPDF_LINEHEIGHT, $valueEntry->getLabel() . ':', 0, 'R', false, 0, '', '', true, 0, false, true, 0, 'T');
|
2017-02-15 20:45:26 +00:00
|
|
|
$pdf->SetFont($fontName, '', LAMPDF_FONT_SIZE);
|
2017-10-22 14:58:44 +00:00
|
|
|
$pdf->MultiCell(0, LAMPDF_LINEHEIGHT, $valueEntry->getValue(), 0, 'L', false, 1, '', '', true, 0, false, true, 0, 'M');
|
2017-02-18 20:10:06 +00:00
|
|
|
$pdf->Ln(0);
|
2004-05-23 15:23:00 +00:00
|
|
|
}
|
|
|
|
|
2017-02-18 09:13:08 +00:00
|
|
|
/**
|
|
|
|
* Prints a PDFTable entry.
|
|
|
|
*
|
2017-10-22 14:58:44 +00:00
|
|
|
* @param LAMTCPDF $pdf PDF
|
2017-02-18 20:10:06 +00:00
|
|
|
* @param PDFTable $table entry
|
2017-02-18 09:13:08 +00:00
|
|
|
* @param string $fontName font name
|
|
|
|
*/
|
2017-02-18 20:10:06 +00:00
|
|
|
function printTable(&$pdf, $table, $fontName) {
|
2017-03-08 16:19:44 +00:00
|
|
|
$headline = $table->getHeadline();
|
|
|
|
if (!empty($headline)) {
|
2017-02-18 20:10:06 +00:00
|
|
|
$pdf->SetFont($fontName, 'B', LAMPDF_FONT_SIZE);
|
2017-03-08 16:19:44 +00:00
|
|
|
$pdf->Cell(LAMPDF_LABELWIDTH, LAMPDF_LINEHEIGHT, $headline . ':', 0 , 0, 'L', 0);
|
2017-12-22 09:42:09 +00:00
|
|
|
$pdf->SetFont($fontName, '', LAMPDF_FONT_SIZE);
|
2017-02-18 20:10:06 +00:00
|
|
|
$pdf->Ln(LAMPDF_LINEHEIGHT);
|
2004-05-23 15:23:00 +00:00
|
|
|
}
|
2017-02-18 20:10:06 +00:00
|
|
|
foreach ($table->rows as $row) {
|
|
|
|
foreach ($row->cells as $cell) {
|
|
|
|
$width = $cell->width;
|
|
|
|
if (!empty($width) && (strpos($width, '%') !== false)) {
|
|
|
|
$width = ceil(LAMPDF_LINEWIDTH * substr($width, 0, -1) / 100);
|
|
|
|
}
|
|
|
|
if ($cell->bold) {
|
|
|
|
$pdf->SetFont($fontName, 'B', LAMPDF_FONT_SIZE);
|
|
|
|
}
|
2017-10-22 14:58:44 +00:00
|
|
|
$pdf->Cell($width, LAMPDF_LINEHEIGHT, $cell->content, 0, 0, $cell->align, 0, '', 1);
|
2017-02-18 20:10:06 +00:00
|
|
|
if ($cell->bold) {
|
|
|
|
$pdf->SetFont($fontName, '', LAMPDF_FONT_SIZE);
|
|
|
|
}
|
2004-05-23 15:23:00 +00:00
|
|
|
}
|
2017-02-18 20:10:06 +00:00
|
|
|
$pdf->Ln(LAMPDF_LINEHEIGHT);
|
2004-05-23 15:23:00 +00:00
|
|
|
}
|
2017-02-18 20:10:06 +00:00
|
|
|
$pdf->Ln(LAMPDF_LINEHEIGHT);
|
2004-05-23 15:23:00 +00:00
|
|
|
}
|
2017-02-15 20:45:26 +00:00
|
|
|
|
2018-08-25 17:39:47 +00:00
|
|
|
/**
|
|
|
|
* Prints a PDFLabelValue entry.
|
|
|
|
*
|
|
|
|
* @param LAMTCPDF $pdf PDF
|
|
|
|
* @param PDFImage $imageEntry entry
|
|
|
|
* @param string $fontName font name
|
|
|
|
*/
|
|
|
|
function printImage(&$pdf, $imageEntry, $fontName) {
|
|
|
|
include_once dirname(__FILE__) . '/imageutils.inc';
|
|
|
|
$imageManipulator = ImageManipulationFactory::getImageManipulator($imageEntry->getImageData());
|
|
|
|
$height = $imageManipulator->getHeight() / 2.9;
|
|
|
|
if ($height > 40) {
|
|
|
|
$height = 40;
|
|
|
|
}
|
|
|
|
$pdf->Image('@' . $imageManipulator->getImageData(), null, null, null, $height,
|
|
|
|
'JPG', null, 'T', true, 300, 'R',
|
|
|
|
false, false, 0, false, false, false);
|
|
|
|
$pdf->Ln($height);
|
|
|
|
$pdf->Ln(LAMPDF_LINEHEIGHT);
|
|
|
|
$imageManipulator = null;
|
|
|
|
}
|
|
|
|
|
2017-02-18 08:59:57 +00:00
|
|
|
/**
|
|
|
|
* Common interface for all PDF entries.
|
|
|
|
*
|
|
|
|
* @package PDF
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
2017-02-15 20:45:26 +00:00
|
|
|
interface PDFEntry {
|
|
|
|
|
|
|
|
/**
|
2017-02-18 08:59:57 +00:00
|
|
|
* Returns the head line of the entry.
|
2017-02-15 20:45:26 +00:00
|
|
|
*
|
|
|
|
* @return string label
|
|
|
|
*/
|
2017-02-18 08:59:57 +00:00
|
|
|
public function getHeadline();
|
2017-02-15 20:45:26 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a table for PDF export.
|
|
|
|
*
|
|
|
|
* @package PDF
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
|
|
|
class PDFTable implements PDFEntry {
|
|
|
|
|
|
|
|
/** optional label of table */
|
|
|
|
private $label = '';
|
|
|
|
/** list of PDFTableRow elements */
|
|
|
|
public $rows = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param String $label label
|
|
|
|
*/
|
|
|
|
public function __construct($label = null) {
|
|
|
|
$this->label = $label;
|
|
|
|
}
|
|
|
|
|
2017-02-18 08:59:57 +00:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
* @see PDFEntry::getHeadline()
|
|
|
|
*/
|
|
|
|
public function getHeadline() {
|
|
|
|
return $this->label;
|
|
|
|
}
|
|
|
|
|
2017-02-15 20:45:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a table row for PDF export.
|
|
|
|
*
|
|
|
|
* @package PDF
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
|
|
|
class PDFTableRow {
|
|
|
|
|
|
|
|
/** list of PDFTableCell */
|
|
|
|
public $cells = array();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a table cell for PDF export.
|
|
|
|
*
|
|
|
|
* @package PDF
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
|
|
|
class PDFTableCell {
|
|
|
|
|
|
|
|
const ALIGN_LEFT = 'L';
|
|
|
|
const ALIGN_RIGHT = 'R';
|
|
|
|
const ALIGN_CENTER = 'C';
|
|
|
|
|
|
|
|
/** content text of cell */
|
|
|
|
public $content = '';
|
|
|
|
/** text alignment */
|
|
|
|
public $align = self::ALIGN_LEFT;
|
|
|
|
/** cell width (e.g. "20%") */
|
|
|
|
public $width = null;
|
|
|
|
/** bold text */
|
|
|
|
public $bold = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*
|
|
|
|
* @param String $content cell content
|
|
|
|
* @param String $width width (e.g. "20%")
|
|
|
|
* @param String $align cell alignment (default: left)
|
|
|
|
* @param boolean $bold print in bold
|
|
|
|
*/
|
|
|
|
public function __construct($content, $width = null, $align = null, $bold = false) {
|
|
|
|
$this->content = empty($content) ? ' ' : $content;
|
|
|
|
$this->align = ($align == null) ? self::ALIGN_LEFT : $align;
|
|
|
|
$this->width = $width;
|
|
|
|
$this->bold = $bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simple PDF object to print label value entries.
|
|
|
|
*
|
|
|
|
* @package PDF
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
|
|
|
class PDFLabelValue implements PDFEntry {
|
|
|
|
|
|
|
|
private $label = '';
|
|
|
|
|
|
|
|
private $value = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param string $label label
|
|
|
|
* @param string $value value
|
|
|
|
*/
|
|
|
|
public function __construct($label, $value) {
|
|
|
|
$this->label = $label;
|
|
|
|
$this->value = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the label.
|
|
|
|
*
|
|
|
|
* @return string $label label
|
|
|
|
*/
|
|
|
|
public function getLabel() {
|
|
|
|
return $this->label;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the value.
|
|
|
|
*
|
|
|
|
* @return string $value value
|
|
|
|
*/
|
|
|
|
public function getValue() {
|
|
|
|
return $this->value;
|
|
|
|
}
|
|
|
|
|
2017-02-18 08:59:57 +00:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
* @see PDFEntry::getHeadline()
|
|
|
|
*/
|
|
|
|
public function getHeadline() {
|
|
|
|
return $this->value;
|
|
|
|
}
|
2017-02-15 20:45:26 +00:00
|
|
|
|
|
|
|
}
|
2018-08-25 17:39:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds an image to the PDF file.
|
|
|
|
*
|
|
|
|
* @package PDF
|
|
|
|
* @author Roland Gruber
|
|
|
|
*/
|
|
|
|
class PDFImage implements PDFEntry {
|
|
|
|
|
|
|
|
private $binaryData;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param string $binaryData image data
|
|
|
|
*/
|
|
|
|
public function __construct($binaryData) {
|
|
|
|
$this->binaryData = $binaryData;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
* @see \LAM\PDF\PDFEntry::getHeadline()
|
|
|
|
*/
|
|
|
|
public function getHeadline() {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the image data.
|
|
|
|
*
|
|
|
|
* @return string image data
|
|
|
|
*/
|
|
|
|
public function getImageData() {
|
|
|
|
return $this->binaryData;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|