X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.php;h=a28c6c658ba1e8cc9277236241b939c443a92a9a;hb=7a50c189ea995d5fe6785feb7710c00396065d2b;hp=3a86c9409ffbc66e5bd31bb359e0d45488a5ed92;hpb=017a58d6edd0f026da39524464161e99ce0dd9ff;p=fa-stable.git diff --git a/config.php b/config.php index 3a86c940..a28c6c65 100644 --- a/config.php +++ b/config.php @@ -53,10 +53,10 @@ // Main Title $app_title = "FrontAccounting"; // application version - $version = "1.15"; + $version = "2.0 Pre Alpha"; // Build for development purposes - $build_version = "32"; + $build_version = "2"; // Powered by $power_by = "FrontAccounting"; @@ -74,6 +74,9 @@ /* use Audit Trails in GL */ $use_audit_trail = 0; + /* Integrated base Wiki Help URL or null if not used */ + $help_base_url = $path_to_root.'/modules/wiki/index.php?n='._('Help').'.'; + /* allow alpha characters in accounts. 0 = numeric, 1 = alpha numeric, 2 = uppercase alpha numeric */ $accounts_alpha = 0; @@ -87,6 +90,9 @@ /* email stock location if order below reorder-level */ $loc_notification = 0; + /* print_invoice_no. 0 = print reference number, 1 = print invoice number */ + $print_invoice_no = 0; + $dateformats = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD"); $dateseps = array("/", ".", "-", " "); $thoseps = array(",", ".", " "); @@ -159,6 +165,19 @@ array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15) ); + /* + 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") + ); + //MySQL Backup and Restore Settings define("BACKUP_PATH", "/admin/backup/");