Changed license type to GPLv3 in top of files
[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 = 2;     // this level is later overriden in rep file
18 include_once($path_to_root . "/includes/session.inc");
19
20 if (!isset($_POST['REP_ID'])) { // print link clicked
21         $def_pars = array(0, 0, '', '', 0, '', '', 0); //default values
22         $rep = $_POST['REP_ID'] = $_GET['REP_ID'];
23         for($i=0; $i<8; $i++) {
24                 $_POST['PARAM_'.$i] = isset($_GET['PARAM_'.$i]) 
25                         ? $_GET['PARAM_'.$i] : $def_pars[$i];
26         }
27 }
28 $rep = $_POST['REP_ID'];
29 $rep_file = $comp_path.'/'.user_company()."/reporting/rep$rep.php";
30 if (!file_exists($rep_file)) {
31     $rep_file = $path_to_root ."/reporting/rep$rep.php";
32 }
33 require($rep_file);
34 exit();
35
36 ?>