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