This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Tools/Pdf/Tcpdf/Tcpdf.php
T
Yuri Kuznetsov 31a94da8ff throws tags
2022-06-24 12:22:27 +03:00

220 lines
6.1 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2022 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://www.espocrm.com
*
* EspoCRM 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 3 of the License, or
* (at your option) any later version.
*
* EspoCRM 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 EspoCRM. If not, see http://www.gnu.org/licenses/.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Tools\Pdf\Tcpdf;
use TCPDF as TcpdfOriginal;
use Espo\Core\Utils\Util;
use TCPDF_STATIC;
use Espo\Core\Utils\Json;
class Tcpdf extends TcpdfOriginal
{
/**
* @var string
*/
protected $footerHtml = '';
/**
* @var string
*/
protected $headerHtml = '';
/**
* @var float|int
*/
protected $footerPosition = 15;
/**
* @var float|int
*/
protected $headerPosition = 10;
/**
* @var bool
*/
protected $useGroupNumbers = false;
public function serializeTCPDFtagParameters($data) /** @phpstan-ignore-line */
{
return urlencode(Json::encode($data));
}
protected function unserializeTCPDFtagParameters($data) /** @phpstan-ignore-line */
{
return json_decode(urldecode($data), true);
}
/**
* @param bool $value
* @return void
*/
public function setUseGroupNumbers($value)
{
$this->useGroupNumbers = $value;
}
/**
* @param string $html
* @return void
*/
public function setHeaderHtml($html)
{
$this->headerHtml = $html;
}
/**
* @param string $html
* @return void
*/
public function setFooterHtml($html)
{
$this->footerHtml = $html;
}
/**
* @param float $position
* @return void
*/
public function setFooterPosition($position)
{
$this->footerPosition = $position;
}
/**
* @param float $position
* @return void
*/
public function setHeaderPosition($position)
{
$this->headerPosition = $position;
}
/**
* @return void
*/
public function Header()
{
$this->SetY($this->headerPosition);
$html = $this->headerHtml;
if ($this->useGroupNumbers) {
$html = str_replace('{pageNumber}', '{{:png:}}', $html);
$html = str_replace('{pageAbsoluteNumber}', '{{:pnp:}}', $html);
} else {
$html = str_replace('{pageNumber}', '{{:pnp:}}', $html);
$html = str_replace('{pageAbsoluteNumber}', '{{:pnp:}}', $html);
}
/** @phpstan-ignore-next-line */
if ($this->isUnicodeFont()) {
$html = str_replace('{totalPageNumber}', '{{:ptp:}}', $html);
} else {
$html = str_replace('{totalPageNumber}', '{:ptp:}', $html);
}
$this->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, '', 0, false);
}
/**
* @return void
*/
public function Footer()
{
$breakMargin = $this->getBreakMargin();
$autoPageBreak = $this->AutoPageBreak;
$this->SetAutoPageBreak(false, 0);
$this->SetY((-1) * $this->footerPosition);
$html = $this->footerHtml;
if ($this->useGroupNumbers) {
$html = str_replace('{pageNumber}', '{{:png:}}', $html);
$html = str_replace('{pageAbsoluteNumber}', '{{:pnp:}}', $html);
} else {
$html = str_replace('{pageNumber}', '{{:pnp:}}', $html);
$html = str_replace('{pageAbsoluteNumber}', '{{:pnp:}}', $html);
}
/** @phpstan-ignore-next-line */
if ($this->isUnicodeFont()) {
$html = str_replace('{totalPageNumber}', '{{:ptp:}}', $html);
} else {
$html = str_replace('{totalPageNumber}', '{:ptp:}', $html);
}
$this->writeHTMLCell(0, 0, '', '', $html, 0, 1, 0, '', 0, false);
$this->SetAutoPageBreak($autoPageBreak, $breakMargin);
}
/**
* @param string $name
* @param string $dest
* @return string
* @throws \Exception
*/
public function Output($name = 'doc.pdf', $dest = 'I')
{
if ($dest === 'I' && !$this->sign && php_sapi_name() != 'cli') {
if ($this->state < 3) {
$this->Close();
}
/** @var string */
$name = preg_replace('/[\s]+/', '_', $name);
$name = Util::sanitizeFileName($name);
if (ob_get_contents()) {
$this->Error('Some data has already been output, can\'t send PDF file');
}
header('Content-Type: application/pdf');
if (headers_sent()) {
$this->Error('Some data has already been output to browser, can\'t send PDF file');
}
header('Cache-Control: private, must-revalidate, post-check=0, pre-check=0, max-age=1');
header('Pragma: public');
header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header('Content-Disposition: inline; filename="'.$name.'"');
TCPDF_STATIC::sendOutputData($this->getBuffer(), $this->bufferlen);
return '';
}
return parent::Output($name, $dest);
}
}