- function display() {
- if ($this->getRowCount()) {
- $this->_agregarContenido();
-
- //Agrego los encabezados
- $t = true;
- foreach ($this->_pdf->getPages() as $page) {
- $this->_pdf->_pagina_actual = $page;
- $this->buildPage($t, $t);
- $t = false;
- }
- //}}}
- }
- else {
- $this->_pdf->newPage($this->_tamanio);
- $this->_pdf->addText($this->_config['Xi'],
- $this->_config['contenido']['Y'],
- 'No hay contenido para mostrar.',
- $this->_config['contenido']);
- $this->buildPage();
- }
- $this->_pdf->display();
+ function MECON_PDF_Tabla($TABLA, $orientacion = null, $encabezado = true) {
+ $this->_tabla = $TABLA;
+ $this->_orientacion = $orientacion;
+ $this->_config = include 'MECON/PDF/Tabla/medidas.php';
+ $this->_encabezado = $encabezado;
+ }
+
+ /**
+ * Funcion que agrega el contenido de la tabla que se este utilizando al
+ * PDF.
+ *
+ * @param &Object $MARCO MECON_PDF_Marco
+ *
+ * @return void
+ * @access public
+ */
+ function toPDF(&$MARCO) {
+ $this->_marco =& $MARCO;
+ $this->_agregarContenido();