Пример #1
0
 function mostrarProgramacionAmbientesFisicos($datos)
 {
     $funcion = '';
     $oLCronograma = new LCronograma();
     $datos == '' ? $arrayFilas1 = array() : ($arrayFilas1 = $oLCronograma->listarProgramacionAmbientesFisicos($datos));
     $arrayCabecera = array("0" => "AMB.FIS.", "1" => "FECHA", "2" => "TURNO", "3" => "PUESTO", "4" => "MEDICO");
     $arrayTipo = array("0" => "c", "1" => "c", "2" => "c", "3" => "c", "4" => "c", "5" => "c");
     $o_Tabla = new Tabla1($arrayCabecera, 12, $arrayFilas1, 'tablaOrden', 'filax', 'filay', 'filaSeleccionada', 'OnClick', $funcion, 0, $arrayTipo);
     $tablaHTML = $o_Tabla->getTabla();
     $row_ini = "<table width='100%'>";
     $row_fin = "</table>";
     return $row_ini . $tablaHTML . $row_fin;
 }