Ejemplo n.º 1
0
 /**
  * Gera o relatório
  * 
  * @param string $dest
  * @return string 
  */
 public function show($dest = 'S')
 {
     $this->_make();
     return $this->_report->output('relatorio', $dest);
 }
Ejemplo n.º 2
0
 /**
  * @param string $title
  * @return ZendT_Report_Pdf
  */
 public function setTitle($title)
 {
     $this->_title['value'] = $title;
     parent::setTitle($this->_title);
     return $this;
 }
Ejemplo n.º 3
0
 /**
  * @param string $title
  * @return ZendT_Report_Pdf
  */
 public function setTitle($title)
 {
     $this->_title['value'] = utf8_decode($title);
     parent::setTitle($this->_title);
     $this->_driver->setTitulo($this->_title);
     return $this;
 }