X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.default.php;h=a932d258b149060ce871d21628f0176dd7b6d320;hb=3f3cfa578adbc2b71f4fd9c8d0f5536d26af43d8;hp=5482361cc907e8b898e550d6eedbc6df98398ccc;hpb=76ca9fef9bb510236a6a7740fa0f60eb7db384c9;p=fa-stable.git diff --git a/config.default.php b/config.default.php index 5482361c..a932d258 100644 --- a/config.default.php +++ b/config.default.php @@ -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; @@ -235,4 +244,23 @@ if (!defined('ICON_EDIT')) define("ICON_CLOSED", "closed.png"); } -?> \ No newline at end of file +/* + 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;