Merging latest changes from stable branch up to 2.3.24
[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
24         class front_accounting
25                 {
26                 var $user;
27                 var $settings;
28                 var $applications;
29                 var $selected_application;
30
31                 var $menu;
32
33                 function front_accounting()
34                 {
35                 }
36                 function add_application(&$app)
37                                 {       
38                                         if ($app->enabled) // skip inactive modules
39                                                 $this->applications[$app->id] = &$app;
40                                 }
41                 function get_application($id)
42                                 {
43                                  if (isset($this->applications[$id]))
44                                         return $this->applications[$id];
45                                  return null;
46                                 }
47                 function get_selected_application()
48                 {
49                         if (isset($this->selected_application))
50                                  return $this->applications[$this->selected_application];
51                         foreach ($this->applications as $application)
52                                 return $application;
53                         return null;
54                 }
55                 function display()
56                 {
57                         global $path_to_root;
58                         
59                         include_once($path_to_root . "/themes/".user_theme()."/renderer.php");
60
61                         $this->init();
62                         $rend = new renderer();
63                         $rend->wa_header();
64
65                         $rend->display_applications($this);
66
67                         $rend->wa_footer();
68                         $this->renderer =& $rend;
69                 }
70                 function init()
71                 {
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                         $this->add_application(new manufacturing_app());
81                         $this->add_application(new dimensions_app());
82                         $this->add_application(new general_ledger_app());
83
84                         hook_invoke_all('install_tabs', $this);
85
86                         $this->add_application(new setup_app());
87                 }
88 }