Ejemplo n.º 1
0
 /** Constructor uses parent class
  *
  */
 public function __construct()
 {
     parent::__construct();
 }
Ejemplo n.º 2
0
 /** The Norfolk exporter
  * @access public
  * @return void
  */
 public function pdfAction()
 {
     $exporter = new Pas_Exporter_Generate();
     $exporter->setFormat('pdf');
     $this->view->filename = 'PDFRecordsExport_For_' . $this->getUsername() . '_' . Zend_Date::now()->toString('yyyyMMddHHmmss') . '.pdf';
     $this->view->data = $exporter->execute();
 }