]> git.llucax.com Git - mecon/yatta.git/blob - sistema/www/archivos.php
Se modifico la estructura de la base de datos.
[mecon/yatta.git] / sistema / www / archivos.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 foldmethod=marker:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     YATTA!
5 -------------------------------------------------------------------------------
6 This file is part of YATTA!.
7
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)
11 any later version.
12
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.
16  
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 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 //Require Once {{{
28 require_once 'HTML/Table.php';
29 require_once 'MECON/HTML/TablaDB.php';
30 require_once 'MECON/HTML/Image.php';
31 require_once 'MECON/HTML/Link.php';
32 require_once 'YATTA/Archivo.php';
33 //}}}
34
35 //Actuar segun la accion, etc {{{
36 $accion = @$_REQUEST['accion'];
37 $id = @$_REQUEST['_id'];
38 if (@$id && @$accion) {
39     $ARCHIVO =& new YATTA_Archivo;
40     $ARCHIVO->id = $id;
41     $ARCHIVO->usuario = $_SESSION['usuario'];
42     $res = $ARCHIVO->buscar($DB);
43     if (PEAR::isError($res)) {
44         die('Error: ' . $res->getMessage() . "\n");
45     }
46     $ARCHIVO->cargar($res);
47     switch ($accion) {
48         case 'download':
49             header("Content-Disposition: attachment;
50                     filename=".$ARCHIVO->resultado);
51             header("Pragma: no-cache");
52             header("Expires: 0");
53             header("Content-Type: application");
54             header("Content-Length: ".filesize($ARCHIVO->archivo));
55             readfile ($ARCHIVO->archivo);
56             exit;
57             break;
58     case 'borrar':
59             $res = $ARCHIVO->borrar($DB);
60             if (PEAR::isError($res)) {
61                 die('Error: ' . $res->getMessage() . "\n");
62             }
63             header ('Location:archivos');
64             exit;
65             break;
66     }
67 }
68 //}}}
69
70 //Obtengo la lista de archivos y lo agrego a la tabla {{{
71 $ARCHIVO =& new YATTA_Archivo;
72 $ARCHIVO->usuario = $_SESSION['usuario'];
73
74 $res = $ARCHIVO->buscar($DB);
75 if (PEAR::isError($res)) {
76     die('Error: ' . $res->getMessage() . "\n");
77 }
78
79
80 $TABLADB = new MECON_HTML_TablaDB ('Archivos');
81 $TABLADB->addRow(array(
82             'Lista de Archivos Disponibles'
83             ), 'cabecera colspan="5" align="left"');
84 $TABLADB->addRow(array(
85             'Ext', 'Sistema', 'Descripcion', 'Bajar', 'Borrar'
86             ), 'Titulo');
87
88
89 $TABLADB->addRowsData(
90             '<img src="/MECON/images/EXTENSION_%s" alt="Ext">',
91             array (array ('resultado', 'extension_callback')),
92             'prepend'
93         );
94
95 //Funcion de callback para el addRowsData de la linea anterior {{{
96 function extension_callback($resultado) {
97     return strtoupper(substr($resultado, strrpos($resultado, '.') + 1));
98 }
99 //}}}
100
101 $TABLADB->addRowsData(
102             new MECON_HTML_Link('archivos',
103                 new MECON_HTML_Image('/MECON/images/general_download.gif',
104                     'Bajar'),
105                 array ($TABLADB->getGetVarPrefix().'id' => "%s", 
106                     'accion' => 'download')
107             )
108         );
109
110 $TABLADB->addRowsData('%s',
111             array (array (array ('owner', 'id'), 'owner_callback'))
112         );
113
114 //Funcion de callback para el addRowsData de la linea anterior {{{
115 function owner_callback($owner) {
116     if ($owner['owner'] == $_SESSION['usuario']) {
117         $txt = '<a href="archivos?accion=borrar&_id='.$owner['id'].'">'.
118             '<img src="/MECON/images/general_eliminar.gif">'.
119             '</a>';
120     }
121     else {
122         $txt = '<img src="/MECON/images/general_eliminar_des.gif">';
123     }
124     return $txt;
125 }
126 //}}}
127
128
129 //$TABLADB->addRowsIcon('borrar', array ('id'), new MECON_HTML_Link ('archivos', '', array
130 //            ('accion' => 'borrar')));
131
132 $pager = $TABLADB->addPager($res, null, 
133             new MECON_HTML_Link
134                 ('archivos', null 
135                 )
136         );
137
138 $TABLADB->addRows($pager, array ('nombre_sistema', 'descripcion'));
139 $TABLADB->addRow(array('*Recuerde que los archivos se borran a los 7 dias
140             de antiguedad'), 
141             'colspan="5" align="center" class="msg_rojo"'); 
142
143 $TABLADB->updateColAttributes(0,'width="4%"');
144 $TABLADB->updateColAttributes(1,'width="30%"');
145 $TABLADB->updateColAttributes(2,'width="50%"');
146 $TABLADB->updateColAttributes(3,'width="8%"');
147 $TABLADB->updateColAttributes(4,'width="8%"');
148 //}}}
149
150 //Agrego la info al marco y la muestro {{{
151 $MARCO->addStyleSheet('css/yatta.css');
152 $MARCO->addBody($TABLADB);
153 $MARCO->display();
154 //}}}
155 ?>