$tabla_externa = new HTML_Table(array('width'=>'100%','border'=>0));
}
// Si tiene cabecera, la agrega.
- if ($this->_cabecera) {
- $tabla_externa->addRow($this->_cabecera, array(
- 'valign' => 'middle',
- 'width' => '33%',
- ));
- $tabla_externa->updateCellAttributes(0, 0, array('align' => 'left'));
- $tabla_externa->updateCellAttributes(0, 1, array('align' => 'center'));
- $tabla_externa->updateCellAttributes(0, 2, array('align' => 'right'));
- }
+ $this->_addSpecialRow($this->_cabecera, $tabla_externa);
// Si tiene cabecera o pie, agrega la tabla original.
if ($this->_cabecera or $this->_pie) {
//$id = $tabla_externa->addRow($result);
));
}
// Si tiene pie, lo agrega.
- if ($this->_pie) {
- $id = $tabla_externa->addRow($this->_pie, array(
+ $this->_addSpecialRow($this->_pie, $tabla_externa);
+ return ($this->_cabecera or $this->_pie) ? $tabla_externa->toHtml() : $result;
+ }
+
+ function _addSpecialRow($array, &$tabla) {
+ if ($array) {
+ $row = array();
+ foreach ($array as $key => $val) {
+ $row[$key] = $val ? $val : ' ';
+ }
+ $id = $tabla->addRow($row, array(
'valign' => 'middle',
- 'width' => '33%',
+ 'width' => '33%',
));
- $tabla_externa->updateCellAttributes($id, 0, array('align' => 'left'));
- $tabla_externa->updateCellAttributes($id, 1, array('align' => 'center'));
- $tabla_externa->updateCellAttributes($id, 2, array('align' => 'right'));
+ // Si no hay celda central, hace colspan.
+ if ($array[0] and !$array[1]) {
+ $tabla->updateCellAttributes($id, 0, array(
+ 'colspan' => 2,
+ 'width' => '67%'));
+ /* } XXX se complica hacer el colspan para atras:
+ elseif ($array[2] and !$array[1]) {
+ $tabla->updateCellAttributes($id, 1, array(
+ 'colspan' => 2,
+ 'width' => '67%')); */
+ }
+ $tabla->updateCellAttributes($id, 0, array('align' => 'left'));
+ $tabla->updateCellAttributes($id, 1, array('align' => 'center'));
+ $tabla->updateCellAttributes($id, 2, array('align' => 'right'));
}
- return ($this->_cabecera or $this->_pie) ? $tabla_externa->toHtml() : $result;
}
/**
* Setea la cabecera.
* Ejemplo:
* @code
- * $tabla->setCabecera(array('Hola', ' ', 'mundo!'));
+ * $tabla->setCabecera(array('Hola', '', 'mundo!'));
* @endcode
*
* @param array $cabecera Array de 3 elementos, que son la celda izquierda,
*/
function updateCabecera($cabecera, $lugar) {
if (!$this->_cabecera) {
- $this->_cabecera = array(' ', ' ', ' ');
+ $this->_cabecera = array('', '', '');
}
if ($lugar == 'izquierda') {
$this->_cabecera[0] = $cabecera;
*/
function updatePie($pie, $lugar) {
if (!$this->_pie) {
- $this->_pie = array(' ', ' ', ' ');
+ $this->_pie = array('', '', '');
}
if ($lugar == 'izquierda') {
$this->_pie[0] = $pie;