Code cleanup.
[fa-stable.git] / config.php
index 32d339291df4475da6748c786307316a25133ca4..331a29314d88149be2de0b2b4b1065d95eb409c0 100644 (file)
@@ -23,7 +23,8 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
 
        $debug                  = 1;
        $show_sql               = 0;
-       $go_debug               = 0;
+       $go_debug               = 1;
+       $pdf_debug              = 0;
        if ($go_debug == 1)
        {
                error_reporting(E_ALL);
@@ -31,16 +32,17 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        }
        else
        {
+               error_reporting(E_USER_WARNING|E_USER_ERROR|E_USER_NOTICE);
                // ini_alter("error_reporting","E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR|E_PARSE");
-               ini_set("display_errors", "Off");
+               ini_set("display_errors", "On");
        }
        // Main Title
        $app_title = "FrontAccounting";
        // application version
-       $version                = "2.0 Beta";
+       $version                = "2.1.0 CVS";
 
        // Build for development purposes
-       $build_version  = "22";
+       $build_version  = date("d.m.Y", filemtime("$path_to_root/CHANGELOG.txt"));
 
        // Powered by
        $power_by               = "FrontAccounting";
@@ -56,7 +58,8 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        $use_audit_trail = 0;
 
        /* Integrated base Wiki Help URL or null if not used */
-       $help_base_url = $path_to_root.'/modules/wiki/index.php?n='._('Help').'.';
+       //$help_base_url = $path_to_root.'/modules/wiki/index.php?n='._('Help').'.';
+       $help_base_url = null;
 
        /* per user data/cache directory */
        $comp_path = $path_to_root.'/company';
@@ -124,13 +127,17 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        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.
        Each page has a $page_security = x; variable
        This value is compared to contents of the array applicable which is based on the access level of the user.
-       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
-       and a new array of Security categories to the Security Groups array
+       Access authorisation is checked in session.inc. If you wish to add more security groups
+       with then you must add a new SecurityHeading to the security_headings array
+       and a new array of Security categories to the Security Groups _at_the_end_ of the array
        This mechanism allows more fine grained control of access
        security_groups is an array of arrays
        The index is the order in which the array of allowed pages is defined new ones can be defined at will
        or by changing the numbers in each array the security access can be tailored. These numbers need to read
        in conjunction with the Page Security index
+       Special case is security level 20 which is reserved for admins of first
+       registered company (site admins). All potentially dangerous for whole FA
+       site operations like installing addon modules require access level 20.
        */
 
        $security_headings = array(
@@ -142,20 +149,20 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        $security_groups = array(
                        array(1,2),
                        array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,16),
-                       array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16),
+                       array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,20),
        );
 
        /*
        System tabs. This variable should be in future included from separate file for extended module manager
        */
        $applications = array (
-               'orders' => _("Sales"),
-               'AP'=>_("Purchases"),
-               'stock'=> _("Items and Inventory"),
-               'manuf'=> _("Manufacturing"),
-               'proj'=>_("Dimensions"),
-               'GL'=>_("Banking and General Ledger"),
-               'system'=>_("Setup")
+               'orders' => _("&Sales"),
+               'AP'=>_("&Purchases"),
+               'stock'=> _("&Items and Inventory"),
+               'manuf'=> _("&Manufacturing"),
+               'proj'=>_("&Dimensions"),
+               'GL'=>_("&Banking and General Ledger"),
+               'system'=>_("S&etup")
        );
        /* default start-up tab (orders/AP/stock/manuf/proj/GL/system) */
        $def_app = "orders";
@@ -169,7 +176,7 @@ if(isset($_SESSION["wa_current_user"])) {
        // static js files path
        $js_path = $path_to_root.'/js/';
        // standard external js scripts included in all files
-       $js_static = array('behaviour.js');
+       $js_static = array('JsHttpRequest.js', 'behaviour.js', 'utils.js', 'inserts.js');
        // additional js source included in header
        $js_lib = $js_userlib = array();