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
/
index.php
163 lines (145 loc) · 4.12 KB
/
index.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
<?php
// vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker fileencoding=utf-8:
/**
* Menú de SIVeL.
*
* PHP version 5
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <vtamara@pasosdeJesus.org>
* @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
* @link http://pear.php.net/manual/en/package.html.html-menu.intro.php
*/
/**
* Menú de SIVeL.
*/
require_once 'misc.php';
require_once 'aut.php';
if (!file_exists($_SESSION['dirsitio'] . '/conf.php')) {
die("No ha configurado fuentes");
}
$fc = fopen($_SESSION['dirsitio'] . '/conf.php', 'r');
if (!$fc) {
die(
"No puede leerse " . $_SESSION['dirsitio'] . '/conf.php'
. " Mejore permisos"
);
}
fclose($fc);
require_once $_SESSION['dirsitio'] . '/conf.php';
$aut_usuario = "";
$db = autentica_usuario($dsn, $aut_usuario, 0);
require_once $_SESSION['dirsitio'] . '/conf_int.php';
require_once 'HTML/Menu.php';
require_once 'confv.php';
require_once 'misc_caso.php';
require_once 'PresentaMenuPrincipal.php';
/**
* Lee menú de base de datos y construye una estructura apropiada para
* HTML/Menu.
*
* @param integer $id Identificación de menú por revisar
*
* @return array apropiado para HTML_Menu
*/
function bd_a_menu($id)
{
//echo "OJO bd_a_menu($id)<br>";
$r = array();
foreach ($GLOBALS['m_opcion'] as $idop => $dop) {
if ($dop['idpapa'] == $id) {
if ($dop['url'] != '') {
if (strchr($dop['url'], '?')) {
$url = str_replace('?', '.php?', $dop['url']);
} else {
$url = $dop['url'] . '.php';
}
} else {
$url = '';
}
$r[$idop] = array(
'title' => $dop['nombre'],
'url' => $url,
'sub' => bd_a_menu($idop)
);
}
}
ksort($r);
return $r;
}
/**
* Presenta menú principal.
*
* @return void
*/
function menu_principal()
{
$datMenu = bd_a_menu(0);
$menu = new HTML_Menu($datMenu, 'sitemap');
encabezado_envia(
'SIVeL ' . $GLOBALS['PRY_VERSION'].
': ' . 'Sistema de Información de Violencia Política'
);
if ($GLOBALS['cabezote_principal'] != ''
&& file_exists($GLOBALS['cabezote_principal'])
) {
muestra_archivo($GLOBALS['cabezote_principal']);
} else {
echo '<table width = "100%" align = "center" cellpadding = "0" '
. ' border = "0" cellspacing = "0">';
echo '<tr><td align = "center" padding = "0" class = "blanco"> '
. ' <br><br></td></tr>';
echo '</table>';
}
$renderer = new PresentaMenuPrincipal();
$menu->render($renderer, '');
$html_r = $renderer->toHtml();
echo $html_r;
if (isset($GLOBALS['centro_principal'])
&& file_exists($GLOBALS['centro_principal'])
) {
$fh = fopen($GLOBALS['centro_principal'], 'rb');
$html_contents = fread($fh, filesize($GLOBALS['centro_principal']));
fclose($fh);
echo $html_contents;
} else {
echo '<p> </p>';
}
echo '<table border = "0" width = "100%" ' .
'style = "white-space: nowrap; background-color:#CCCCCC;"><tr>' .
'<tr><td> ' . $GLOBALS['REPORTA_FALLAS'] .
'</td></tr></table>';
pie_envia();
}
/**
* Inicializa variables cada vez que llega al índice (en particular para
* búsquedas).
*
* @param handle &$db Conexión a base de datos
*
* @return void
*/
function inicializa(&$db)
{
$_SESSION['forma_modo'] = 'editar';
$idbus = $GLOBALS['idbus'];
if ($idbus <= 0) {
elimina_caso($db, $idbus);
} else {
die(
"Variable Global idbus con id. de caso para búsquedas debería " .
"ser no positiva"
);
}
}
$res = hace_consulta($db, 'SELECT count(*) FROM acto', false);
sin_error_pear(
$res, 'Se recomienda que ejecute <a href="actualiza.php">actualiza.php</a>'
);
inicializa($db);
menu_principal();
unset_var_session();
?>