Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
2667 eleazar 1
<?php
2
 
3
namespace LeadersLinked\Library;
4
 
5
use Fpdf\Fpdf;
6
 
7
class InterviewPDF extends FPDF {
15079 efrain 8
 
9
 
10
    public $header;
11
    public $footer;
2667 eleazar 12
 
13
    /**
14
     * Header PDF
15
     */
16
    function Header() {
11267 eleazar 17
 
18
        if ($this->header != '') {
15079 efrain 19
            $this->Image($this->header, 10, 1, 190);
11267 eleazar 20
            $this->SetY(55);
21
        }
2667 eleazar 22
    }
23
 
11267 eleazar 24
    /**
2667 eleazar 25
     * Footer PDF
26
     */
27
    function Footer() {
11267 eleazar 28
        if ($this->footer != '') {
29
            $this->SetY(-40);
15079 efrain 30
            $this->Image($this->footer, 10,$this->getY() , 190);
11267 eleazar 31
        }
2667 eleazar 32
    }
33
 
34
    /**
35
     * Section Scale
36
     */
37
    function sectionScale() {
38
        $this->SetFillColor(225, 255, 255);
39
        $this->SetTextColor(0);
40
        $this->SetFont('Arial', 'B', 9);
41
 
42
 
43
        $this->Cell(35, 8, utf8_decode(' Escala/Niveles:'), 1, 0, 'L', false);
44
 
45
        $this->SetFillColor(225, 255, 255);
46
        $this->SetTextColor(0);
47
        $this->SetFont('Arial', '', 9);
48
 
49
        $this->Cell(155, 8, utf8_decode(' 1: Mínimo  2: Medio  3: Medio-Alto  4: Alto  N/A: No aplica
50
'), 1, 'L', false);
51
        $this->Ln(15);
52
    }
53
 
54
    /**
55
     * Create Table
56
     * @param string $title
57
     * @param array $content
58
     */
59
    function borderTable($title, $content) {
60
 
61
        // Header Table
62
        $this->SetFillColor(204, 204, 204);
63
        $this->SetDrawColor(0, 0, 0);
64
        $this->SetLineWidth(0);
65
        $this->SetFont('Arial', 'B', 9);
66
 
67
        $this->Cell(190, 6, utf8_decode($title), 1, 0, 'L', true);
68
        $this->Ln();
69
 
70
        // Body Table
71
        $this->SetFillColor(225, 255, 255);
72
        $this->SetTextColor(0);
73
 
74
        foreach ($content as $rs) {
75
            if (isset($rs['title'])) {
76
 
77
                $this->SetFont('Arial', 'B', 9);
2967 eleazar 78
                $this->Cell(50, 10, utf8_decode($rs['title']), 1, 0, 'L', false);
79
                $this->MultiCell(140, 10, utf8_decode($rs['content']), 1, 'L', false);
2965 eleazar 80
                $this->Ln();
2667 eleazar 81
            } else {
82
 
83
                $this->SetFont('Arial', '', 9);
84
                $this->MultiCell(190, 6, utf8_decode($rs['content']), 1, 'L', false);
85
            }
86
        }
87
        $this->Ln(5);
88
    }
89
 
90
    /**
91
     * title option table
92
     * @param string $title
93
     */
94
    function titleOptionTable($title) {
95
 
96
        if ($title != '') {
97
            // Body Table
98
            $this->SetFillColor(204, 204, 204);
99
            $this->SetDrawColor(0, 0, 0);
100
            $this->SetLineWidth(0);
101
            $this->SetFont('Arial', 'B', 9);
102
 
103
            $this->Cell(190, 6, utf8_decode($title), 1, 0, 'L', true);
104
            $this->Ln();
105
        }
106
    }
107
 
108
 
109
    /**
110
     * Create Table
111
     * @param string $title
112
     * @param array $content
113
     */
114
    function singleTable($title, $content) {
115
 
116
        // Header Table
117
        $this->SetFillColor(255, 255, 255);
118
        $this->SetDrawColor(0, 0, 0);
119
        $this->SetLineWidth(0);
120
        $this->SetFont('Arial', 'B', 9);
121
 
122
        $this->Cell(190, 6, utf8_decode($title), 0, 0, 'L', true);
123
        $this->Ln();
124
 
125
        // Body Table
126
        $this->SetFillColor(225, 255, 255);
127
        $this->SetTextColor(0);
128
        $this->SetFont('Arial', '', 9);
129
 
130
        foreach ($content as $rs) {
131
            if (isset($rs['title'])) {
132
                $this->Cell(40, 6, utf8_decode($rs['title']), 0, 0, 'L', false);
133
                $this->Cell(150, 6, utf8_decode($rs['content']), 0, 'L', false);
134
                $this->Ln();
135
            } else {
136
                if ($rs['content'] != "") {
137
                    $this->MultiCell(190, 6, utf8_decode($rs['content']), 0, 'L', false);
138
                }
139
            }
140
        }
141
        $this->Ln(5);
142
    }
143
 
144
    /**
145
     * Create Competency Table
146
     * @param int $index
147
     * @param array $competency
148
     */
149
    function competencyTable($index, $competency) {
150
 
151
 
152
        // Header Table
153
        $this->SetFillColor(255, 255, 255);
154
        $this->SetDrawColor(0, 0, 0);
155
        $this->SetLineWidth(0);
156
        $this->SetFont('Arial', 'B', 9);
157
 
158
        $this->MultiCell(190, 5, $index . '- ' . utf8_decode($competency['type']) . ': ' . utf8_decode($competency['name']), 0, 'L', false);
159
 
160
        // Body Table
161
        $this->SetFillColor(225, 255, 255);
162
        $this->SetTextColor(0);
163
        $this->SetFont('Arial', '', 9);
164
 
165
        $this->MultiCell(190, 6, utf8_decode(strip_tags($competency['description'])), 0, 'L', false);
166
 
167
        $this->Ln(3);
168
 
169
        $this->SetFillColor(204, 204, 204);
170
        $this->SetDrawColor(0, 0, 0);
171
        $this->SetLineWidth(0);
172
        $this->SetFont('Arial', 'B', 9);
173
 
174
        $behaviors = $competency['behaviors'];
175
 
176
        if (count($behaviors) > 0) {
177
 
178
            $this->Cell(150, 6, utf8_decode('Conductas observables :'), 1, 0, 'L', true);
179
            $this->Cell(16, 6, 'Nivel', 1, 0, 'C', true);
180
            $this->Cell(24, 6, utf8_decode('Evaluación'), 1, 0, 'C', true);
181
            $this->Ln();
182
 
183
            // Body Table
184
            $this->SetFillColor(225, 255, 255);
185
            $this->SetTextColor(0);
186
 
4256 eleazar 187
 
2667 eleazar 188
 
189
            for ($i = 0; $i < count($behaviors); $i++) {
190
 
4263 eleazar 191
                switch ($behaviors[$i]['evaluation']) {
4257 eleazar 192
                    case "0":
4261 eleazar 193
                        $evaluation = "0%";
4257 eleazar 194
                        break;
195
                    case "1":
196
                        $evaluation = "25%";
197
                        break;
198
                    case "2":
199
                        $evaluation = "50%";
200
                        break;
201
                    case "3":
202
                        $evaluation = "75%";
203
                        break;
204
                    case "4":
205
                        $evaluation = "100%";
206
                        break;
207
                    default :
208
                        $evaluation = "ERROR";
209
                        break;
210
                }
211
 
2667 eleazar 212
                $this->SetFont('Arial', '', 8.5);
213
 
214
                $this->Cell(150, 6, utf8_decode($behaviors[$i]['description']), 1, 0, 'L', false);
215
                $this->Cell(16, 6, $behaviors[$i]['level'] == '0' ? 'N/A' : $behaviors[$i]['level'], 1, 0, 'C', false);
4265 eleazar 216
                $this->Cell(24, 6, $evaluation, 1, 0, 'C', false);
4061 eleazar 217
 
2667 eleazar 218
                $this->Ln();
219
 
2900 eleazar 220
                $this->SetFont('Arial', '', 9);
2667 eleazar 221
 
4268 eleazar 222
                $this->Cell(190, 6, utf8_decode('Comentarios: ') . utf8_decode($behaviors[$i]['comment']), 1, 0, 'B', false);
2667 eleazar 223
 
224
 
225
                $this->Ln();
226
            }
227
        }
228
 
229
 
230
        $this->Ln();
231
    }
232
 
233
}