Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15152 Rev 15154
Línea 16... Línea 16...
16
            $this->Image($this->header, 10, 8, 190);
16
            $this->Image($this->header, 10, 8, 190);
17
            $this->SetY(55);
17
            $this->SetY(55);
18
        }
18
        }
19
    }
19
    }
Línea 20... Línea 20...
20
 
20
 
21
    function customHeader($headerFormName) {
21
    function customHeader($headerFormName,$headerUserName) {
22
        $s = utf8_decode(' Página: ' . $this->PageNo());
22
        $s = utf8_decode(' Página: ' . $this->PageNo());
23
        $this->SetFont('Arial', '', 10);
23
        $this->SetFont('Arial', '', 10);
24
        $this->SetY(40);
24
        $this->SetY(40);
Línea 25... Línea 25...
25
        $this->Cell(190, 10, $s, 0, 0, 'R');
25
        $this->Cell(190, 10, $s, 0, 0, 'R');
26
 
26
 
27
        $this->SetFont('Arial', 'B', 15);
27
        $this->SetFont('Arial', 'B', 15);
28
        $this->SetY(50);
28
        $this->SetY(50);
-
 
29
        $this->Cell(180, 10, $headerFormName, 0, 0, 'C');
-
 
30
        $this->setY($this->getY() + 8);
-
 
31
        
-
 
32
        if($headerUserName) {
-
 
33
            
-
 
34
            $this->SetFont('Arial', '', 10);
-
 
35
            $this->Cell(180, 10, $headerUserName, 0, 0, 'C');
Línea 29... Línea 36...
29
        $this->Cell(180, 10, $headerFormName, 0, 0, 'C');
36
            $this->setY($this->getY() + 10);
30
        $this->setY($this->getY() + 8);
37
        }
31
 
38