X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.default.php;h=4948695794a091d13162e520a195052cb52740bf;hb=0c794db98d716ec8823435d8423c98a12bebba66;hp=161fec2537346e8df51a7206a46622fd1c88b4d9;hpb=661dccbdc80ee5c9ef5b8a515e60e60249827869;p=fa-stable.git diff --git a/config.default.php b/config.default.php index 161fec25..49486957 100644 --- a/config.default.php +++ b/config.default.php @@ -136,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(".", ","); @@ -240,4 +240,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