forked from pasosdeJesus/SIVeL
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PagPresentaRes.php
342 lines (306 loc) · 9.85 KB
/
PagPresentaRes.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
<?php
// vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker fileencoding=utf-8:
/**
* Página del multi-formulario para consulta externa
*
* PHP version 5
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @copyright 2005 Dominio público. Sin garantías.
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público. Sin garantías.
* @version CVS: $Id: PagPresentaRes.php,v 1.46.2.3 2011/10/11 16:33:37 vtamara Exp $
* @link http://sivel.sf.net
* Acceso: SÓLO DEFINICIONES
*/
/**
* Pestaña Presentación de Resultados de la consulta externa
*/
require_once $_SESSION['dirsitio'] . "/conf.php";
require_once 'PagBaseSimple.php';
require_once 'HTML/QuickForm/Renderer/Default.php';
/**
* Renderer para este formulario
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público.
* @link http://sivel.sf.net/tec
*/
class Doble_Renderer extends HTML_QuickForm_Renderer_Default
{
var $_headerTemplate = "";
}
/**
* Presentación de resultados.
* Ver documentación de funciones en clase base.
* A diferencia de las demás páginas del formulario de captura, esta sólo
* se presenta para búsquedas y no mantiene la información en la base de
* datos sino en variables de sesión.
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público.
* @link http://sivel.sf.net/tec
* @see PagBaseSimple
*/
class PagPresentaRes extends PagBaseSimple
{
var $titulo = 'Forma de Presentar Resultados';
var $clase_modelo = '';
/* Objetos DB_DataObject_FormBuilder */
/** Opciones de presentación */
var $opciones;
/**
* Constructora.
* Ver documentación completa en clase base.
*
* @param string $nomForma Nombre
* @param string $opciones Opciones
*
* @return void
*/
function PagPresentaRes($nomForma, $opciones)
{
parent::PagBaseSimple($nomForma);
$this->opciones = $opciones;
if (!isset($_SESSION['busca_presenta'])) {
$_SESSION['busca_presenta']['ordenar'] = 'fecha';
$_SESSION['busca_presenta']['mostrar'] = 'tabla';
foreach ($GLOBALS['cw_ncampos'] as $idc => $dc) {
$_SESSION['busca_presenta'][$idc]=1;
}
$_SESSION['busca_presenta']['m_fuentes']=0;
$_SESSION['busca_presenta']['m_varlineas']=1;
}
$this->addAction('anterior', new Anterior());
}
/**
* Agrega elementos al formulario.
* Ver documentación completa en clase base.
*
* @param handle &$db Conexión a base de datos
* @param string $idcaso Id del caso
*
* @return void
*
* @see PagBaseSimple
*/
function formularioAgrega(&$db, $idcaso)
{
$ult = $_SESSION['busca_presenta'];
$ae = array();
$x =& $this->createElement('radio', 'ordenar', 'fecha', 'Fecha', 'fecha');
$ae[] =& $x;
if ($ult['ordenar'] == '' || $ult['ordenar'] == 'fecha') {
$t =& $x;
}
$x =& $this->createElement(
'radio', 'ordenar', 'ubicacion',
'Ubicación', 'ubicacion'
);
$ae[] =& $x;
if ($ult['ordenar'] == 'ubicacion') {
$t =& $x;
}
$x =& $this->createElement(
'radio', 'ordenar', 'codigo',
'Código', 'codigo'
);
$ae[] =& $x;
if ($ult['ordenar'] == 'codigo') {
$t =& $x;
}
$this->addGroup($ae, null, 'Ordenar por', ' ', false);
$t->setChecked(true);
$ae = array();
$t =& $this->createElement('radio', 'mostrar', 'tabla', 'Tabla', 'tabla');
$ae[] =& $t;
$x =& $this->createElement('radio', 'mostrar', 'csv', 'CSV', 'csv');
$ae[] =& $x;
if (isset($ult['mostrar']) && $ult['mostrar'] == 'revista') {
$t =& $x;
}
if (isset($this->opciones)) {
if (in_array(41, $this->opciones)) {
$x =& $this->createElement(
'radio', 'mostrar', 'revista',
'Reporte Revista', 'revista'
);
$ae[] =& $x;
if (isset($ult['mostrar']) && $ult['mostrar'] == 'revista') {
$t =& $x;
}
}
if (in_array(42, $this->opciones)) {
$x =& $this->createElement(
'radio', 'mostrar',
'general', 'Reporte General', 'general'
);
$ae[] =& $x;
if (isset($ult['mostrar'])
&& $ult['mostrar'] == 'general'
) {
$t =& $x;
}
$x =& $this->createElement(
'radio', 'mostrar',
'actos', 'Actos', 'actos'
);
$ae[] =& $x;
if (isset($ult['mostrar'])
&& $ult['mostrar'] == 'actos'
) {
$t =& $x;
}
$x =& $this->createElement(
'radio', 'mostrar',
'relato', 'Relato XML', 'relato'
);
$ae[] =& $x;
if (isset($ult['mostrar'])
&& $ult['mostrar'] == 'relato'
) {
$t =& $x;
}
$x =& $this->createElement(
'radio', 'mostrar',
'relatoslocal', 'Relatos XML en disco local',
'relatoslocal'
);
$ae[] =& $x;
if (isset($ult['mostrar'])
&& $ult['mostrar'] == 'relatoslocal'
) {
$t =& $x;
}
}
}
$this->addGroup($ae, null, 'Forma', ' ', false);
$t->setChecked(true);
$asinc = array();
if (isset($pSinCampos) && $pSinCampos != '') {
$asinc = explode(',', $pSinCampos);
}
$prevnext = array();
foreach ($GLOBALS['cw_ncampos'] as $idc => $dc) {
$sel =& $this->createElement(
'checkbox',
$idc, $dc, $dc
);
if (!in_array($idc, $ult) && isset($ult[$idc]) && $ult[$idc] == 1) {
$sel->setValue(true);
}
$prevnext[] =& $sel;
};
if (in_array(42, $this->opciones)) { // Podría ver rep. gen?
$sel =& $this->createElement(
'checkbox',
'm_fuentes', 'Fuentes', 'Fuentes'
);
if (!in_array('m_fuentes', $ult) && isset($ult['m_fuentes'])
&& $ult['m_fuentes'] == 1
) {
$sel->setValue(true);
}
$prevnext[] =& $sel;
}
$this->addGroup($prevnext, null, 'Mostrar', ' ', false);
$prevnext = array();
$sel =& $this->createElement(
'checkbox',
'm_varlineas', 'Memo en varias lineas', 'Memo en varias lineas'
);
if (!in_array('m_varlineas', $ult) && isset($ult['m_varlineas'])
&& $ult['m_varlineas'] == 1
) {
$sel->setValue(true);
}
$prevnext[] =& $sel;
$this->addGroup($prevnext, null, 'Detalles', ' ', false);
$cy = date('Y');
if ($cy < 2005) {
$cy = 2005;
}
$ay = explode('-', $GLOBALS['consulta_web_fecha_min']);
$e =& $this->addElement(
'date', 'fiini', 'Ingreso Desde: ',
array(
'language' => 'es',
'addEmptyOption' => true,
'minYear' => $ay[0],
'maxYear' => $cy
)
);
$e =& $this->addElement(
'date', 'fifin', 'Ingreso Hasta:',
array(
'language' => 'es', 'addEmptyOption' => true,
'minYear' => $ay[0], 'maxYear' => $cy
)
);
agrega_control_CSRF($this);
$d = new Doble_Renderer();
$this->accept($d);
}
/**
* Llena valores del formulario.
* Ver documentación completa en clase base.
*
* @param handle &$db Conexión a base de datos
* @param integer $idcaso Id del caso
*
* @return void
* @see PagBaseSimple
*/
function formularioValores(&$db, $idcaso)
{
}
/**
* Elimina registros de tablas relacionadas con caso de este formulario.
* Ver documentación completa en clase base.
*
* @param handle &$db Conexión a base de datos
* @param integer $idcaso Id del caso
*
* @return void
* @see PagBaseSimple
*/
static function eliminaDep(&$db, $idcaso)
{
}
/**
* Suponemos que un formulario vació es válido pero no agrega
* ni actualiza info en b.d
*
* @param array &$valores Valores enviados por usuario
*
* @return bool Verdadero si y solo logra procesar
*/
function procesa(&$valores)
{
$_SESSION['busca_presenta'] = $valores;
verifica_sin_CSRF($valores);
return true;
}
/**
* Prepara consulta SQL para buscar datos de este formulario.
* Ver documentación completa en clase base.
*
* @param string &$w Consulta que se construye
* @param string &$t Tablas
* @param string &$db Conexión a base de datos
* @param object $idcaso Identificación de caso
* @param string &$subcons Subconsulta
*
* @return void
* @see PagBaseSimple
*/
function datosBusqueda(&$w, &$t, &$db, $idcaso, &$subcons)
{
}
}
?>