Application startup code cleaup.
[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         include_once($path_to_root . '/applications/application.php');
13         include_once($path_to_root . '/applications/customers.php');
14         include_once($path_to_root . '/applications/suppliers.php');
15         include_once($path_to_root . '/applications/inventory.php');
16         include_once($path_to_root . '/applications/manufacturing.php');
17         include_once($path_to_root . '/applications/dimensions.php');
18         include_once($path_to_root . '/applications/generalledger.php');
19         include_once($path_to_root . '/applications/setup.php');
20         include_once($path_to_root . '/installed_extensions.php');
21         include_once($path_to_root . '/modules/installed_modules.php');
22
23         class front_accounting
24                 {
25                 var $user;
26                 var $settings;
27                 var $applications;
28                 var $selected_application;
29                 // GUI
30                 var $menu;
31                 //var $renderer;
32                 function front_accounting()
33                 {
34                         //$this->renderer =& new renderer();
35                 }
36                 function add_application($app)
37                                 {
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                         include($path_to_root . "/themes/".user_theme()."/renderer.php");
58                         $this->init();
59                         $rend = new renderer();
60                         $rend->wa_header();
61                         //$rend->menu_header($this->menu);
62                         $rend->display_applications($this);
63                         //$rend->menu_footer($this->menu);
64                         $rend->wa_footer();
65                 }
66                 function init()
67                 {
68                         global $installed_extensions, $applications, $path_to_root;
69                         $this->menu = new menu(_("Main  Menu"));
70                         $this->menu->add_item(_("Main  Menu"), "index.php");
71                         $this->menu->add_item(_("Logout"), "/account/access/logout.php");
72                         $this->applications = array();
73                         $this->add_application(new customers_app());
74                         $this->add_application(new suppliers_app());
75                         $this->add_application(new inventory_app());
76                         $this->add_application(new manufacturing_app());
77                         $this->add_application(new dimensions_app());
78                         $this->add_application(new general_ledger_app());
79                         if (count($installed_extensions) > 0)
80                         {
81                                 foreach ($installed_extensions as $ext)
82                                 {
83                                         get_text::add_domain($_SESSION['language']->code, 
84                                                 $ext['folder']."/lang");
85                                         include_once($ext['folder']."/".$ext['app_file']);
86                                         $class = $ext['name']."_app";
87                                         $this->add_application(new $class());
88                                         get_text::add_domain($_SESSION['language']->code, 
89                                                 $path_to_root."/lang");
90                                 }
91                         }       
92                         
93                         $this->add_application(new setup_app());
94                         }
95 }
96 ?>