Remove test material from source.
[fa-stable.git] / frontaccounting.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 if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_to_root']))
13         die("Restricted access");
14         include_once($path_to_root . '/applications/application.php');
15         include_once($path_to_root . '/applications/customers.php');
16         include_once($path_to_root . '/applications/suppliers.php');
17         include_once($path_to_root . '/applications/inventory.php');
18         include_once($path_to_root . '/applications/fixed_assets.php');
19         include_once($path_to_root . '/applications/manufacturing.php');
20         include_once($path_to_root . '/applications/dimensions.php');
21         include_once($path_to_root . '/applications/generalledger.php');
22         include_once($path_to_root . '/applications/setup.php');
23         include_once($path_to_root . '/installed_extensions.php');
24
25         class front_accounting
26         {
27                 var $user;
28                 var $settings;
29                 var $applications;
30                 var $selected_application;
31                 var $renderer = null;
32
33                 var $menu;
34
35                 function add_application($app)
36                 {       
37                         if ($app->enabled) // skip inactive modules
38                                 $this->applications[$app->id] = $app;
39                 }
40                 function get_application($id)
41                 {
42                          if (isset($this->applications[$id]))
43                                 return $this->applications[$id];
44                          return null;
45                 }
46                 function get_selected_application()
47                 {
48                         if (isset($this->selected_application))
49                                  return $this->applications[$this->selected_application];
50                         foreach ($this->applications as $application)
51                                 return $application;
52                         return null;
53                 }
54                 function display()
55                 {
56                         global $path_to_root;
57                         
58                         include_once($path_to_root . "/themes/".user_theme()."/renderer.php");
59
60                         $this->init();
61                         $rend = new renderer();
62                         $rend->wa_header();
63
64                         $rend->display_applications($this);
65
66                         $rend->wa_footer();
67                         $this->renderer =& $rend;
68                 }
69                 function init()
70                 {
71                         global $SysPrefs;
72
73                         $this->menu = new menu(_("Main  Menu"));
74                         $this->menu->add_item(_("Main  Menu"), "index.php");
75                         $this->menu->add_item(_("Logout"), "/account/access/logout.php");
76                         $this->applications = array();
77                         $this->add_application(new customers_app());
78                         $this->add_application(new suppliers_app());
79                         $this->add_application(new inventory_app());
80                         if (get_company_pref('use_manufacturing'))
81                                 $this->add_application(new manufacturing_app());
82                         if (get_company_pref('use_fixed_assets'))
83                             $this->add_application(new assets_app());
84                         $this->add_application(new dimensions_app());
85                         $this->add_application(new general_ledger_app());
86
87                         hook_invoke_all('install_tabs', $this);
88
89                         $this->add_application(new setup_app());
90                 }
91         }