X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.default.php;h=55820f5a583d3808f334541a3213eaeee0215a7e;hb=7ce9ff6a73214a39ff495f04b330563212b43acb;hp=e7a1eaee621e274e422b5a1dd314ec5006662864;hpb=d12d331db1f5e4c6c17e8a44a1bda3f762ff1298;p=fa-stable.git diff --git a/config.default.php b/config.default.php index e7a1eaee..55820f5a 100644 --- a/config.default.php +++ b/config.default.php @@ -11,7 +11,7 @@ ***********************************************************************/ //-------------------------------------------------- - // User configurable variables + // User configurable variables //--------------------------------------------------- /*Show debug messages returned from an error on the page. @@ -20,6 +20,10 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_to_root'])) die("Restricted access"); + + if (!ini_get('date.timezone')) + ini_set('date.timezone', 'Europe/Berlin'); + // Log file for error/warning messages. Should be set to any location // writable by www server. When set to empty string logging is switched off. // Special value 'syslog' can be used for system logger usage (see php manual). @@ -39,7 +43,7 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $select_trail = 0; // track also SELECT queries if ($go_debug > 0) { - error_reporting(E_ALL); + error_reporting(-1); ini_set("display_errors", "On"); } else @@ -64,6 +68,9 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $power_by = "FrontAccounting"; $power_url = "http://frontaccounting.com"; + /* Save Report selections (a value > 0 means days to save. 0 = no save) */ + $save_report_selections = 0; + /* use popup windows for views */ $use_popup_windows = 1; @@ -113,7 +120,10 @@ 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; - + + /* allow reopening closed transactions */ + $allow_gl_reopen = 0; + $dateformats = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD"); $dateseps = array("/", ".", "-", " "); $thoseps = array(",", ".", " "); @@ -139,6 +149,12 @@ if (!isset($path_to_root) || isset($_GET['path_to_root']) || isset($_POST['path_ $config_allocation_settled_allowance = 0.005; + /* Allow negative prices for dummy/service items. To be moved to GL db settings */ + $allow_negative_prices = 1; + + /* Show menu category icons in core themes */ + $show_menu_category_icons = 0; + // Internal configurable variables //----------------------------------------------------------------------------------- @@ -191,25 +207,26 @@ if(isset($_SESSION["wa_current_user"])) { 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"); + 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"); define("ICON_SUBMIT", "ok.gif"); - define("ICON_ESCAPE", "escape.png"); + define("ICON_ESCAPE", "escape.png"); + define("ICON_CLOSED", "closed.png"); } ?> \ No newline at end of file