Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 1286 Rev 1288
Línea 708... Línea 708...
708
        $sections = json_decode($performanceEvaluation->content, true);
708
        $sections = json_decode($performanceEvaluation->content, true);
Línea 709... Línea 709...
709
 
709
 
Línea 710... Línea 710...
710
                    for ($i = 0; $i < count($sections); $i++) {
710
                    for ($i = 0; $i < count($sections); $i++) {
-
 
711
                        
-
 
712
                        $pdf->singleTable($sections[$i]['title'], [array('content' => $sections[$i]['text'])]);
-
 
713
                        
-
 
714
                        if($sections[$i]['type']=='multiple'){
-
 
715
                            
-
 
716
                             for ($o = 0; $o < count($sections[$i]['options']); $o++) {
-
 
717
                        
-
 
718
                        $pdf->singleTable($sections[$i]['options'][$o]['text'], [array('content' => '')]);
-
 
719
                        
-
 
720
                       
-
 
721
 
Línea 711... Línea 722...
711
                        
722
                    }
Línea 712... Línea 723...
712
                        $pdf->singleTable($sections[$i]['title'], [array('content' => $sections[$i]['text'])]);
723
                        }
713
 
724