Eliminated non-static method calls and other bulk fixes to fix php5 warnings
[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/manufacturing.php');
19         include_once($path_to_root . '/applications/dimensions.php');
20         include_once($path_to_root . '/applications/generalledger.php');
21         include_once($path_to_root . '/applications/setup.php');
22         include_once($path_to_root . '/installed_extensions.php');
23         if (count($installed_extensions) > 0)
24         {
25                 foreach ($installed_extensions as $ext)
26                 {
27                         include_once($path_to_root."/".$ext['folder']."/".$ext['app_file']);
28                 }
29         }       
30
31         include_once($path_to_root . '/modules/installed_modules.php');
32
33         class front_accounting
34                 {
35                 var $user;
36                 var $settings;
37                 var $applications;
38                 var $selected_application;
39                 // GUI
40                 var $menu;
41                 //var $renderer;
42                 function front_accounting()
43                 {
44                         //$this->renderer =& new renderer();
45                 }
46                 function add_application(&$app)
47                                 {       
48                                         if ($app->enabled) // skip inactive modules
49                                                 $this->applications[$app->id] = &$app;
50                                 }
51                 function get_application($id)
52                                 {
53                                  if (isset($this->applications[$id]))
54                                         return $this->applications[$id];
55                                  return null;
56                                 }
57                 function get_selected_application()
58                 {
59                         if (isset($this->selected_application))
60                                  return $this->applications[$this->selected_application];
61                         foreach ($this->applications as $application)
62                                 return $application;
63                         return null;
64                 }
65                 function display()
66                 {
67                         global $path_to_root;
68                         include($path_to_root . "/themes/".user_theme()."/renderer.php");
69                         $this->init();
70                         $rend = new renderer();
71                         $rend->wa_header();
72                         //$rend->menu_header($this->menu);
73                         $rend->display_applications($this);
74                         //$rend->menu_footer($this->menu);
75                         $rend->wa_footer();
76                 }
77                 function init()
78                 {
79                         global $installed_extensions, $path_to_root;
80                         $this->menu = new menu(_("Main  Menu"));
81                         $this->menu->add_item(_("Main  Menu"), "index.php");
82                         $this->menu->add_item(_("Logout"), "/account/access/logout.php");
83                         $this->applications = array();
84                         $this->add_application(new customers_app());
85                         $this->add_application(new suppliers_app());
86                         $this->add_application(new inventory_app());
87                         $this->add_application(new manufacturing_app());
88                         $this->add_application(new dimensions_app());
89                         $this->add_application(new general_ledger_app());
90                         if (count($installed_extensions) > 0)
91                         {
92                                 foreach ($installed_extensions as $ext)
93                                 {
94                                         $_SESSION['get_text']->add_domain($_SESSION['language']->code, 
95                                                 $ext['folder']."/lang");
96                                         $class = $ext['name']."_app";
97                                         $this->add_application(new $class());
98                                         $_SESSION['get_text']->add_domain($_SESSION['language']->code, 
99                                                 $path_to_root."/lang");
100                                 }
101                         }       
102                         
103                         $this->add_application(new setup_app());
104                         }
105 }
106 ?>