2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
3 // +----------------------------------------------------------------------+
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license, |
9 // | that is bundled with this package in the file LICENSE, and is |
10 // | available at through the world-wide-web at |
11 // | http://www.php.net/license/2_02.txt. |
12 // | If you did not receive a copy of the PHP license and are unable to |
13 // | obtain it through the world-wide-web, please send a note to |
14 // | license@php.net so we can mail you a copy immediately. |
15 // +----------------------------------------------------------------------+
16 // | Created: miƩ oct 1 15:17:35 ART 2003
17 // | Author: Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
25 require_once 'HTML/Table.php';
28 require_once 'MECON/HTML/Tabla.php';
29 require_once 'MECON/HTML/Image.php';
30 require_once 'MECON/HTML/Link.php';
33 require_once 'SAMURAI/Sistema.php';
34 require_once 'SAMURAI/Usuario.php';
35 require_once 'SAMURAI/Perfil.php';
36 require_once 'SAMURAI/Permiso.php';
40 //Verifico si se tiene acceso a la pagina {{{
41 $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
44 //Obtengo la accion y el id del sistema {{{
45 $accion = (@$_REQUEST['accion']) ? $_REQUEST['accion'] : 'listado';
46 $subaccion = (@$_REQUEST['subaccion']) ? $_REQUEST['subaccion'] : null;
47 $id_sist = (@$_REQUEST['id_sist']) ? $_REQUEST['id_sist'] : null;
50 //Creo la tabla volver {{{
51 $T_VOLVER =& new HTML_Table('width="760"');
52 $IMG_VOLVER =& new MECON_HTML_Image('/MECON/images/general_anterior.gif');
53 $LINK_VOLVER =& new MECON_HTML_Link('', $IMG_VOLVER);
56 //ESTADISTICAS_SISTEMAS = LISTADO DE SISTEMAS {{{
57 if (@!$accion || $accion == 'info_listado') {
58 //Creo los objetos necesarios {{{
59 $T_SISTEMAS =& new MECON_HTML_Tabla();
60 $IMG_ACTIVO =& new MECON_HTML_Image('/MECON/images/general_tilde_azul.gif');
61 $IMG_NACTIVO =& new MECON_HTML_Image('/MECON/images/general_cruz_roja.gif');
62 $LINK_SEL =& new MECON_HTML_Link('sistemas');
65 //Obtengo la lista de sistemas (habilitados y no habilitados) {{{
66 $sistemas = SAMURAI_Sistema::getSistemas($DB, false);
69 //Agrego la informacion a la tabla de sistemas {{{
70 $T_SISTEMAS->addRow(array('Listado de Sistemas'), 'cabecera
72 $T_SISTEMAS->addRow(array('Id', 'Nombre', 'Descripcion', 'Activo'),
74 //Agrego la info de los sistemas
75 foreach ($sistemas as $sistema) {
76 $LINK_SEL->setContents(($sistema->getEstado()) ? $IMG_ACTIVO : $IMG_NACTIVO);
77 $LINK_SEL->setGetVars(
79 'accion' => 'info_informacion',
80 'id_sist' => $sistema->getId(),
83 $row = array ( $sistema->getId(),
84 $sistema->getNombre(),
85 $sistema->getDescripcion(),
88 $T_SISTEMAS->addRow($row);
90 $T_SISTEMAS->updateColAttributes(0, 'width="5%" align="center"');
91 $T_SISTEMAS->updateColAttributes(1, 'width="20%" align="center"');
92 $T_SISTEMAS->updateColAttributes(3, 'width="5%" align="center"');
93 $T_SISTEMAS->updateRowAttributes(0, 'align="left"');
96 //Agrego la informacion al marco {{{
97 $LINK_VOLVER->setHref('consultas');
98 $MARCO->addBodyContent($T_SISTEMAS);
99 $MARCO->addTitle('Estadisticas de Sistemas');
100 $MARCO->addBodyContent('<BR>');
101 $T_VOLVER->addRow(array($LINK_VOLVER->toHtml()), 'align="left"');
102 $MARCO->addBodyContent($T_VOLVER);
107 //ESTADISTICAS_SISTEMAS = INFORMACION DE UN SISTEMA {{{
108 elseif (@!$accion || $accion == 'info_informacion') {
109 //Creo los objetos necesarios {{{
110 $T_SISTEMA =& new MECON_HTML_Tabla();
111 $T_SISTEMA2 =& new MECON_HTML_Tabla();
112 $T_EST =& new MECON_HTML_Tabla('width="300"');
113 $SISTEMA =& new SAMURAI_Sistema($DB, $id_sist);
114 $IMG_ACTIVO =& new MECON_HTML_Image('/MECON/images/general_tilde_azul.gif');
115 $IMG_NACTIVO =& new MECON_HTML_Image('/MECON/images/general_cruz_roja.gif');
116 $IMG_SEP =& new MECON_HTML_Image('../images/linea_separacion.gif');
118 $LINK_USUARIOS =& new MECON_HTML_Link('sistemas', '', array('accion' =>
119 'info_informacion', 'subaccion' => 'info_usuarios',
120 'id_sist' => $id_sist));
121 $LINK_PERFILES =& new MECON_HTML_Link('sistemas', '', array('accion' =>
122 'info_informacion', 'subaccion' => 'info_perfiles',
123 'id_sist' => $id_sist));
124 $LINK_PERMISOS =& new MECON_HTML_Link('sistemas', '', array('accion' =>
125 'info_informacion', 'subaccion' => 'info_permisos',
126 'id_sist' => $id_sist));
129 //Agrego la informacion del sistema seleccionado {{{
130 $T_SISTEMA->addRow(array('Datos del Sistema Seleccionado'),'cabecera
132 $T_SISTEMA->addRow(array('Id', 'Nombre', 'Descripcion', 'Activo'),
134 $T_SISTEMA->addRow(array(
136 $SISTEMA->getNombre(),
137 $SISTEMA->getDescripcion(),
138 ($SISTEMA->getEstado()) ? $IMG_ACTIVO : $IMG_NACTIVO,
141 $T_SISTEMA->updateColAttributes(0, 'width="5%" align="center"');
142 $T_SISTEMA->updateColAttributes(1, 'width="20%" align="center"');
143 $T_SISTEMA->updateColAttributes(3, 'width="5%" align="center"');
144 $T_SISTEMA->updateRowAttributes(0, 'align="left"');
146 $fch_ini =& $SISTEMA->getFechaInicio();
147 $fch_fin =& $SISTEMA->getFechaFin();
148 $fch_imp =& $SISTEMA->getFechaImplementacion();
150 $T_SISTEMA2->addRow(array('Fecha Inicio', 'Fecha Fin', ' Fecha
151 Imp', 'Contacto'), 'titulo');
152 $T_SISTEMA2->addRow(array(
153 ($fch_ini) ? $fch_ini->format("%d-%m-%Y") : '--',
154 ($fch_fin) ? $fch_fin->format("%d-%m-%Y") : '--',
155 ($fch_imp) ? $fch_imp->format("%d-%m-%Y") : '--',
156 $SISTEMA->getContacto()
159 $T_SISTEMA2->updateColAttributes(0, 'width="15%" align="center"');
160 $T_SISTEMA2->updateColAttributes(1, 'width="15%" align="center"');
161 $T_SISTEMA2->updateColAttributes(2, 'width="15%" align="center"');
164 //Obtengo la info necesaria {{{
165 $usuarios = SAMURAI_Usuario::_getLoginUsuarios($DB, $id_sist);
166 $perfiles = SAMURAI_Perfil::_getIdPerfiles($DB, null, $id_sist);
167 $permisos = SAMURAI_Permiso::_getIdPermisos($DB, $id_sist);
170 //Agrego la informacion {{{
171 $T_EST->addRow(array('Estadisticas'), 'cabecera colspan="3"');
172 $T_EST->addRow(array('Usuarios', 'Perfiles', 'Permisos'), 'titulo');
173 $T_EST->updateColAttributes(0, 'width="33%" align="center"');
174 $T_EST->updateColAttributes(1, 'width="33%" align="center"');
175 $T_EST->updateColAttributes(2, 'width="33%" align="center"');
177 if (count($usuarios)) {
178 $LINK_USUARIOS->setContents(count($usuarios));
181 $LINK_USUARIOS->setContents('0');
182 $LINK_USUARIOS->setGetVars(array());
183 $LINK_USUARIOS->setHref('#');
185 if (count($perfiles)) {
186 $LINK_PERFILES->setContents(count($perfiles));
189 $LINK_PERFILES->setContents('0');
190 $LINK_PERFILES->setGetVars(array());
191 $LINK_PERFILES->setHref('#');
193 if (count($permisos)) {
194 $LINK_PERMISOS->setContents(count($permisos));
197 $LINK_PERMISOS->setContents('0');
198 $LINK_PERMISOS->setHref('#');
199 $LINK_PERMISOS->setGetVars(array());
204 $T_EST->addRow(array(
205 $LINK_USUARIOS->toHtml(),
206 $LINK_PERFILES->toHtml(),
207 $LINK_PERMISOS->toHtml(),
212 //Actuo segun la subaccion {{{
213 if (@$subaccion == 'info_usuarios') {
214 $T_SUBACCION =& new MECON_HTML_Tabla();
216 $usu = SAMURAI_Usuario::getUsuarios($DB, $id_sist);
217 $T_SUBACCION->addRow(array('Datos de los Usuarios'), 'colspan="2"
219 $T_SUBACCION->addRow(array('Login', 'Nombre'), 'titulo');
220 foreach ($usu as $u) {
221 $T_SUBACCION->addRow(array($u->getLogin(), $u->getNombre()));
224 $T_SUBACCION->updateRowAttributes(0, 'align="left"');
226 elseif (@$subaccion == 'info_perfiles') {
227 $T_SUBACCION =& new MECON_HTML_Tabla();
229 $usu = SAMURAI_Perfil::getPerfiles($DB, '', $id_sist);
230 $T_SUBACCION->addRow(array('Datos de los Perfiles'), 'colspan="2"
232 $T_SUBACCION->addRow(array('Id', 'Descripcion'), 'titulo');
233 foreach ($usu as $u) {
234 $T_SUBACCION->addRow(array($u->getId(), $u->getDescripcion()));
237 $T_SUBACCION->updateRowAttributes(0, 'align="left"');
239 elseif (@$subaccion == 'info_permisos') {
240 $T_SUBACCION =& new MECON_HTML_Tabla();
242 $T_SUBACCION->addRow(array('Datos de los Permisos'), 'colspan="3"
244 $T_SUBACCION->addRow(array('Id', 'Descripcion', 'Observacion'), 'titulo');
245 foreach ($SISTEMA->getAsociaciones() as $asoc) {
246 $T_SUBACCION->addRow(array($asoc['id'], $asoc['desc'],
249 $T_SUBACCION->updateRowAttributes(0, 'align="left"');
253 //Agrego la informacion al marco {{{
254 $LINK_VOLVER->setHref('sistemas');
255 $LINK_VOLVER->setGetVars(array('accion' => 'info_listado'));
256 $MARCO->addBodyContent($T_SISTEMA);
257 $MARCO->addBodyContent($T_SISTEMA2);
258 $MARCO->addBodyContent($IMG_SEP);
259 $MARCO->addBodyContent($T_EST);
262 $MARCO->addBodyContent($IMG_SEP);
263 $MARCO->addBodyContent($T_SUBACCION);
266 $MARCO->addTitle('Estadisticas de Sistemas');
267 $MARCO->addBodyContent('<BR>');
268 $T_VOLVER->addRow(array($LINK_VOLVER->toHtml()), 'align="left"');
269 $MARCO->addBodyContent($T_VOLVER);
274 //MUESTRO LA INFORMACION {{{