Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 11267 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 11267 Rev 15079
Línea 3... Línea 3...
3
namespace LeadersLinked\Library;
3
namespace LeadersLinked\Library;
Línea 4... Línea 4...
4
 
4
 
Línea 5... Línea 5...
5
use Fpdf\Fpdf;
5
use Fpdf\Fpdf;
-
 
6
 
-
 
7
class InterviewPDF extends FPDF {
-
 
8
    
-
 
9
    
Línea 6... Línea 10...
6
 
10
    public $header;
7
class InterviewPDF extends FPDF {
11
    public $footer;
8
 
12
 
9
    /**
13
    /**
Línea 10... Línea 14...
10
     * Header PDF
14
     * Header PDF
11
     */
15
     */
12
    function Header() {
16
    function Header() {
13
 
17
 
14
        if ($this->header != '') {
18
        if ($this->header != '') {
Línea 15... Línea 19...
15
            $this->Image($this->header, -120, 1, 450);
19
            $this->Image($this->header, 10, 1, 190);
16
            $this->SetY(55);
20
            $this->SetY(55);
17
        }
21
        }
18
    }
22
    }
19
 
23
 
20
    /**
24
    /**
21
     * Footer PDF
25
     * Footer PDF
22
     */
26
     */
23
    function Footer() {
27
    function Footer() {
Línea 24... Línea 28...
24
        if ($this->footer != '') {
28
        if ($this->footer != '') {
25
            $this->SetY(-40);
29
            $this->SetY(-40);