]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/HTML/Tabla.php
78c3a7470c706a2a4c642d3f573d6201bc83e8d4
[mecon/meconlib.git] / lib / MECON / HTML / Tabla.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
8 meconlib 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 meconlib 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: fri mar 21 ART 2003
22 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 require_once 'HTML/Table.php';
28 require_once 'MECON/HTML/Image.php';
29 require_once 'MECON/HTML/Link.php';
30
31 /**
32  * Libreria para le manejo de las tablas de los sistemas de intranet.
33  *
34  */
35 class MECON_HTML_Tabla extends HTML_Table {
36     
37     /**
38      * Valores de Configuracion particular
39      *
40      * @var array() $conf
41      * @access protected
42      */
43     var $_conf;
44
45     /**
46      * Atributos de las tablas.
47      *
48      * @var array() attrs
49      * @access protected
50      */
51     var $_attrs;
52
53     /**
54      * Íconos e información que va arriba de la tabla.
55      *
56      * @var array()
57      * @access private.
58      */
59     var $_cabecera = array();
60
61     /**
62      * Íconos e información que va abajo de la tabla.
63      *
64      * @var array()
65      * @access private.
66      */
67     var $_pie = array();
68
69     /**
70      * Constructor. 
71      * Puede recibir como parametro un string con los atributos que se 
72      * quieren dar a la tabla en cuestion. Estos atributos estan
73      * seteados por default segun el archivo de configuracion.
74      * Ademas puede recibir la indicacion de algun estilo en particular.
75      *
76      * @param mixed $attrs Atributos diferentes a los estandares para la tabla
77      * @param string $estilo Tipo de tabla
78      * 
79      * @access public
80      */
81     function MECON_HTML_Tabla($attrs = null, $estilo = 'comun') {
82         // Obtengo los valores particulares de configuracion.
83         $this->_conf = include(dirname(__FILE__) . '/Tabla/estilo_' . $estilo . '.php');
84         // Seteo los atributos para la tabla
85         $this->_attrs = $this->_conf['atributos']['tabla_comun'];
86         //Genero el objeto HTML_Table
87         if (is_string($attrs)) {
88             $attrs = $this->_parseAttributes($attrs);
89         }
90         if (is_array($attrs)) {
91             if (isset($attrs['width'])) {
92                 $this->_attrs['width'] = $attrs['width'];
93             }
94             if (isset($attrs['bgcolor'])) {
95                 $this->_attrs['bgcolor'] = $attrs['bgcolor'];
96             }
97             if (isset($attrs['cellspacing'])) {
98                 $this->_attrs['cellspacing']  = $attrs['cellspacing'];
99             }            
100             if (isset($attrs['cellpadding'])) {
101                 $this->_attrs['cellpadding']  = $attrs['cellpadding'];
102             }            
103         }        
104         $this->HTML_Table($this->_attrs);
105             if (isset($attrs['align'])) {
106                 $this->_attrs['align'] = $attrs['align'];
107             }
108
109     }    
110
111     /**                 
112      * Devuelve el html de la tabla
113      *
114      * Devuelve el html de la tabla para que sea mostrado.
115      * Como parametro recibe el indicador de tabla simple.
116      * Si $simple es falso, devuelve el html comun y corriente (con 2
117      * tablas), si es false devuelve una tabla sola.
118      *
119      * @param bool $simple Tipo de tabla que se quiere recibir.
120      *
121      * @return string Html
122      * 
123      * @access public
124      */
125     function toHtml($simple = 0) {
126         if ($simple) {
127             $result = parent::toHtml();
128         // Agregar la tabla de fondo.
129         } else {
130             $contenedora = $this->_conf['atributos']['tabla_contenedora'];
131             $contenedora['width'] = $this->getAttribute('width');
132             $contenedora['align'] = $this->_attrs['align'];
133             $this->updateAttributes(array('width' => '100%'));
134             $tabla_externa =  new HTML_Table($contenedora);
135             $tabla_externa->addRow(array(parent::toHtml()),
136                 $this->_conf['atributos']['celda_contenedora']);
137             $result = $tabla_externa->toHtml();    
138         }
139         // Si tiene pie o cabecera, crea tabla.
140         if ($this->_cabecera or $this->_pie) {
141             $tabla_externa = new HTML_Table(array('width'=>'100%','border'=>0));
142         }
143         // Si tiene cabecera, la agrega.
144         $this->_addSpecialRow($this->_cabecera, $tabla_externa);
145         // Si tiene cabecera o pie, agrega la tabla original.
146         if ($this->_cabecera or $this->_pie) {
147             //$id = $tabla_externa->addRow($result);
148             $tabla_externa->addRow(array($result), array(
149                 'align'   => 'center',
150                 'valign'  => 'middle',
151                 'width'   => '100%',
152                 'colspan' => '3',
153             ));
154         }
155         // Si tiene pie, lo agrega.
156         $this->_addSpecialRow($this->_pie, $tabla_externa);
157         return ($this->_cabecera or $this->_pie) ? $tabla_externa->toHtml() : $result;
158     }
159
160     function _addSpecialRow($array, &$tabla) {
161         if ($array) {
162             $row = array();
163             foreach ($array as $key => $val) {
164                 $row[$key] = $val ? $val : '&nbsp;';
165             }
166             $id = $tabla->addRow($row, array(
167                 'valign' => 'middle',
168                 'width'  => '33%',
169             ));
170             // Si no hay celda central, hace colspan.
171             if ($array[0] and !$array[1]) {
172                 $tabla->updateCellAttributes($id, 0, array(
173                     'colspan' => 2,
174                     'width' => '67%'));
175             /* } XXX se complica hacer el colspan para atras:
176               elseif ($array[2] and !$array[1]) {
177                 $tabla->updateCellAttributes($id, 1, array(
178                     'colspan' => 2,
179                     'width' => '67%')); */
180             }
181             $tabla->updateCellAttributes($id, 0, array('align' => 'left'));
182             $tabla->updateCellAttributes($id, 1, array('align' => 'center'));
183             $tabla->updateCellAttributes($id, 2, array('align' => 'right'));
184         }
185     }
186
187     /**
188      * Cambia las propiedades de una celda
189      *
190      * Cambia las propiedades de una celda. Si $attrs es un array
191      * asociativo, se setean los atributos representados por las claves
192      * con los valores.
193      *
194      * @param int $row     Identificador de la fila que se quiere modificar    
195      * @param int $col     Identificador de la columna que se quiere modificar
196      * @param mixed $attrs Atributo a modificar                               
197      *
198      * @access public
199      */
200     function updateCellAttributes($row, $col, $attrs) {
201         return parent::updateCellAttributes($row, $col, $this->_translateAttributes($attrs, false));
202     }
203
204     /**
205      * Establece las propiedades de una celda
206      *
207      * Establece las propiedades de una celda. Si $attrs es un array
208      * asociativo, se setean los atributos representados por las claves
209      * con los valores.
210      *
211      * @param int $row     Identificador de la fila que se quiere modificar     
212      * @param int $col     Identificador de la columna que se quiere modificar
213      * @param mixed $attrs Atributo a modificar                               
214      *
215      * @access public
216      */
217     function setCellAttributes($row, $col, $attrs) {
218         return parent::setCellAttributes($row, $col, $this->_translateAttributes($attrs, true));
219     }
220
221     /**
222      * Agrega una fila
223      *
224      * Agrega una fila. El contenido es el que viene representado por 
225      * el array $content. Recibe los atributos en la variable $attrs
226      *
227      * @param mixed $content Contenido
228      * @param mixed $attrs Atributos
229      *
230      * @return int $rowId Identificador de la fila
231      *
232      * @access public
233      */
234     function addRow($content, $attrs = 'comun') {
235         return parent::addRow($content, $attrs);
236     }
237     
238     /**
239      * Convierte un atributo a string
240      * 
241      * Convierte un atributo HTML al string para pasar a los metodos de HTML_Table
242      * Recibe en $attrs los atributos a modificar.
243      *
244      * @param mixed $attrs Atributos.
245      * @param bool  $isSet Indica si hay que setear.
246      *
247      * @return array
248      * @access private
249      */
250     function _translateAttributes($attrs, $isSet) {
251         if (!$attrs) {
252             return array();
253         }
254         if (is_string($attrs)) {
255             $attrs = $this->_parseAttributes($attrs);
256         }
257         if ($isSet) {
258             $rta = $this->_conf['atributos']['celda_comun'];
259         } else {
260             $rta = array();
261         }
262         foreach ($attrs as $attr => $val) {
263             $attr = strtolower($attr);
264             switch ($attr) {
265                 // Estilos de celda
266                 case 'comun':
267                 case 'cabecera':
268                 case 'titulo':
269                     $rta = array_merge($rta,
270                             $this->_conf['atributos']["celda_$attr"]);
271                     $rta[$attr] = $attr;
272                     break;
273                 case 'align':
274                 case 'valign':
275                 case 'width':
276                 case 'height':
277                 case 'rowspan':
278                 case 'colspan':
279                 case 'bgcolor':
280                 case 'class':
281                 case 'border':
282                 case 'cellspacing':
283                 case 'cellpadding':
284                 case 'nowrap':
285                     $rta[$attr] = $val;
286                     break;
287                 case 'spacing':
288                 case 'padding':
289                     $rta["cell$attr"] = $val;
290                     break;
291                 case 'th':
292                     $rta[$attr] = '';
293                     break;
294                 case 'clara': //Toma los mismos parametros que titulo pero en el pdf no se repite
295                     $rta = array_merge($rta,
296                             $this->_conf['atributos']["celda_titulo"]);
297                     $rta[$attr] = $attr;
298                     break;
299                 case 'oscura': //Toma los mismos parametros que cabecera pero en el pdf no se repite
300                     $rta = array_merge($rta,
301                             $this->_conf['atributos']["celda_cabecera"]);
302                     $rta[$attr] = $attr;
303                     break;
304                 default:
305                     trigger_error("No se permite setear el atributo $attr", E_USER_ERROR);
306             }
307         }
308         return $rta;
309     }
310
311     /**
312      * Obtiene la Cascade Style Sheet para esta tabla.
313      *
314      * @return string Path 'web' a la css.
315      */
316     function getCSS() {
317         return $this->_conf['css'];
318     }
319
320     /**
321      * Setea la cabecera.
322      * Ejemplo:
323      * @code
324      * $tabla->setCabecera(array('Hola', '', 'mundo!'));
325      * @endcode
326      *
327      * @param array $cabecera Array de 3 elementos, que son la celda izquierda,
328      *                        central y derecha de la cabecera (en ese órden).
329      */
330     function setCabecera($cabecera) {
331         if (count($pie) != 3) {
332             $this->raiseError('Parámetro incorrecto: debe ser un array de 3 elementos.');
333         }
334         $this->_cabecera = $cabecera;
335     }
336
337     /**
338      * Agrega información a la cabecera de la tabla.
339      * Ejemplo:
340      * @code
341      * $tabla->updateCabecera('Hola', 'izquierda');
342      * $tabla->updateCabecera('mundo!', 'derecha');
343      * @endcode
344      *
345      * @param mixed $cabecera Celda a agregar a la cabecera. Puede ser un string
346      *                        o un objeto con un método toHtml().
347      * @param string $lugar   Lugar en donde poner la cabecera. Puede ser
348      *                       'izquierda', 'centro' o 'derecha'.
349      */
350     function updateCabecera($cabecera, $lugar) {
351         if (!$this->_cabecera) {
352             $this->_cabecera = array('', '', '');
353         }
354         if ($lugar == 'izquierda') {
355             $this->_cabecera[0] = $cabecera;
356         } elseif ($lugar == 'centro') {
357             $this->_cabecera[1] = $cabecera;
358         } elseif ($lugar == 'derecha') {
359             $this->_cabecera[2] = $cabecera;
360         } else {
361             $this->raiseError('Parámetro incorrecto: lugar debe ser izquierda, centro o derecha.');
362         }
363     }
364
365     /**
366      * Setea el pie.
367      *
368      * @param array $pie Array de 3 elementos, que son la celda izquierda,
369      *                   central y derecha del pie (en ese órden).
370      *
371      * @see Ejemplo en setCabecera().
372      */
373     function setPie($pie) {
374         if (count($pie) != 3) {
375             $this->raiseError('Parámetro incorrecto: debe ser un array de 3 elementos.');
376         }
377         $this->_pie = $pie;
378     }
379
380     /**
381      * Agrega información al pie de la tabla.
382      *
383      * @param mixed $pie Celda a agregar al pie. Puede ser un string
384      *                        o un objeto con un método toHtml().
385      * @param string $lugar   Lugar en donde poner el pie. Puede ser
386      *                       'izquierda', 'centro' o 'derecha'.
387      *
388      * @see Ejemplo en updateCabecera().
389      */
390     function updatePie($pie, $lugar) {
391         if (!$this->_pie) {
392             $this->_pie = array('', '', '');
393         }
394         if ($lugar == 'izquierda') {
395             $this->_pie[0] = $pie;
396         } elseif ($lugar == 'centro') {
397             $this->_pie[1] = $pie;
398         } elseif ($lugar == 'derecha') {
399             $this->_pie[2] = $pie;
400         } else {
401             $this->raiseError('Parámetro incorrecto: lugar debe ser izquierda, centro o derecha.');
402         }
403     }
404
405     /**
406      * Agrega un link predefinido a la cabecera o pie de la tabla.
407      * Ejemplo:
408      * @code
409      * if ($muchos) {
410      *      $tabla->addLink('nuevo');
411      * } else {
412      *      $tabla->addLink('nuevos', 'nuevos.php');
413      * }
414      * $tabla->addLink('volver',
415      *      new MECON_HTML_Link('atras.php'));
416      * $tabla->addLink('anterior',
417      *      new MECON_HTML_Link('previo.php', 'Persona Anterior'));
418      * $tabla->addLink('siguiente',
419      *      new MECON_HTML_Link('previo.php', 'Siguiente persona',
420      *          array('pers' => 'prox')));
421      * @endcode
422      *
423      * @param string $id Identificador del link predefinido. Puede ser 'volver',
424      *                   'nuevo', 'nuevos', 'buscar', 'anterior' y 'siguiente'.
425      * @param MECON_HTML_Link $link Link a usar. Si no tiene contenidos, se pone
426      *                              uno por defecto. Si es null, se pone como
427      *                              link la página actual.
428      * 
429      */
430     function addLink($id, $link = null) {
431         if (!$link) {
432             $link = @$_SERVER['PHP_SELF'];
433         }
434         if (is_string($link)) {
435             $link = new MECON_HTML_Link($link, '');
436         }
437         switch ($id) {
438             case 'nuevo':
439                 $img = new MECON_HTML_Image('/MECON/images/general_nuevo', '->');
440                 // Si no tiene titulo, le pone titulo por defecto.
441                 if (!$link->getContents()) {
442                     $link->setContents('Nuevo');
443                 }
444                 $link->addContents($img);
445                 $this->updateCabecera($link, 'derecha');
446                 break;
447             case 'nuevos':
448                 $img = new MECON_HTML_Image('/MECON/images/general_muchos_nuevo', '->');
449                 // Si no tiene titulo, le pone titulo por defecto.
450                 if (!$link->getContents()) {
451                     $link->setContents('Nuevos');
452                 }
453                 $link->addContents($img);
454                 $this->updateCabecera($link, 'derecha');
455                 break;
456             case 'buscar':
457                 $img = new MECON_HTML_Image('/MECON/images/general_lupa', 'Q');
458                 // Si no tiene titulo, le pone titulo por defecto.
459                 if (!$link->getContents()) {
460                     $link->setContents('Buscar');
461                 }
462                 $link->addContents($img);
463                 $this->updateCabecera($link, 'derecha');
464                 break;
465             case 'siguiente':
466                 $img = new MECON_HTML_Image('/MECON/images/general_posterior', '->');
467                 // Si no tiene titulo, le pone titulo por defecto.
468                 if (!$link->getContents()) {
469                     $link->setContents('Siguiente');
470                 }
471                 $link->addContents($img);
472                 $this->updatePie($link, 'derecha');
473                 break;
474             case 'volver':
475                 $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<-');
476                 // Si no tiene titulo, le pone titulo por defecto.
477                 $cont = $link->getContents() ? $link->getContents() : 'Volver';
478                 $link->setContents($img);
479                 $link->addContents($cont);
480                 $this->updateCabecera($link, 'izquierda');
481                 break;
482             case 'anterior':
483                 $img = new MECON_HTML_Image('/MECON/images/general_anterior', '<-');
484                 // Si no tiene titulo, le pone titulo por defecto.
485                 $cont = $link->getContents() ? $link->getContents() : 'Anterior';
486                 $link->setContents($img);
487                 $link->addContents($cont);
488                 $this->updatePie($link, 'izquierda');
489                 break;
490             default:
491                 $this->raiseError("No hay un link predefinido llamado '$id'.");
492         }
493     }
494
495 }
496
497 ?>