mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
41 lines
971 B
PHP
41 lines
971 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Utils\Traits\Pdf;
|
|
|
|
use setasign\Fpdi\Fpdi;
|
|
|
|
class PDF extends FPDI
|
|
{
|
|
public $text_alignment = 'L';
|
|
|
|
public function Footer()
|
|
{
|
|
$this->SetXY(0, -6);
|
|
$this->SetFont('Arial', 'I', 9);
|
|
|
|
$this->SetTextColor(135, 135, 135);
|
|
|
|
$trans = ctrans('texts.pdf_page_info', ['current' => $this->PageNo(), 'total' => '{nb}']);
|
|
// $trans = iconv('UTF-8', 'ISO-8859-7', $trans);
|
|
$this->Cell(0, 5, $trans, 0, 0, $this->text_alignment);
|
|
}
|
|
|
|
public function setAlignment($alignment)
|
|
{
|
|
if (in_array($alignment, ['C', 'L', 'R'])) {
|
|
$this->text_alignment = $alignment;
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
}
|