Example #1
0
 public function __construct(ShoppReportFramework $Report)
 {
     parent::__construct($Report);
     $this->content_type = "text/csv; charset=UTF-8";
     $this->extension = "csv";
     $this->output();
 }
Example #2
0
 public function __construct(ShoppReportFramework $Report)
 {
     parent::__construct($Report);
     $this->content_type = "application/vnd.ms-excel; charset=Windows-1252";
     $this->extension = "xls";
     $this->c = 0;
     $this->r = 0;
     $this->output();
 }