Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15394 Rev 15403
Línea 197... Línea 197...
197
        $this->SetFillColor(204, 204, 204);
197
        $this->SetFillColor(204, 204, 204);
198
        $this->SetDrawColor(0, 0, 0);
198
        $this->SetDrawColor(0, 0, 0);
199
        $this->SetLineWidth(0);
199
        $this->SetLineWidth(0);
200
        $this->SetFont('Arial', 'B', 9);
200
        $this->SetFont('Arial', 'B', 9);
Línea 201... Línea 201...
201
 
201
 
Línea 202... Línea 202...
202
        if (count($behaviors)>0) {
202
        if ($behaviors) {
203
 
203
 
204
            $this->Cell(150, 6, utf8_decode('Conductas observables :'), 1, 0, 'L', true);
204
            $this->Cell(155, 6, utf8_decode('Conductas observables :'), 1, 0, 'L', true);
205
            $this->Cell(8, 6, '1', 1, 0, 'C', true);
205
            $this->Cell(7, 6, '1', 1, 0, 'C', true);
206
            $this->Cell(8, 6, '2', 1, 0, 'C', true);
206
            $this->Cell(7, 6, '2', 1, 0, 'C', true);
207
            $this->Cell(8, 6, '3', 1, 0, 'C', true);
207
            $this->Cell(7, 6, '3', 1, 0, 'C', true);
208
            $this->Cell(8, 6, '4', 1, 0, 'C', true);
208
            $this->Cell(7, 6, '4', 1, 0, 'C', true);
Línea 209... Línea 209...
209
            $this->Cell(8, 6, 'N/A', 1, 0, 'C', true);
209
            $this->Cell(7, 6, 'N/A', 1, 0, 'C', true);
210
            $this->Ln();
210
            $this->Ln();
211
 
211
 
212
            // Body Table
212
            // Body Table
Línea 213... Línea 213...
213
            $this->SetFillColor(225, 255, 255);
213
            $this->SetFillColor(225, 255, 255);
Línea 214... Línea 214...
214
            $this->SetTextColor(0);
214
            $this->SetTextColor(0);
215
            $this->SetFont('Arial', '', 9);
215
            $this->SetFont('Arial', '', 9);
216
 
216
 
217
            for ($i = 0; $i < count($behaviors); $i++) {
217
            for ($i = 0; $i < count($behaviors); $i++) {
218
 
218
 
219
                $this->Cell(150, 6, utf8_decode($behaviors[$i]['description']), 1, 0, 'L', false);
219
                $this->Cell(155, 6, utf8_decode($behaviors[$i]['description']), 1, 0, 'L', false);
Línea 220... Línea 220...
220
                $this->Cell(8, 6, $behaviors[$i]['level'] == '1' ? 'X' : '', 1, 0, 'C', false);
220
                $this->Cell(7, 6, $behaviors[$i]['level'] == '1' ? 'X' : '', 1, 0, 'C', false);
221
                $this->Cell(8, 6, $behaviors[$i]['level'] == '2' ? 'X' : '', 1, 0, 'C', false);
221
                $this->Cell(7, 6, $behaviors[$i]['level'] == '2' ? 'X' : '', 1, 0, 'C', false);
222
                $this->Cell(8, 6, $behaviors[$i]['level'] == '3' ? 'X' : '', 1, 0, 'C', false);
222
                $this->Cell(7, 6, $behaviors[$i]['level'] == '3' ? 'X' : '', 1, 0, 'C', false);