コード例 #1
0
ファイル: Reports.php プロジェクト: msigley/shopp
 public function __construct(ShoppReportFramework $Report)
 {
     parent::__construct($Report);
     $this->content_type = "text/csv; charset=UTF-8";
     $this->extension = "csv";
     $this->output();
 }
コード例 #2
0
ファイル: Reports.php プロジェクト: forthrobot/inuvik
 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();
 }