forked from pasosdeJesus/SIVeL
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tabla.php
233 lines (209 loc) · 6.29 KB
/
tabla.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
<?php
// vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker fileencoding=utf-8:
/**
* Presenta registros de una tabla básica
* Referencias:
* - http://www.21st.de/downloads/rapidprototyping.pdf
* - http://pear.php.net/manual/en/package.database.db-dataobject.intro-purpose.php
*
* 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.
* @version CVS: $Id: tabla.php,v 1.48.2.2 2011/10/18 16:05:03 vtamara Exp $
* @link http://sivel.sf.net
*/
/**
* Presenta registros de una tabla básica
*/
require_once "aut.php";
require_once $_SESSION['dirsitio'] . '/conf.php';
require_once "misc.php";
require_once "misc_caso.php";
$aut_usuario = "";
$db = autenticaUsuario($dsn, $accno, $aut_usuario, 11);
/**
* Muestra un registro
*
* @param object &$d DataObject con registro por mostrar
* @param string $titulo Título
* @param string $k Llave del elemento d
*
* @return array ($pk, $t) donde $pk es llave primaria y $t es texto por mostrar
*/
function registro(&$d, $titulo, $k)
{
$vd = get_object_vars($d);
if (is_array($titulo)) {
$t = "";
$sep = "";
$psep = "";
$p = " (";
foreach ($titulo as $c) {
// getLink no soporta llaves foraneas múltiples
// Debemos hacerlo a mano en caso de clase y categoria
$ds = null;
if ($c == 'id_municipio') {
$ds = objeto_tabla('Municipio');
$ds->id = $d->id_municipio;
$ds->id_departamento = $d->id_departamento;
$ds->find(1);
} else if ($c == 'id_supracategoria') {
$ds = objeto_tabla('Supracategoria');
$ds->id = $d->id_supracategoria;
$ds->id_tipo_violencia = $d->id_tipo_violencia;
$ds->find(1);
} else if (in_array($c, $k)) {
$ds = $d->getLink($c);
}
if ($ds != null && !PEAR::isError($ds)) {
$n = $ds->fb_select_display_field;
$p .= $psep . $ds->$n;
$psep = ", ";
} else {
$t .= $sep . $vd[$c];
}
$sep = ", ";
}
if ($p != " (") {
$t .= $p . ")";
}
} else {
$t = $vd[$titulo];
}
$pk = "";
if (is_array($k)) {
$sep = "";
foreach ($k as $nl) {
$pk .= $sep . $nl . "=".($d->$nl);
$sep = ",";
}
} else {
$pk = $d->$k;
}
return array($pk, $t);
}
/**
* Presenta rama de árbol.
* En la tabla se requiere que sea una llave simple con nombre id
* y que el elemento papa se llame id_papa
*
* @param string $tabla Nombre de tabla
* @param string $titulo Titulo por mostrar
* @param string $idpapa Id. de papá
* @param boolean $arbol Es árbol?
* @param boolean $indenta Cadena con espacios para indentar
*
* @return void
**/
function rama($tabla, $titulo, $idpapa, $arbol, $indenta)
{
$d = objeto_tabla($tabla);
if (PEAR::isError($d)) {
die($d->getMessage());
}
if ($arbol) {
$d->id_papa = $idpapa;
}
if (is_array($titulo)) {
$d->orderBy(implode(",", $titulo));
} else {
$d->orderBy($titulo);
}
$d->find();
$pm = array();
$k = $d->keys();
while ($d->fetch()) {
if (!$arbol || $d->id_papa == $idpapa) {
$pm[] = $d->id;
}
}
foreach ($pm as $tid) {
$d2 = objeto_tabla($tabla);
if (PEAR::isError($d2)) {
die($d2->getMessage());
}
$d2->get($tid);
if ($d2->id_papa == $idpapa) {
list($pk, $t) = registro($d2, $titulo, $k);
$html_l = sprintf(
'%s<a href="detalle.php?id=%s&tabla=%s">
%s</a><br>',
$indenta,
urlencode($pk),
urlencode($tabla),
htmlentities($t)
);
echo $html_l;
}
if ($arbol) {
rama($tabla, $titulo, $d2->id, true, $indenta . " ");
}
}
}
if (!isset($_GET['tabla'])) {
die('Por favor especificar parametro "tabla"');
}
$tabla = var_escapa($_GET['tabla'], $db);
actGlobales();
$u = html_menu_toma_url($GLOBALS['menu_tablas_basicas']);
if (!in_array($tabla, $u)) {
die("La tabla '$tabla' no es básica");
}
$d = objeto_tabla($tabla);
if (PEAR::isError($d)) {
die($d->getMessage());
}
if (isset($d->nom_tabla)) {
$nom_tabla= $d->nom_tabla;
} else if (isset($GLOBALS['etiqueta'][$d->__table])) {
$nom_tabla= $GLOBALS['etiqueta'][$d->__table];
} else {
$nom_tabla = $tabla;
}
//encabezado_envia("Tabla " . $nom_tabla);
echo '<table border = "0" width = "100%"><tr>'
. ' <td style = "white-space: nowrap;'
. 'background-color:#CCCCCC;" align = "center" '
. 'valign = "top" colspan = "2"><b>'
. htmlentities($nom_tabla) . '</b></td></tr></table>';
$k = $d->keys();
$titulo = $_DB_DATAOBJECT_FORMBUILDER['CONFIG']['select_display_field'];
if (isset($d->fb_linkDisplayFields)) {
$titulo = $d->fb_linkDisplayFields;
} else if (isset($d->fb_select_display_field)) {
$titulo = $d->fb_select_display_field;
}
$vd = get_object_vars($d);
if (in_array('id_papa', array_keys($vd))) { /** jerarquía */
rama($tabla, $titulo, null, true, "");
} else { /** Lineal */
if (is_array($titulo)) {
$d->orderBy(implode(",", $titulo));
} else {
$d->orderBy($titulo);
}
$d->find();
while ($d->fetch()) {
list($pk, $t) = registro($d, $titulo, $k);
echo sprintf(
'<a href="detalle.php?id=%s&tabla=%s">
%s</a><br>',
urlencode($pk),
urlencode($tabla),
htmlentities($t)
);
}
}
echo '<pr> </pr><table border="0" width="100%" ' .
'style="white-space: nowrap; background-color:#CCCCCC;"><tr>' .
'<td align = "left">' .
'<a href="detalle.php?tabla=' . htmlentities($tabla) . '">Nuevo</a>' .
'</td><td align="right">' .
'<a href="index.php"><b>Menú Principal</b></a>' .
'</td></tr></table>';
pie_envia();
?>