示例#1
0
文件: View.php 项目: rtsantos/mais
 /**
  * Gera o relatório
  * 
  * @param string $dest
  * @return string 
  */
 public function show($dest = 'S')
 {
     $this->_make();
     return $this->_report->output('relatorio', $dest);
 }
示例#2
0
文件: Html.php 项目: rtsantos/mais
 /**
  * @param string $title
  * @return ZendT_Report_Pdf
  */
 public function setTitle($title)
 {
     $this->_title['value'] = $title;
     parent::setTitle($this->_title);
     return $this;
 }
示例#3
0
文件: Pdf.php 项目: rtsantos/mais
 /**
  * @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;
 }