summaryrefslogtreecommitdiffstats
path: root/library/SSRS/Object/ReportOutput.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/SSRS/Object/ReportOutput.php')
-rwxr-xr-xlibrary/SSRS/Object/ReportOutput.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/library/SSRS/Object/ReportOutput.php b/library/SSRS/Object/ReportOutput.php
new file mode 100755
index 0000000..81f8598
--- /dev/null
+++ b/library/SSRS/Object/ReportOutput.php
@@ -0,0 +1,25 @@
+<?php
+
+/**
+ * Description of ExecutionParameters
+ *
+ * @author andrew
+ */
+class SSRS_Object_ReportOutput extends SSRS_Object_Abstract {
+
+ public function download($filename){
+ header("Cache-Control: public");
+ header("Content-Description: File Transfer");
+ header("Content-Disposition: attachment; filename=$filename");
+ header("Content-Type: " . $this->mimeType);
+ header("Content-Transfer-Encoding: binary");
+ header("Content-Length: " . strlen($this->Result));
+
+ die($this->Result);
+ }
+
+ public function __toString(){
+ return $this->Result;
+ }
+
+}