Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 7052 | Rev 7061 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 7052 Rev 7054
Línea 12... Línea 12...
12
    function Header() {
12
    function Header() {
13
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/header_background.png', 10, 8, 190);
13
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/header_background.png', 10, 8, 190);
14
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/header_logo.png', 130, 20, 60);
14
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/header_logo.png', 130, 20, 60);
15
    }
15
    }
Línea 16... Línea 16...
16
 
16
 
17
    function customHeader($headerFormName, $headerUsername) {
17
    function customHeader($headerFormName) {
18
        $s = utf8_decode(' Página: ' . $this->PageNo());
18
        $s = utf8_decode(' Página: ' . $this->PageNo());
19
        $this->SetFont('Arial', '', 10);
19
        $this->SetFont('Arial', '', 10);
20
        $this->SetY(40);
20
        $this->SetY(40);
Línea 25... Línea 25...
25
        $this->Cell(180, 10, $headerFormName, 0, 0, 'C');
25
        $this->Cell(180, 10, $headerFormName, 0, 0, 'C');
26
        $this->setY($this->getY() + 8);
26
        $this->setY($this->getY() + 8);
Línea 27... Línea 27...
27
 
27
 
28
 
-
 
29
        $this->SetFont('Arial', '', 10);
28
 
30
        $this->Cell(180, 10, $headerUsername, 0, 0, 'C');
29
        $this->SetFont('Arial', '', 10);
Línea 31... Línea 30...
31
        $this->setY($this->getY() + 10);
30
        $this->setY($this->getY() + 10);
32
    }
31
    }