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
/
json_busca.php
74 lines (65 loc) · 1.98 KB
/
json_busca.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
<?php
// vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker fileencoding=utf-8:
/**
* Busca y retorna información de una tabla en formato JSON
*
* PHP version 5
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara Patiño <vtamara@pasosdeJesus.org>
* @copyright 2013 Dominio público. Sin garantías.
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público. Sin garantías.
* Acceso: CONSULTA PÚBLICA
* @link http://sivel.sf.net
*/
/**
* Busca y retorna información de una tabla en formato JSON
*/
require_once "aut.php";
require_once $_SESSION['dirsitio'] . "/conf.php";
require_once 'misc.php';
if (isset($GLOBALS['consulta_publica_deshabilitada'])
&& $GLOBALS['consulta_publica_deshabilitada']
) {
global $dsn;
$aut_usuario = "";
$db = autentica_usuario($dsn, $aut_usuario, 0);
}
require_once $_SESSION['dirsitio'] . '/conf_int.php';
require_once 'misc_caso.php';
$ret = array();
if (isset($_GET['tabla'])) {
$tabla = var_escapa($_GET['tabla']);
act_globales();
$u = html_menu_toma_url($GLOBALS['menu_tablas_basicas']);
if (!is_string($tabla) && !in_array($tabla, $u)) {
die(_("La tabla '") . $tabla . _("' no es básica"));
}
$do = objeto_tabla($tabla);
sin_error_pear($do);
$db =& $do->getDatabaseConnection();
sin_error_pear($db);
$q = "SELECT * FROM $tabla WHERE fechadeshabilitacion IS NULL ";
$sep = " AND ";
foreach ($_GET as $cs => $vs) {
$c = var_escapa($cs);
if (in_array($c, $do->fb_preDefOrder)) {
$v = var_escapa($vs);
$q .= $sep . " $c = '$v'";
$sep = " AND ";
}
}
$q .= " ORDER BY nombre";
//trigger_error("q=" . $q);
$db->setFetchMode(DB_FETCHMODE_ASSOC);
$r = hace_consulta($db, $q);
sin_error_pear($r);
$row = array();
while ($r->fetchInto($row)) {
$ret[] = $row;
}
}
echo json_encode($ret);
//trigger_error("json_municipios terminó");
?>