Exemple #1
0
 public function obtenerMedicosGeneral($apellidoPaterno, $ApellidoMaterno, $Nombres, $funcion)
 {
     $o_LPersona = new LPersona();
     $arrayFilas = $o_LPersona->getListaMedicosGeneral($apellidoPaterno, $ApellidoMaterno, $Nombres, $funcion);
     $arrayTipo = array("5" => "h", "1" => "h", "2" => "h");
     $arrayColorEstado = array("1" => "5", "2" => "2", "3" => "3", "4" => "4", "5" => "5", "6" => "6", "7" => "7", "8" => "8", "9" => "9");
     $arrayCabecera = array("1" => "NOMBRE", "2" => "C.COSTO");
     $o_Html = new Tabla1($arrayCabecera, 5, $arrayFilas, 'tablaOrden', 'filax', 'filay', 'filaSeleccionada', 'onClick', $funcion, 4, $arrayTipo, 0, $arrayColorEstado);
     $o_Html->setColumnasOrdenar(array("1", "2"));
     return $o_Html->getTabla();
 }