This repository has been archived by the owner on Aug 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
misc.php
2944 lines (2728 loc) · 80.1 KB
/
misc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker fileencoding=utf-8:
/**
* Funciones diversas útiles en varias fuentes PHP.
* Créditos: Se ha empleado porciones cortas de código y documentación
* disponible en: http://structio.sourceforge.net/seguidor
*
* PHP version 5
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @copyright 2004 Dominio público. Sin garantías.
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público. Sin garantías.
* @link http://sivel.sf.net
* Acceso: SÓLO DEFINICIONES
*/
/**
* Funciones diversas útiles en varias fuentes PHP.
*/
require_once "bcrypt.php";
require_once "Auth.php";
require_once "PEAR.php";
require_once "HTML/QuickForm.php";
require_once "HTML/Common.php";
require_once "DB_DataObject_SIVeL.php";
/**
* Encabezado de un relato
* @global string $GLOBALS['enc_relato']
* @name enc_relato
*/
$GLOBALS['enc_relato']
= "<" ."?xml version=\"1.0\" encoding=\"UTF-8\"?".">\n"
. "<!DOCTYPE relatos PUBLIC \"-//SINCODH/DTD relatos 0.97\" "
. "\"relatos.dtd\">\n"
. '<'.'?xml-stylesheet type="text/xsl" href="xrlat-a-html.xsl"?'
. ">\n";
/**
* Número de caso usado en búsquedas --no puede usarse en casos.
* @global unknown $GLOBALS['idbus']
* @name $idbus
*/
$GLOBALS['idbus']=-1;
/* -------- OPERACIONES CON CADENAS */
/**
* Convierte un nombre a una forma normal en español. En mayúsculas,
* sin espacios redundantes y sin tildes.
*
* @param string $s Nombre
*
* @return string Convertido a "forma normal"
*/
function a_forma_normal($s)
{
$r = a_mayusculas($s);
$r = trim($r);
$r = preg_replace("/ +/", "", $r);
$r = str_replace(
array('Á', 'É', 'Í', 'Ó', 'Ú', 'á', 'é', 'í', 'ó', 'ú'),
array('A', 'E', 'I', 'O', 'U', 'A', 'E', 'I', 'O', 'U'),
$r
);
return $r;
}
/**
* Convierte a minúsculas textos en español
*
* @param string $s Cadena
*
* @return string Convertida a minúsculas
*/
function a_minusculas($s)
{
$r = mb_strtolower($s, 'UTF8');
$r = str_replace(
array('Á', 'É', 'Í', 'Ó', 'Ú'),
array('á', 'é', 'í', 'ó', 'ú'), $r
);
return $r;
}
/**
* Convierta mayúsculas textos en español
*
* @param string $s Cadena
*
* @return string Convertida a mayúscula
*/
function a_mayusculas($s)
{
$r = str_replace(
array('á', 'é', 'í', 'ó', 'ú', 'ñ', 'ü'),
array('Á', 'É', 'Í', 'Ó', 'Ú', 'Ñ', 'Ü'),
$s
);
$r = mb_strtoupper($r, 'UTF8');
return $r;
}
/**
* Convierte a mayúscula la primera letra de cada palabra de $s y el resto a
* minúsculas.
*
* @param string $s Cadena
*
* @return string Convertida primera letra de cada palabra a mayúscula
* y resto a minúsculas
*/
function prim_may($s)
{
$rs = a_minusculas($s);
$ant = 1; // Próximo debe ser mayúscula
for ($i = 0; $i < strlen($rs); $i++) {
if ($ant == 1) {
$rs[$i] = a_mayusculas($rs[$i]);
$ant = 0;
}
if ($rs[$i] == ' ' || $rs[$i] == '('
|| $rs[$i] == '\t' || $rs[$i] == '\n'
) {
$ant = 1;
}
}
return $rs;
}
/**
* Caracteres escapados en LaTeX
*
* @param string $c caracter
*
* @return string Representación laTeX
*/
function car2latex($c)
{
switch ($c) {
case '$':
$r = '\\$';
break ;
case '\\':
$r = '\\textbackslash';
break;
case '{':
$r = '$\\{$';
break;
case '}':
$r = '$\\}$';
break;
case '%':
$r = '\\%';
break;
case '_':
$r = '\\_';
break;
case '&':
$r = '\\&';
break;
case '#':
$r = '\\#';
break;
case '^':
$r = '\\^{}';
break;
case '~':
$r = '\\~{}';
break;
case '¿':
$r = '?`';
break;
case '¡':
$r = '!`';
break;
case '|':
$r = '\\textbar`';
break;
default:
$r = $c;
break;
}
return $r;
}
/**
* Decide si $cadena comienza con $subcadena
* @return bool
*/
function comienza_con($cadena, $subcadena)
{
return $subcadena === "" || (strlen($subcadena) <= strlen($cadena) &&
substr($cadena, 0, strlen($subcadena)) == $subcadena);
}
/**
* Decide si $cadena termina con $subcadena
* @return bool
*/
function termina_con($cadena, $subcadena)
{
return $subcadena === "" || (strlen($subcadena) <= strlen($cadena) &&
substr($cadena, strlen($cadena) - strlen($subcadena)) == $subcadena);
}
/**
* Convierte de texto a laTeX
*
* @param string $s Texto
*
* @return string Latex
*/
function txt2latex($s)
{
$r = "";
$nc = 0; // Número de comillas encontradas
$na = 0; // Número de apostrofes encontradas
for ($i = 0; $i < strlen($s); $i++) {
switch ($s{$i}) {
case '"':
$nc++;
if (($nc % 2)==1) {
$r .= "``";
} else {
$r .= "''";
}
break;
case '\'':
$na++;
if (($na % 2)==1) {
$r .= "`";
} else {
$r .= "'";
}
break;
default:
$r .= car2latex($s{$i});
break;
}
}
return $r;
}
/**
* Convierto de texto a tex
*
* @param string $t texto
*
* @return string Tex
*/
function formato_texto_tex($t)
{
$num_com = 0; // Número de comillas
$num_apo = 0; // Número de apostrofes
$r = "";
for ($i = 0; $i < strlen($t); $i++) {
$c = substr($t, $i, 1);
switch ($c) {
case '$':
$r .= '\$';
break;
case '"':
if ($num_com % 2 == 0) {
$r .= "``";
} else {
$r .= "''";
}
$num_com++;
break;
case '\'':
if ($num_apo % 2 == 0) {
$r .= "`";
} else {
$r .= "'";
}
$num_apo++;
break;
default:
$r .= $c;
break;
}
}
//$t=str_replace('$', '\$', $t);
return $r;
}
/* -------- ARREGLOS */
/**
* Retorna el subarreglo de $ar que tiene llaves de $ind
*
* @param array $ar Arreglo
* @param string[] $ind Arreglo de llaves
*
* @return array Subarreglo de $arr cuyas llaves están en $ind
**/
function subarreglo($ar, $ind)
{
$res = array();
foreach ($ind as $llave) {
if (isset($ar[$llave])) {
$res[$llave] = $ar[$llave];
}
}
return $res;
}
/* -------- OPERACIONES SOBRE estructuras para HTML_Menu */
/**
* Agrega un submenú a un menu como los requeridos por
* HTML_Menu
*
* @param object &$menu Menu por modificar
* @param string $titulo Titulo por buscar
* @param string $nsubtitulo Subtitulo por agregar al titulo buscado
* @param string $nurl Url por asociar al subtitulo agregado
* @param array $nsub Subarbol por asociar al subtitulo agregado
*
* @return boolean true si y solo si encuentra el titulo y puede añadir subtitulo nuevo
*/
function html_menu_agrega_submenu(&$menu, $titulo, $nsubtitulo, $nurl,
$nsub = null
) {
if ($titulo == null) {
assert($nsubtitulo != null && strlen($nsubtitulo) > 0);
foreach ($menu as $l => $d) {
if ($d['title'] == $nsubtitulo) {
return false;
}
}
$n = array('title' => $nsubtitulo,
'url' => $nurl, 'sub' => $nsub
);
$menu[] = $n;
return true;
}
foreach ($menu as $l => $d) {
if ($d['title'] == $titulo) {
$n = array('title' => $nsubtitulo,
'url' => $nurl, 'sub' => $nsub
);
if ($d['sub'] == null) {
$menu[$l]['sub'] = array($n);
} else {
foreach ($d['sub'] as $sd) {
if ($sd['title'] == $nsubtitulo) {
return false;
}
}
$menu[$l]['sub'][] = $n;
}
return true;
}
if ($d['sub'] != null) {
$rhm = html_menu_agrega_submenu(
$menu[$l]['sub'], $titulo,
$nsubtitulo, $nurl, $nsub
);
if ($rhm) {
return true;
}
}
}
return false;
}
/**
* Retorna arreglo con URLs de un arreglo apropiado para HTML_Menu
*
* @param array $m Arreglo para HTML_Menu
*
* @return array Arreglo de URLs
*/
function html_menu_toma_url($m)
{
$r = array();
if (!is_array($m)) {
return $r;
}
foreach ($m as $ent) {
if (isset($ent['url']) && $ent['url'] != null) {
$r[] = $ent['url'];
}
if (isset($ent['sub']) && $ent['sub'] != null) {
$r = array_merge($r, html_menu_toma_url($ent['sub']));
}
}
return $r;
}
/* -------- ARCHIVOS */
/**
* Envía a salida estándar contenido del archivo noma
*
* @param string $noma Nombre del archivo
* @param string $esc Escapar contenido antes de presentarlo
*
* @return void
* @see http://www.php.net/manual/en/function.fopen.php
**/
function muestra_archivo($noma, $esc = false)
{
$rh = fopen($noma, "rb");
while ($rh != false && !feof($rh)) {
if ($esc === true) {
echo_esc(fread($rh, 1024));
} else {
$html_l = fread($rh, 1024);
echo $html_l;
}
}
fclose($rh);
}
/* -------- FORMULARIOS Y SESIÓN */
/**
* Agregar tabla a formulario
*
* @param string $nom Nombre de formulario
* @param object &$f Formulario
* @param int $idcaso Id. del caso
* @param bool $nuevo Si es nuevo
* @param object &$da Dataobject
*
* @return object Formulario
*/
function agregar_tabla($nom, &$f, $idcaso, $nuevo, &$da)
{
if (!isset($da) || $da == null) {
$da =& objeto_tabla($nom);
$da->id_caso = $idcaso;
}
if (!$nuevo) {
$da->find();
$da->fetch();
}
$ba =& DB_DataObject_FormBuilder::create(
$da,
array(
'requiredRuleMessage' => _('El campo %s es indispensable.'),
'ruleViolationMessage' =>
_('%s: El valor que ha ingresado no es válido.')
)
);
$ba->createSubmit = 0;
$ba->useForm($f);
$ba->getForm();
return $ba;
}
/**
* Preparación de información en acciones que responden a
* eventos de HTML_QuickForm_Controller
*
* @param mixed &$page Página
*
* @return boolean Validado
*/
function valida(&$page)
{
$pageName = $page->getAttribute('id');
$data =& $page->controller->container();
$data['values'][$pageName] = $page->exportValues();
$data['valid'][$pageName] = $page->validate();
if (!$data['valid'][$pageName]) {
$page->handle('display');
return false;
}
return true;
}
/**
* Presenta un error de validación no fatal.
*
* @param string $msg Mensaje de error
* @param array $valores Valores del formulario por recuperar
* @param string $iderr Si es no nulo variable de sesión donde ponerlo
* @param string $enhtml Mensaje en HTML
*
* @return void
*/
function error_valida($msg, $valores, $iderr = '', $enhtml = false,
$enviar_encabezados = false)
{
if (isset($valores) && is_array($valores) && count($valores) > 0) {
$_SESSION['recuperaErrorValida'] = $valores;
}
if ($iderr != '') {
$_SESSION[$iderr] = $msg;
}
$mcod = $enhtml ? $msg : json_encode($msg);
if (!headers_sent()) {
if ($enviar_encabezados) {
encabezado_envia(); # Es problemático enviar encabezados siempre
# por ejemplo si anexo tiene falla se pierde los datos
# de datos basicos (fecha, frontera, region) quedando la fecha
# del anexo que falló
echo "<script language=\"JavaScript\">";
echo "alert('" . json_encode($msg) . "');";
echo "</script>";
}
}
echo "<span style='color: red'>". $mcod. "</span>";
}
/**
* Presenta resultado de una validación.
* La primera columna de la consulta $cons debe ser una identificación
* de caso
* Las funciones SQL son tomadas de:
* http://www.postgresonline.com/journal/archives/
* 68-More-Aggregate-Fun-Whos-on-First-and-Whos-on-Last.html
*
* @param object &$db Conexión a base de datos
* @param string $mens Mensaje por mostrar
* @param string $cons Consulta pr realizar
* @param bool $confunc Incluir primer usuario que trabajo caso, en este
* caso columna con id del caso se llama id_caso
*
* @return void
*/
function res_valida(&$db, $mens, $cons, $confunc = false)
{
if ($confunc) {
hace_consulta(
$db,
"CREATE OR REPLACE FUNCTION
first_element_state(anyarray, anyelement) RETURNS anyarray AS
$$
SELECT CASE WHEN array_upper($1,1) IS NULL
THEN array_append($1,$2)
ELSE $1
END;
$$
LANGUAGE 'sql' IMMUTABLE;", false, false
);
hace_consulta(
$db,
"CREATE OR REPLACE FUNCTION first_element(anyarray)
RETURNS anyelement AS
$$
SELECT ($1)[1] ;
$$
LANGUAGE 'sql' IMMUTABLE;",
false, false
);
hace_consulta(
$db,
"CREATE AGGREGATE first(anyelement) (
SFUNC = first_element_state,
STYPE = anyarray,
FINALFUNC = first_element
);", false, false
);
hace_consulta(
$db,
"CREATE VIEW primerusuario AS
SELECT id_caso, MIN(fechainicio) AS fechainicio,
FIRST(id_usuario) AS id_usuario
FROM caso_usuario
GROUP BY id_caso ORDER BY id_caso;", false, false
);
}
echo "<p>" . htmlentities($mens, ENT_COMPAT, 'UTF-8') . ": ";
if ($confunc) {
$r = hace_consulta(
$db,
"SELECT primerusuario.id_caso,
usuario.nusuario, sub.*
FROM primerusuario, usuario, ($cons) AS sub
WHERE primerusuario.id_usuario = usuario.id
AND primerusuario.id_caso = sub.id"
);
} else {
#echo "OJO res_valida, cons=$cons<br>";
$r = hace_consulta($db, $cons);
}
$nr = $r->numRows();
echo (int)$nr;
if ($nr > 0) {
echo "<center><table border='1'>";
$row = array();
while ($r->fetchInto($row)) {
echo "<tr>";
$nr = 0;
foreach ($row as $dat) {
if ($nr == 0) {
$n = (int)$dat;
$html_l = "<a href='captura_caso.php?modo=edita&id=$n'>"
. "$n</a>";
} else {
$html_l = $dat;
}
$nr++;
echo "<td>$html_l</td>";
}
echo "</tr>\n";
}
echo "</table></center>";
}
echo "</p>";
}
/**
* Retira variables de sesión
*
* @return void
*/
function unset_var_session()
{
unset($_SESSION['basicos_id']);
unset($_SESSION['bus_fecha_final']);
unset($_SESSION['bus_fecha_inicial']);
unset($_SESSION['camDepartamento']);
unset($_SESSION['camMunicipio']);
foreach ($GLOBALS['ficha_tabuladores'] as $tab) {
list(, $cl) = $tab;
$vars = get_class_vars($cl);
if (isset($vars['pref'])) {
unset($_SESSION[$vars['pref'] . '_pag']);
unset($_SESSION[$vars['pref'] . '_total']);
unset($_SESSION[$vars['pref'] . '_error_valida']);
}
}
unset($_SESSION['fvm_nuevo_copia_id_combatiente']);
unset($_SESSION['fvm_error_valida']);
unset($_SESSION['fvi_error_valida']);
unset($_SESSION['fvc_error_valida']);
unset($_SESSION['fvc_nuevo_copia_id_grupoper']);
unset($_SESSION['fvi_nuevo_copia_id_persona']);
unset($_SESSION['fvm_pag']);
unset($_SESSION['fvm_total']);
unset($_SESSION['id_Municipio']);
unset($_SESSION['id_departamento']);
unset($_SESSION['id_municipio']);
unset($_SESSION['_Caso_container']);
}
/**
* Pone en campos de un formulario los valores del arreglo valores
*
* @param mixed &$pag Formulario
* @param array $campos Campos por establecer
* @param array $valores Valores indexados por campos
*
* @return void
*/
function establece_valores_form(&$pag, $campos, $valores)
{
foreach ($campos as $c) {
$e =& $pag->getElement($c);
if (!PEAR::isError($e) && isset($valores[$c])) {
$e->setValue(var_escapa($valores[$c]));
}
}
}
/**
* Retorna un elemento de un formulario HTML_QuickForm buscando de
* requerirse dentro de grupos.
*
* @param object $form HTML_QuickForm
* @param array $nom Nombre del elemento buscado
* @param array $yaanalizados No revisar elementos/grupos con estos nombres
*
* @return object o null si no lo encuentra
*/
function toma_elemento_recc($form, $nom, $yaanalizados = array())
{
assert(is_array($yaanalizados));
$le = $form->_elements; // elementIndex no funciona en group
foreach ($le as $key => $el) {
$nomel = $el->getName();
if ($nom == $nomel) {
return $el;
}
if (!in_array($nomel, $yaanalizados)) {
$yaanalizados[] = $nomel;
if ($el->_type == 'group') {
$group =& $form->getElement($nomel);
$r =& toma_elemento_recc($group, $nom, $yaanalizados);
if ($r != null) {
return $r;
}
}
}
}
return null;
}
/**
* Retorna valor SIN INFORMACION del campo $c del DataObject $do
*
* @param object &$do DataObject
* @param string $c Campo
*
* @return integer Que corresonde al valor SIN INFORMACION
*/
function valorSinInfo(&$do, $c)
{
global $dbnombre;
$v = null;
$enl = parse_ini_file(
$_SESSION['dirsitio'] . "/DataObjects/" .
$GLOBALS['dbnombre'] . ".links.ini",
true
);
$exc = isset($enl[$do->__table][$c]);
if ($exc) {
$rel = $enl[$do->__table][$c];
$pd = strpos($rel, ':');
$ndo = substr($rel, 0, $pd);
$db2 = new DB_DataObject();
sin_error_pear($db2);
$or = $db2->factory($ndo);
} else {
$or =& $do;
}
if (!PEAR::isError($or)
&& is_callable(array($or, 'idSinInfo'))
) {
$v = $or->idSinInfo();
//echo "OJO sacando valor {$v}<br>";
if (is_array($v)) {
if (isset($v[$c])) {
$v = $v[$c];
} else {
$v = null;
}
}
}
return $v;
}
/**
* Pone valores por defecto en una pestaña, para ser llamado desde
* formularioValores
*
* PORHACER: Que no use el booleanFields sino que examine tipos de
* variable global
*
* @param object $d DB_DataObject
* @param object $form HTML_QuickForm
* @param bool $merr Si debe mostrar errores
*
* @return void
*/
function valores_pordefecto_form($d, $form, $merr = true)
{
//echo "OJO valores_pordefecto_form(d, {$d->__table}, form)<br>";
foreach ($d->fb_fieldsToRender as $c) {
//echo "<hr>OJO c=$c<br>";
$cq = toma_elemento_recc($form, $c);
if (($cq == null || PEAR::isError($cq)) && $merr) {
echo_esc(
sprintf(
_("Error: No se encontró elemento %s en el formulario %s")
. "<br>", $c, $d->__table
)
);
} else if ($cq != null && is_callable(array($cq, 'setValue'))) {
//echo "OJO setValue callable<br>";
if (isset($d->fb_booleanFields)
&& in_array($c, $d->fb_booleanFields)
) {
//echo "OJO booleano<br>";
if ((!isset($d->$c) || $d->$c===0 || $d->$c==='f')) {
$cq->setValue(0);
} else {
$cq->setValue(1);
}
} else {
if (!isset($d->$c) || $d->$c == null) {
$tab = $d->table();
if (($tab[$c] & DB_DATAOBJECT_STR)
|| ($tab[$c] & DB_DATAOBJECT_TXT)
|| ($tab[$c] & DB_DATAOBJECT_DATE)
) {
//echo "OJO empleando ''<br>";
$v = '';
} else {
//echo "OJO empleando valorSinInfo c=$c,
//tab[c]={$tab[$c]}, d->c={$d->$c}<br>";
$v = valorSinInfo($d, $c);
}
} else {
$v = $d->$c;
//echo "OJO poniendo valor {$v}<br>";
}
$cq->setValue($v);
}
}
}
}
/**
* Identificación de departamento elegido por usuario.
*
* @param object $form Formulario
*
* @return string id de departamento
*/
function ret_id_departamento($form)
{
$ndepartamento = null;
if (isset($form->_submitValues['id_departamento'])) {
$ndepartamento = (int)$form->_submitValues['id_departamento'] ;
} else if (isset($_SESSION['id_departamento'])) {
$ndepartamento = $_SESSION['id_departamento'] ;
}
return $ndepartamento;
}
/**
* Identificación del municpio elegido por usuario.
*
* @param object $form Formulario
*
* @return string id de municipio
*/
function ret_id_municipio($form)
{
$nmunicipio = null;
if (isset($form->_submitValues['id_municipio'])) {
$nmunicipio = (int)$form->_submitValues['id_municipio'] ;
} else if (isset($_SESSION['id_municipio'])) {
$nmunicipio = $_SESSION['id_municipio'] ;
}
return $nmunicipio;
}
/**
* Identificación de la clase geográfica elegida por usuario
*
* @param object $form Formulario
*
* @return integer|null id de clase
*/
function ret_id_clase($form)
{
$nclase = null;
if (isset($form->_submitValues['id_clase'])) {
$nclase= (int)$form->_submitValues['id_clase'] ;
}
return $nclase;
}
/* -------- HTML */
/**
* Presenta encabezado
*
* @param string $titulo Título
* @param string $cabezote Imagen de Cabezote
*
* @return void
*/
function encabezado_envia($titulo = null, $cabezote = '')
{
// http://www.w3.org/TR/html5-diff/
echo '<' . '!doctype html>
<html>
<head>
<meta charset = "UTF-8">
<script src = "lib/jquery-2.0.3.min.js"></script>
<script src = "sivel.js"></script>
';
if (isset($titulo)) {
echo ' <title>' . htmlentities($titulo, ENT_COMPAT, 'UTF-8') . '</title>';
}
echo '<link rel = "stylesheet" type = "text/css" href = "estilo.css" />
<!--Fuentes de dominio publico. Sin garantias. 2004-->
<!-- http://sivel.sf.net -->
<script language = "JavaScript">
<!--
function envia(que){
document.forms[0]._qf_default.value = que;
document.forms[0].submit();
}
// -->
<!-- Contador por: Nannette Thacker -->
<!-- http://www.shiningstar.net -->
<!-- Original by : Ronnie T. Moore -->
<!-- Web Site: The JavaScript Source -->
<!-- Use one function for multiple text areas on a page -->
<!-- Limit the number of characters per textarea -->
<!-- Begin
function textCounter(field, cntfield, maxlimit)
{
if (field.value.length > maxlimit) // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
// otherwise, update \'characters left\' counter
else
cntfield.value = maxlimit - field.value.length;
}
// End -->
<' . '/script>';
if ($cabezote != '' && file_exists($cabezote)) {
// http://www.php.net/manual/en/function.fopen.php
$rh = fopen($cabezote, "rb");
while ($rh != false && !feof($rh)) {
$html_l = fread($rh, 1024);
echo $html_l;
}
fclose($rh);
} else {
$html_f = isset($GLOBALS['fondo']) ? $GLOBALS['fondo'] : '';
echo '</' . 'head><' . 'body background="' . $html_f . '">';
}
}
/**
* Presenta pie de página general en captura
*
* @param string $pie Archivo con pie de página por mostrar
*
* @return void
*/
function pie_envia($pie = '')
{
if ($pie != '' && file_exists($pie)) {
$rh = fopen($pie, "rb");
while ($rh != false && !feof($rh)) {
$html_l = fread($rh, 1024);
echo $html_l;
}
fclose($rh);
} else {
echo '</' . 'body></' . 'html>';
}
}
/**
* Genera enlace a un caso (reporte general por abrir en otra ventana)
*
* @param integer $id Identificación del caso
*
* @return string Cadena HTML con enlace a caso
*/
function enlace_caso_html($id)
{
return "<a target='_otro' href='consulta_web.php?" .
"_qf_consultaWeb_consulta=Consulta" .
"&mostrar=general&id_casos=$id" .
"&caso_memo=1&caso_fecha=1&m_ubicacion=1" .
"&m_victimas=1&m_presponsables=1&m_tipificacion=1" .
"'>$id</a>";
}