The selected menu tab is now shown with same background as hover color.
[fa-stable.git] / config.php
1 <?php
2         /*--------------------------------------------------\
3         |               |               | config.php                    |
4         |---------------------------------------------------|
5     | FrontAccounting                                                                   |
6     | http://frontaccounting.com/                                               |
7     | by FrontAccounting                                        |
8         |---------------------------------------------------|
9         |                                                   |
10         \--------------------------------------------------*/
11
12 /*
13         // Make sure this directory exists and is writable!
14     $session_save_path = dirname(__FILE__).'/tmp/';
15
16 */
17         $session_save_path = session_save_path();
18         if (strpos($session_save_path, ";") !== false)
19                 $session_save_path = substr($session_save_path, strpos($session_save_path, ";") + 1);
20
21         if (isset($session_save_path))
22         {
23                 session_save_path($session_save_path);
24                 unset($session_save_path);
25     }
26
27     include_once($path_to_root . "/config_db.php");
28     include_once($path_to_root . "/includes/lang/language.php");
29
30         //--------------------------------------------------
31
32         // User configurable variables
33     //---------------------------------------------------
34
35     /*Show debug messages returned from an error on the page.
36     Debugging info level also determined by settings in PHP.ini
37     if $debug=1 show debugging info, dont show if $debug=0 */
38     
39     $debug                      = 1;
40         $show_sql               = 0;
41         $go_debug               = 0;
42         if ($go_debug == 1)
43         {
44                 error_reporting(E_ALL);
45                 ini_set("display_errors", "On");
46         }       
47         else
48         {
49                 // ini_alter("error_reporting","E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR|E_PARSE");                 
50                 ini_set("display_errors", "Off");
51         }       
52         // Main Title
53         $app_title = "FrontAccounting";
54     // application version
55     $version            = "1.0.1";
56
57     // Build for development purposes
58     $build_version      = "15";
59
60         // Powered by
61         $power_by               = "FrontAccounting";
62         $power_url              = "http://frontaccounting.com";
63
64         /* use popup windows for views */
65         $use_popup_windows = 1;
66
67     /*Stock units array*/
68         $stock_units    = array(_("ea."), _("m"), _("kgg"), _("tons"), _("l"), _("lbs"), _("dozen"), _("pack"), _("hrs"));
69
70         /* use date picker for all date fields */
71         $use_date_picker = 1;
72
73         /* use Audit Trails in GL */
74         $use_audit_trail = 0;
75
76         /* default start-up tab (orders/AP/stock/manuf/proj/GL/system) */
77         $def_app = "orders";
78
79         $dateformats    = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD");
80         $dateseps               = array("/", ".", "-", " ");
81         $thoseps                = array(",", ".", " ");
82         $decseps                = array(".", ",");
83     // CSS theme
84     $themes             = array("default","aqua","cool");
85     $pagesizes          = array("Letter", "A4"); // default PDF pagesize
86
87         /* Default border and spacing for tables */
88     /* Should be moved to CSS */
89     
90     $table_style        = "cellpadding=3 border=1 bordercolor='#8cacbb' style='border-collapse: collapse'";
91     $table_style2       = "cellpadding=3 border=1 bordercolor='#cccccc' style='border-collapse: collapse'";
92
93     /* Accounts Payable */
94     /* System check to see if quantity charged on purchase invoices exceeds the quantity received.
95         If this parameter is checked the proportion by which the purchase invoice is an overcharge
96         referred to before reporting an error */
97
98         $check_qty_charged_vs_del_qty = true;
99
100     /* System check to see if price charged on purchase invoices exceeds the purchase order price.
101     If this parameter is checked the proportion by which the purchase invoice is an overcharge
102     referred to before reporting an error */
103     
104     $check_price_charged_vs_order_price = True;
105
106         $config_allocation_settled_allowance = 0.005;
107
108     // Internal configurable variables
109     //-----------------------------------------------------------------------------------
110
111     /* Whether to display the demo login and password or not */
112     
113     $allow_demo_mode = false;
114     
115     /* for uploaded item pictures */
116     $pic_width          = 80;
117     $pic_height         = 50;
118         $max_image_size = 500;
119
120     /* skin for Business Graphics, 1, 2 or 3 */
121         $graph_skin     = 1;
122         
123     /*Security Group definitions - Depending on the AccessLevel of the user defined in the user set up
124     the areas of functionality accessible can be modified.
125     Each AccessLevel is associated with an array containing the security categories that the user is entitled to access
126     Each script has a particular security category associated with it.
127     If the security setting of the page is contained in the security group as determined by the access level then the user will be allowed access.
128     Each page has a $page_security = x; variable
129     This value is compared to contents of the array applicable which is based on the access level of the user.
130     Access authorisation is checked in header.inc this is where _SESSION["AccessLevel"] is the index of the security_groups array. If you wish to add more security groups with then you must add a new SecurityHeading to the security_headings array
131     and a new array of Security categories to the Security Groups array
132     This mechanism allows more fine grained control of access
133     security_groups is an array of arrays
134     The index is the order in which the array of allowed pages is defined new ones can be defined at will
135     or by changing the numbers in each array the security access can be tailored. These numbers need to read
136     in conjunction with the Page Security index
137     */
138
139     $security_headings = array(
140                 _("Inquiries"),
141                 _("Accountant"),
142                 _("System Administrator")
143     );
144
145     $security_groups = array(
146                 array(1,2),
147                 array(1,2,3,4,5,6,7,8,9,10,11,12,13,14),
148                 array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15)
149     );
150         
151         //MySQL Backup and Restore Settings
152     
153     define("BACKUP_PATH", "/admin/backup/");
154
155 ?>