Release 2.4.8
[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
32                 var $menu;
33
34                 function add_application($app)
35                 {       
36                         if ($app->enabled) // skip inactive modules
37                                 $this->applications[$app->id] = $app;
38                 }
39                 function get_application($id)
40                 {
41                          if (isset($this->applications[$id]))
42                                 return $this->applications[$id];
43                          return null;
44                 }
45                 function get_selected_application()
46                 {
47                         if (isset($this->selected_application))
48                                  return $this->applications[$this->selected_application];
49                         foreach ($this->applications as $application)
50                                 return $application;
51                         return null;
52                 }
53                 function display()
54                 {
55                         global $path_to_root;
56                         
57                         include_once($path_to_root . "/themes/".user_theme()."/renderer.php");
58
59                         $this->init();
60                         $rend = new renderer();
61                         $rend->wa_header();
62
63                         $rend->display_applications($this);
64
65                         $rend->wa_footer();
66                         $this->renderer =& $rend;
67                 }
68                 function init()
69                 {
70                         global $SysPrefs;
71
72                         $this->menu = new menu(_("Main  Menu"));
73                         $this->menu->add_item(_("Main  Menu"), "index.php");
74                         $this->menu->add_item(_("Logout"), "/account/access/logout.php");
75                         $this->applications = array();
76                         $this->add_application(new customers_app());
77                         $this->add_application(new suppliers_app());
78                         $this->add_application(new inventory_app());
79                         if (get_company_pref('use_manufacturing'))
80                                 $this->add_application(new manufacturing_app());
81                         if (get_company_pref('use_fixed_assets'))
82                             $this->add_application(new assets_app());
83                         $this->add_application(new dimensions_app());
84                         $this->add_application(new general_ledger_app());
85
86                         hook_invoke_all('install_tabs', $this);
87
88                         $this->add_application(new setup_app());
89                 }
90         }