1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 foldmethod=marker:
2 -------------------------------------------------------------------------------
5 -------------------------------------------------------------------------------
6 This file is part of YATTA!.
8 YATTA! is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
13 YATTA! is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA 02111-1307 USA
20 -------------------------------------------------------------------------------
21 Creado: jue nov 27 18:58:19 ART 2003
22 Autor: Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
25 -----------------------------------------------------------------------------*/
28 require_once 'MECON/HTML/TablaDB.php';
29 require_once 'MECON/HTML/Tabla.php';
30 require_once 'MECON/HTML/Image.php';
31 require_once 'MECON/HTML/Link.php';
32 require_once 'YATTA/Proceso.php';
35 //Obtengo la informacion de la base y la agrego a la tabla {{{
36 $TABLADB = new MECON_HTML_TablaDB ('Procesos');
37 $TABLADB->addRow(array(
39 ), 'cabecera colspan="4" align="left"');
40 $TABLADB->addRow(array(
41 'Id', 'Fecha', 'Sistema', 'Descripcion', 'Estado'
44 $PROCESO =& new YATTA_Proceso;
45 $PROCESO->owner = $_SESSION['usuario'];
46 $res = $PROCESO->buscar($DB, MECON_DBO_AND, ' id ASC');
47 if (PEAR::isError($res)) {
48 die('Error: ' . $res->getMessage() . "\n");
51 //@FIXME La fecha esta quedando en formato americano, arreglar eso.
53 $pager = $TABLADB->addPager($res, null,
59 $TABLADB->addRowsData('<a href="procesos_popup?id=%s" '.
60 'OnClick="javascript:window.open(\'procesos_popup?id=%s\','.
61 '\'proc\', \'width=450,height=250,scrollbars=yes\');'.
62 'return false;" target="_blank">'.
63 "<img src=\"/sistemas/yatta/images/estado_%s.gif\" alt=\"%s\"".
64 ' border=0></a>', array ('id', 'id', 'status', 'icono'));
66 $TABLADB->addRows($pager, array ('id', 'fecha', 'nombre_sistema', 'descripcion'));
67 $TABLADB->updateColAttributes(0,'width="8%"');
68 $TABLADB->updateColAttributes(2,'width="30%"');
69 $TABLADB->updateColAttributes(3,'width="40%"');
70 $TABLADB->updateColAttributes(4,'width="5%"');
73 //Agrego la tabla con la explicacion de los iconos {{{
74 $TABLA =& new MECON_HTML_Tabla ('width="400"');
75 $TABLA->addRow(array('Significado de los iconos'), 'cabecera colspan="2"');
76 $TABLA->addRow(array('Icono', 'Significado'), 'titulo');
78 new MECON_HTML_Image ('/sistemas/yatta/images/estado_0.gif',
80 "El proceso esta en cola. Aun no se ejecuto.<br>Puede abortar su".
81 ' ejecucion presionando en el icono.'
84 new MECON_HTML_Image ('/sistemas/yatta/images/estado_1.gif',
86 'El proceso se esta ejecutando en este momento. <br>Puede abortar su'.
87 ' ejecucion presionando en el icono.'
90 new MECON_HTML_Image ('/sistemas/yatta/images/estado_2.gif',
92 'El proceso ha finalizado.<br>'.
93 'Puede buscar el resultado en la seccion archivos.'
96 new MECON_HTML_Image ('/sistemas/yatta/images/estado_3.gif',
98 'Se produjo un error durante la ejecucion del proceso.<br>'.
99 'Presionando sobre el icono puede ver una explicacion del mismo.'
101 $TABLA->addRow(array(
102 new MECON_HTML_Image ('/sistemas/yatta/images/estado_0.gif',
104 'El proceso fue detenido por alguna persona (el responsable o'.
105 ' el administrador). Presionando sobre el icono puede ver una'.
108 $TABLA->updateColAttributes(0, 'align="center"');
109 $TABLA->updateColAttributes(1, 'align="left"');
112 //Agrego la info al marco y la muestro {{{
113 $MARCO->addStyleSheet('css/yatta.css');
114 $MARCO->addBody($TABLADB);
115 $MARCO->addBody('<BR> <BR>');
116 $MARCO->addBody($TABLA);