* @access protected
*/
var $_marco;
+
+ /**
+ * Orientacion de las nuevas paginas
+ * @var string $orientacion
+ * @access protected
+ */
+ var $_orientacion;
/**
* Class Constructor
*
* @param &Object $TABLA MECON_HTML_Tabla
+ * @param string $orientacion Orientacion que deben tener las nuevas paginas
+ * que genere la tabla.
*
* @return void
* @access public
*/
- function MECON_PDF_Tabla(&$TABLA) {
- $this->_tabla =& $TABLA;
+ function MECON_PDF_Tabla($TABLA, $orientacion = null) {
+ $this->_tabla = $TABLA;
+ $this->_orientacion = $orientacion;
$this->_config = include 'MECON/PDF/Tabla/medidas.php';
}
* @access protected
*/
function _obtenerAnchoColumnas() {
- $ancho_pagina = $this->_marco->getWidth($this->_marco->orientacion);
+ $ancho_pagina = $this->_marco->getWidth($this->_marco->refPage(),
+ $this->_marco->getOrientation());
for ($i=0; $i<$this->_tabla->getColCount(); $i++ ) {
$tmp = $this->_tabla->getCellAttributes(0,$i);
if (is_null(@$tmp['width'])) {
$attr2[$i] = $ancho_pagina;
return $attr2;
}
+ /**
+ * Funcion que se encarga de crear las nuevas paginas.
+ *
+ * @return void
+ * @access protected
+ */
+ function _newPage() {
+ $tmp = ($this->_orientacion) ? $this->_orientacion :
+ $this->_marco->getOrientation();
+ $this->_marco->newPage($this->_marco->tamanio, $tmp);
+ }
/**
* Funcion que agrega las filas y columnas a la pagina.
*/
function _agregarContenido() {
$alto = $this->_marco->espacioDisponible;
- if ($alto <= 0 ) {
- $this->_marco->newPage($this->_marco->tamanio);
+ $orientacion = $this->_marco->getOrientation();
+ if ($alto <= 0 || ($this->_orientacion && $this->_orientacion !=
+ $orientacion) ) {
+ $this->_newPage();
+ $orientacion = $this->_marco->getOrientation();
$alto = $this->_marco->espacioDisponible;
}
if ($alto <= 0)
{
- $this->_marco->newPage($this->_marco->tamanio);
+ $this->_newPage();
$alto = $this->_marco->espacioDisponible;
foreach ($repetir as $ii => $value) {
$estilo = $this->_obtenerEstiloCelda($ii, $jj);
$this->_marco->addRectangle($attr2[$jj], $alto,
$attr2[$jj+1], $alto+$repetir[$ii]['max'],
- @$estilo['fill'], null, $this->_marco->orientacion);
+ @$estilo['fill'], null, $orientacion);
$alto1 = $alto + $repetir[$ii]['max'];
foreach ($repetir[$ii][$jj] as $t) {
$estilo);
$this->_marco->addText($init, $alto1 + 2,
- $t, $estilo, null, $this->_marco->orientacion);
+ $t, $estilo, null, $orientacion);
}
}
}
$this->_marco->addRectangle($attr2[$j], $alto,
$attr2[$j+1], $alto+$max, @$estilo['fill'], null,
- $this->_marco->orientacion);
+ $orientacion);
$alto1 = $alto + $max;
- foreach ($txtt[$j] as $t) {
- $alto1 -= $estilo['alto_linea'];
+ if (@$txtt[$j]) {
+ foreach ($txtt[$j] as $t) {
+ $alto1 -= $estilo['alto_linea'];
- //Ubico el texto segun su alineacion
- $init = $this->_obtenerAlineacionTexto($i, $j, $t, $attr2,
- $estilo);
-
- $this->_marco->addText($init, $alto1 + 2,
- $t, $estilo, null, $this->_marco->orientacion);
+ //Ubico el texto segun su alineacion
+ $init = $this->_obtenerAlineacionTexto($i, $j, $t, $attr2,
+ $estilo);
+
+ $this->_marco->addText($init, $alto1 + 2,
+ $t, $estilo, null, $orientacion);
+ }
}
}
}