1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
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)
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.
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 -------------------------------------------------------------------------------
25 -----------------------------------------------------------------------------*/
27 require_once 'HTML/Table.php';
28 require_once 'MECON/HTML/Image.php';
29 require_once 'MECON/HTML/Link.php';
32 * Libreria para le manejo de las tablas de los sistemas de intranet.
35 class MECON_HTML_Tabla extends HTML_Table {
38 * Valores de Configuracion particular
46 * Atributos de las tablas.
54 * Íconos e información que va arriba de la tabla.
59 var $_cabecera = array();
62 * Íconos e información que va abajo de la tabla.
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.
76 * @param mixed $attrs Atributos diferentes a los estandares para la tabla
77 * @param string $estilo Tipo de tabla
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);
90 if (is_array($attrs)) {
91 if (isset($attrs['width'])) {
92 $this->_attrs['width'] = $attrs['width'];
94 if (isset($attrs['bgcolor'])) {
95 $this->_attrs['bgcolor'] = $attrs['bgcolor'];
97 if (isset($attrs['cellspacing'])) {
98 $this->_attrs['cellspacing'] = $attrs['cellspacing'];
100 if (isset($attrs['cellpadding'])) {
101 $this->_attrs['cellpadding'] = $attrs['cellpadding'];
104 $this->HTML_Table($this->_attrs);
105 if (isset($attrs['align'])) {
106 $this->_attrs['align'] = $attrs['align'];
112 * Devuelve el html de la tabla
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.
119 * @param bool $simple Tipo de tabla que se quiere recibir.
121 * @return string Html
125 function toHtml($simple = 0) {
127 $result = parent::toHtml();
128 // Agregar la tabla de fondo.
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();
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));
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(
150 'valign' => 'middle',
155 // Si tiene pie, lo agrega.
156 $this->_addSpecialRow($this->_pie, $tabla_externa);
157 return ($this->_cabecera or $this->_pie) ? $tabla_externa->toHtml() : $result;
160 function _addSpecialRow($array, &$tabla) {
163 foreach ($array as $key => $val) {
164 $row[$key] = $val ? $val : ' ';
166 $id = $tabla->addRow($row, array(
167 'valign' => 'middle',
170 // Si no hay celda central, hace colspan.
171 if ($array[0] and !$array[1]) {
172 $tabla->updateCellAttributes($id, 0, array(
175 /* } XXX se complica hacer el colspan para atras:
176 elseif ($array[2] and !$array[1]) {
177 $tabla->updateCellAttributes($id, 1, array(
179 'width' => '67%')); */
181 $tabla->updateCellAttributes($id, 0, array('align' => 'left'));
182 $tabla->updateCellAttributes($id, 1, array('align' => 'center'));
183 $tabla->updateCellAttributes($id, 2, array('align' => 'right'));
188 * Cambia las propiedades de una celda
190 * Cambia las propiedades de una celda. Si $attrs es un array
191 * asociativo, se setean los atributos representados por las claves
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
200 function updateCellAttributes($row, $col, $attrs) {
201 return parent::updateCellAttributes($row, $col, $this->_translateAttributes($attrs, false));
205 * Establece las propiedades de una celda
207 * Establece las propiedades de una celda. Si $attrs es un array
208 * asociativo, se setean los atributos representados por las claves
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
217 function setCellAttributes($row, $col, $attrs) {
218 return parent::setCellAttributes($row, $col, $this->_translateAttributes($attrs, true));
224 * Agrega una fila. El contenido es el que viene representado por
225 * el array $content. Recibe los atributos en la variable $attrs
227 * @param mixed $content Contenido
228 * @param mixed $attrs Atributos
230 * @return int $rowId Identificador de la fila
234 function addRow($content, $attrs = 'comun') {
235 return parent::addRow($content, $attrs);
239 * Convierte un atributo a string
241 * Convierte un atributo HTML al string para pasar a los metodos de HTML_Table
242 * Recibe en $attrs los atributos a modificar.
244 * @param mixed $attrs Atributos.
245 * @param bool $isSet Indica si hay que setear.
250 function _translateAttributes($attrs, $isSet) {
254 if (is_string($attrs)) {
255 $attrs = $this->_parseAttributes($attrs);
258 $rta = $this->_conf['atributos']['celda_comun'];
262 foreach ($attrs as $attr => $val) {
263 $attr = strtolower($attr);
269 $rta = array_merge($rta,
270 $this->_conf['atributos']["celda_$attr"]);
289 $rta["cell$attr"] = $val;
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"]);
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"]);
305 trigger_error("No se permite setear el atributo $attr", E_USER_ERROR);
312 * Obtiene la Cascade Style Sheet para esta tabla.
314 * @return string Path 'web' a la css.
317 return $this->_conf['css'];
324 * $tabla->setCabecera(array('Hola', '', 'mundo!'));
327 * @param array $cabecera Array de 3 elementos, que son la celda izquierda,
328 * central y derecha de la cabecera (en ese órden).
330 function setCabecera($cabecera) {
331 if (count($pie) != 3) {
332 $this->raiseError('Parámetro incorrecto: debe ser un array de 3 elementos.');
334 $this->_cabecera = $cabecera;
338 * Agrega información a la cabecera de la tabla.
341 * $tabla->updateCabecera('Hola', 'izquierda');
342 * $tabla->updateCabecera('mundo!', 'derecha');
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'.
350 function updateCabecera($cabecera, $lugar) {
351 if (!$this->_cabecera) {
352 $this->_cabecera = array('', '', '');
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;
361 $this->raiseError('Parámetro incorrecto: lugar debe ser izquierda, centro o derecha.');
368 * @param array $pie Array de 3 elementos, que son la celda izquierda,
369 * central y derecha del pie (en ese órden).
371 * @see Ejemplo en setCabecera().
373 function setPie($pie) {
374 if (count($pie) != 3) {
375 $this->raiseError('Parámetro incorrecto: debe ser un array de 3 elementos.');
381 * Agrega información al pie de la tabla.
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'.
388 * @see Ejemplo en updateCabecera().
390 function updatePie($pie, $lugar) {
392 $this->_pie = array('', '', '');
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;
401 $this->raiseError('Parámetro incorrecto: lugar debe ser izquierda, centro o derecha.');
406 * Agrega un link predefinido a la cabecera o pie de la tabla.
410 * $tabla->addLink('nuevo');
412 * $tabla->addLink('nuevos', 'nuevos.php');
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')));
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.
430 function addLink($id, $link = null) {
432 $link = @$_SERVER['PHP_SELF'];
434 if (is_string($link)) {
435 $link = new MECON_HTML_Link($link, '');
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');
444 $link->addContents($img);
445 $this->updateCabecera($link, 'derecha');
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');
453 $link->addContents($img);
454 $this->updateCabecera($link, 'derecha');
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');
462 $link->addContents($img);
463 $this->updateCabecera($link, 'derecha');
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');
471 $link->addContents($img);
472 $this->updatePie($link, 'derecha');
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');
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');
491 $this->raiseError("No hay un link predefinido llamado '$id'.");