0001806: Date problems fixed and new date formats MmmDDYYYY, DDMmmYYYY and YYYYMmmDD...
[fa-stable.git] / config.default.php
index 1d45c8b3aae8d61b7efcc2cc6f3a608bfda592b3..43c2547c5589ab2972d9a4c218b9fd031db1e428 100644 (file)
@@ -68,6 +68,15 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        $power_by               = "FrontAccounting";
        $power_url              = "http://frontaccounting.com";
 
+       /* Do not print zero lines amount of 0.00 in Sales Documents if service item. 1 = do not */
+       $no_zero_lines_amount = 1;
+
+       /* Use icon for editkey (=true) righ of combobox. 1 = use, 0 = do not use */
+       $use_icon_for_editkey = 0;
+
+       /* Creates automatic a default branch with contact. Value 0 do not create auto branch */
+       $auto_create_branch = 1;
+
        /* Save Report selections (a value > 0 means days to save. 0 = no save) */
        $save_report_selections = 0;
 
@@ -89,6 +98,9 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        /* show users online discretely in the footer */
        $show_users_online = 0;
 
+       /* show item codes on purchase order */
+       $show_po_item_codes = 0;
+
        /* default print destination. 0 = PDF/Printer, 1 = Excel */
        $def_print_destination = 0;
 
@@ -124,7 +136,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        /* suppress tax rates on documents. 0 = no, 1 = yes. */
        $suppress_tax_rates = 0;
        
-       $dateformats    = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD");
+       $dateformats    = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD","MmmDDYYYY", "DDMmmYYYY", "YYYYMmmDD");
        $dateseps               = array("/", ".", "-", " ");
        $thoseps                = array(",", ".", " ");
        $decseps                = array(".", ",");
@@ -132,6 +144,9 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_
        $dflt_date_fmt = 0;
        $dflt_date_sep = 0;
 
+       /* This month array is for use with the last 3 dateformats. */
+       $tmonths = array("", _("Jan"),_("Feb"),_("Mar"),_("Apr"),_("May"),_("Jun"),_("Jul"),_("Aug"),_("Sep"),_("Oct"),_("Nov"),_("Dec"));
+
        $pagesizes              = array("Letter", "A4"); // default PDF pagesize
 
        /* Accounts Payable */
@@ -228,4 +243,32 @@ if (!defined('ICON_EDIT'))
        define("ICON_ESCAPE", "escape.png");    
 }
 
+/* 
+       Display a dropdown select box for choosing Company to login if false.
+       Show a blank editbox only if true where the Company NickName
+       will have to be manually entered. This is when privacy is needed.
+*/
+$text_company_selection  = false;
+
+/*  Should FA hide menu items (Applications, Modules, and Actions) from the user if they don't have access to them? 
+    0 for no       1 for yes
+*/
+
+       $hide_inaccessible_menu_items = 0;
+
+/*
+       Brute force prevention.
+       $login_delay seconds delay is required between login attempts after $login_max_attemps failed logins.
+       Set $login_delay to 0 to disable the feature (not recommended)
+*/
+$login_delay = 30;
+$login_max_attempts = 10;
+
+/*
+       Choose Exchange Rate Provider
+       Default is ECB for backwards compatibility
+*/
+$xr_providers = array("ECB", "YAHOO", "GOOGLE", "BLOOMBERG");
+$dflt_xr_provider = 0;
+
 ?>
\ No newline at end of file