Fixed for better extension modules support.
[fa-stable.git] / reporting / prn_redirect.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 /*
13         Print request redirector. This file is fired via print link or 
14         print button in reporting module. 
15 */
16 $path_to_root = "..";
17 $page_security = 'SA_OPEN';     // this level is later overriden in rep file
18 include_once($path_to_root . "/includes/session.inc");
19
20 if (isset($_GET['xls']))
21 {
22         $filename = $_GET['filename'];
23         $unique_name = $_GET['unique'];
24         $path =  company_path(). '/pdf_files/';
25         header("Content-type: application/vnd.ms-excel");
26         header("Content-Disposition: attachment; filename=$filename" );
27         header("Expires: 0");
28         header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
29         header("Pragma: public");
30         echo file_get_contents($path.$unique_name);
31         exit();
32 }
33 elseif (isset($_GET['xml']))
34 {
35         $filename = $_GET['filename'];
36         $unique_name = $_GET['unique'];
37         $path =  company_path(). '/pdf_files/';
38         header("content-type: text/xml");
39         header("Content-Disposition: attachment; filename=$filename");
40         header("Expires: 0");
41         header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
42         header("Pragma: public");
43         echo file_get_contents($path.$unique_name);
44         exit();
45 }
46         
47 if (!isset($_POST['REP_ID'])) { // print link clicked
48         $def_pars = array(0, 0, '', '', 0, '', '', 0); //default values
49         $rep = $_POST['REP_ID'] = $_GET['REP_ID'];
50         for($i=0; $i<8; $i++) {
51                 $_POST['PARAM_'.$i] = isset($_GET['PARAM_'.$i]) 
52                         ? $_GET['PARAM_'.$i] : $def_pars[$i];
53         }
54 }
55
56 $rep = $_POST['REP_ID'];
57
58 $rep_file = find_custom_file("/reporting/rep$rep.php");
59
60 if ($rep_file) {
61         chdir(dirname($rep_file));
62         require(basename($rep_file));
63 } else
64         display_error("Cannot find report file '$rep'");
65 exit();
66
67 ?>