コード例 #1
0
ファイル: Customer.php プロジェクト: robbiespire/paQui
	function CustomersXLSExport () {
		parent::CustomersExport();
		$this->content_type = "application/vnd.ms-excel";
		$this->extension = "xls";
		$this->c = 0; $this->r = 0;
		$this->output();
	}
コード例 #2
0
 public function __construct()
 {
     parent::__construct();
     $this->content_type = "application/vnd.ms-excel";
     $this->extension = "xls";
     $this->c = 0;
     $this->r = 0;
     $this->output();
 }
コード例 #3
0
ファイル: Customer.php プロジェクト: msigley/shopp
 public function __construct()
 {
     parent::__construct();
     $this->content_type = "text/csv";
     $this->extension = "csv";
     $this->output();
 }