Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 7061 | Rev 15152 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6898 eleazar 1
<?php
2
 
3
namespace LeadersLinked\Library;
4
 
5
use Fpdf\Fpdf;
6
 
7
class UniqueSurveyReport extends FPDF {
8
 
9
    /**
10
     * Header PDF
11
     */
12
    function Header() {
7052 eleazar 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);
6898 eleazar 15
    }
16
 
7054 eleazar 17
    function customHeader($headerFormName) {
7040 eleazar 18
        $s = utf8_decode(' Página: ' . $this->PageNo());
19
        $this->SetFont('Arial', '', 10);
20
        $this->SetY(40);
21
        $this->Cell(190, 10, $s, 0, 0, 'R');
22
 
23
        $this->SetFont('Arial', 'B', 15);
24
        $this->SetY(50);
25
        $this->Cell(180, 10, $headerFormName, 0, 0, 'C');
26
        $this->setY($this->getY() + 8);
27
 
28
 
29
        $this->SetFont('Arial', '', 10);
30
        $this->setY($this->getY() + 10);
31
    }
32
 
6898 eleazar 33
    /**
34
     * Footer PDF
35
     */
36
    function Footer() {
7041 eleazar 37
        $this->SetY(-30);
38
        $this->Image($_SERVER['DOCUMENT_ROOT'] . '/pdf/footer_background.jpg', 10, $this->getY(), 190);
6898 eleazar 39
    }
40
 
41
    /**
42
     * Section Scale
43
     */
44
    function sectionScale() {
45
        $this->SetFillColor(225, 255, 255);
46
        $this->SetTextColor(0);
47
        $this->SetFont('Arial', 'B', 9);
48
 
49
 
50
        $this->Cell(35, 8, utf8_decode(' Escala/Niveles:'), 1, 0, 'L', false);
51
 
52
        $this->SetFillColor(225, 255, 255);
53
        $this->SetTextColor(0);
54
        $this->SetFont('Arial', '', 9);
55
 
56
        $this->Cell(155, 8, utf8_decode(' 1: Mínimo  2: Medio  3: Medio-Alto  4: Alto  N/A: No aplica
57
'), 1, 'L', false);
58
        $this->Ln(15);
59
    }
60
 
61
    /**
62
     * Create Table
63
     * @param string $title
64
     * @param array $content
65
     */
66
    function borderTable($title, $content) {
67
 
68
        // Header Table
69
        $this->SetFillColor(204, 204, 204);
70
        $this->SetDrawColor(0, 0, 0);
71
        $this->SetLineWidth(0);
72
        $this->SetFont('Arial', 'B', 9);
73
 
74
        $this->Cell(190, 6, utf8_decode($title), 1, 0, 'L', true);
75
        $this->Ln();
76
 
77
        // Body Table
78
        $this->SetFillColor(225, 255, 255);
79
        $this->SetTextColor(0);
80
 
81
        foreach ($content as $rs) {
82
            if (isset($rs['title'])) {
83
 
84
                $this->SetFont('Arial', 'B', 9);
85
                $this->Cell(50, 10, utf8_decode($rs['title']), 1, 0, 'L', false);
86
                $this->MultiCell(140, 10, utf8_decode($rs['content']), 1, 'L', false);
87
                $this->Ln();
88
            } else {
89
 
90
                $this->SetFont('Arial', '', 9);
91
                $this->MultiCell(190, 6, utf8_decode($rs['content']), 1, 'L', false);
92
            }
93
        }
94
        $this->Ln(5);
95
    }
96
 
97
    /**
98
     * title option table
99
     * @param string $title
100
     */
101
    function titleOptionTable($title) {
102
 
103
        if ($title != '') {
104
            // Body Table
105
            $this->SetFillColor(204, 204, 204);
106
            $this->SetDrawColor(0, 0, 0);
107
            $this->SetLineWidth(0);
108
            $this->SetFont('Arial', 'B', 9);
109
 
110
            $this->Cell(190, 6, utf8_decode($title), 1, 0, 'L', true);
111
            $this->Ln();
112
        }
113
    }
114
 
115
 
116
    /**
117
     * Create Table
118
     * @param string $title
119
     * @param array $content
120
     */
121
    function singleTable($title, $content) {
122
 
123
        // Header Table
124
        $this->SetFillColor(255, 255, 255);
125
        $this->SetDrawColor(0, 0, 0);
126
        $this->SetLineWidth(0);
127
        $this->SetFont('Arial', 'B', 9);
128
 
129
        $this->Cell(190, 6, utf8_decode($title), 0, 0, 'L', true);
130
        $this->Ln();
131
 
132
        // Body Table
133
        $this->SetFillColor(225, 255, 255);
134
        $this->SetTextColor(0);
135
        $this->SetFont('Arial', '', 9);
136
 
137
        foreach ($content as $rs) {
138
            if (isset($rs['title'])) {
139
                $this->Cell(40, 6, utf8_decode($rs['title']), 0, 0, 'L', false);
140
                $this->Cell(150, 6, utf8_decode($rs['content']), 0, 'L', false);
141
                $this->Ln();
142
            } else {
143
                if ($rs['content'] != "") {
144
                    $this->MultiCell(190, 6, utf8_decode($rs['content']), 0, 'L', false);
145
                }
146
            }
147
        }
148
        $this->Ln(5);
149
    }
150
 
7061 eleazar 151
    function optionTable($questionText, $options) {
152
 
153
 
154
        // Header Table
155
        $this->SetFillColor(255, 255, 255);
156
        $this->SetDrawColor(0, 0, 0);
157
        $this->SetLineWidth(0);
158
        $this->SetFont('Arial', 'B', 9);
159
 
160
        $this->MultiCell(190, 5, utf8_decode($questionText), 0, 'L', false);
161
 
162
        // Body Table
163
 
164
        $this->SetFillColor(204, 204, 204);
165
        $this->SetDrawColor(0, 0, 0);
166
        $this->SetLineWidth(0);
167
        $this->SetFont('Arial', 'B', 9);
168
 
169
        if (count($options)>0) {
170
 
7063 eleazar 171
            $this->Cell(182, 6, utf8_decode('Opcion :'), 1, 0, 'L', true);
7061 eleazar 172
            $this->Cell(8, 6, 'Sel.', 1, 0, 'C', true);
173
            $this->Ln();
174
 
175
            // Body Table
176
            $this->SetFillColor(225, 255, 255);
177
            $this->SetTextColor(0);
178
            $this->SetFont('Arial', '', 9);
179
 
180
            for ($i = 0; $i < count($options); $i++) {
181
 
7063 eleazar 182
                $this->Cell(182, 6, utf8_decode($options[$i]['text']), 1, 0, 'L', false);
7061 eleazar 183
                $this->Cell(8, 6, $options[$i]['selected'] ? 'X' : '', 1, 0, 'C', false);
184
 
185
                $this->Ln();
186
            }
187
        }
188
 
189
 
190
        $this->Ln();
191
    }
192
 
6898 eleazar 193
}