X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.php;h=f529ded4a18dc54ee772de1f2f2afdbb81ace87e;hb=b7cff6f009c5beabffea487347ed87e5f058526c;hp=7a534758610004d09341ed4d9cbd68feae656c65;hpb=8b61e03972cd47ee43fe173dc45a305c6f3e053e;p=fa-stable.git diff --git a/config.php b/config.php index 7a534758..f529ded4 100644 --- a/config.php +++ b/config.php @@ -1,15 +1,15 @@ . +***********************************************************************/ + //-------------------------------------------------- // User configurable variables //--------------------------------------------------- @@ -24,6 +24,14 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $debug = 1; $show_sql = 0; $go_debug = 0; + $pdf_debug = 0; + // set $sql_trail to 1 only if you want to perform bugtracking sql trail + // Warning: this produces huge amount of data in sql_trail table. + // Don't forget switch the option off and flush the table manually after + // trail, or your future backup files are overloaded with unneeded data. + // + $sql_trail = 0; // save all sql queries in sql_trail + $select_trail = 0; // track also SELECT queries if ($go_debug == 1) { error_reporting(E_ALL); @@ -38,10 +46,10 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ // Main Title $app_title = "FrontAccounting"; // application version - $version = "2.0 Release Candidate 1"; + $version = "2.1.0 beta"; // Build for development purposes - $build_version = "145"; + $build_version = date("d.m.Y", filemtime("$path_to_root/CHANGELOG.txt")); // Powered by $power_by = "FrontAccounting"; @@ -126,13 +134,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( @@ -144,20 +156,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"; @@ -175,4 +187,24 @@ if(isset($_SESSION["wa_current_user"])) { // additional js source included in header $js_lib = $js_userlib = array(); +if (!defined('ICON_EDIT')) +{ + define("ICON_EDIT", "edit.gif"); + define("ICON_DELETE", "delete.gif"); + define("ICON_ADD", "ok.gif"); + define("ICON_UPDATE", "ok.gif"); + define("ICON_OK", "ok.gif"); + define("ICON_CANCEL", "cancel.png"); + define("ICON_GL", "gl.png"); + define("ICON_PRINT", "print.png"); + define("ICON_PDF", "pdf.gif"); + define("ICON_DOC", "invoice.gif"); + define("ICON_CREDIT", "credit.gif"); + define("ICON_RECEIVE", "receive.gif"); + define("ICON_DOWN", "download.gif"); + define("ICON_MONEY", "money.png"); + define("ICON_REMOVE", "remove.png"); + define("ICON_REPORT", "report.png"); + define("ICON_VIEW", "view.gif"); +} ?> \ No newline at end of file