null)
{
parent::newPage($pagina, $orientacion);
+ $this->_resetConf();
if ($encabezado) {
$this->espacioDisponible = $this->_config['encabezado']['Yi'] - 27;
if ($this->countPages() === 1) {
}
}
if (!is_null($seccion)) {
- $this->excepciones[$this->countPages()]['seccion'] = $seccion;
+ $this->_excepciones[$this->numPage()]['seccion'] = $seccion;
}
if (!is_null($subseccion)) {
- $this->excepciones[$this->countPages()]['subseccion'] = $subseccion;
+ $this->_excepciones[$this->numPage()]['subseccion'] = $subseccion;
}
}
else {
$this->espacioDisponible = $this->_config['encabezado']['Yf'];
- $this->excepciones[$this->countPages()]['nova'] = true;
+ $this->_excepciones[$this->countPages()]['nova'] = true;
}
}
* @access public
*/
function toPDF() {
-// $this->newPage($this->tamanio);
$this->_buildContent();
if ($this->getPages()) {
$t = true;
function addContent($contenido, $separador = true) {
//Me aseguro de poner el separador siempre y cuando no sea el primer
//objeto de la primer pagina.
- if ($separador && $this->getPages()) {
+ if ($separador && $this->_contenido) {
$this->_contenido[] = $this->_separador_defecto;
}
$this->_contenido[] = $contenido;