Initial Commit

This commit is contained in:
David Stone
2024-11-30 18:24:12 -07:00
commit e8f7955c1c
5432 changed files with 1397750 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<?php
/**
* This file is part of FPDI
*
* @package setasign\Fpdi
* @copyright Copyright (c) 2023 Setasign GmbH & Co. KG (https://www.setasign.com)
* @license http://opensource.org/licenses/mit-license The MIT License
*/
namespace WP_Ultimo\Dependencies\setasign\Fpdi\Tfpdf;
use WP_Ultimo\Dependencies\setasign\Fpdi\FpdfTplTrait;
/**
* Class FpdfTpl
*
* We need to change some access levels and implement the setPageFormat() method to bring back compatibility to tFPDF.
*/
class FpdfTpl extends \WP_Ultimo\Dependencies\tFPDF
{
use FpdfTplTrait;
}

View File

@ -0,0 +1,29 @@
<?php
/**
* This file is part of FPDI
*
* @package setasign\Fpdi
* @copyright Copyright (c) 2023 Setasign GmbH & Co. KG (https://www.setasign.com)
* @license http://opensource.org/licenses/mit-license The MIT License
*/
namespace WP_Ultimo\Dependencies\setasign\Fpdi\Tfpdf;
use WP_Ultimo\Dependencies\setasign\Fpdi\FpdfTrait;
use WP_Ultimo\Dependencies\setasign\Fpdi\FpdiTrait;
/**
* Class Fpdi
*
* This class let you import pages of existing PDF documents into a reusable structure for tFPDF.
*/
class Fpdi extends FpdfTpl
{
use FpdiTrait;
use FpdfTrait;
/**
* FPDI version
*
* @string
*/
const VERSION = '2.5.0';
}