Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
/**
4
 * This file is part of FPDI
5
 *
6
 * @package   setasign\Fpdi
7
 * @copyright Copyright (c) 2023 Setasign GmbH & Co. KG (https://www.setasign.com)
8
 * @license   http://opensource.org/licenses/mit-license The MIT License
9
 */
10
 
11
namespace setasign\Fpdi\Tfpdf;
12
 
13
use setasign\Fpdi\FpdfTrait;
14
use setasign\Fpdi\FpdiTrait;
15
 
16
/**
17
 * Class Fpdi
18
 *
19
 * This class let you import pages of existing PDF documents into a reusable structure for tFPDF.
20
 */
21
class Fpdi extends FpdfTpl
22
{
23
    use FpdiTrait;
24
    use FpdfTrait;
25
 
26
    /**
27
     * FPDI version
28
     *
29
     * @string
30
     */
31
    const VERSION = '2.6.0';
32
}