X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.php;h=a28c6c658ba1e8cc9277236241b939c443a92a9a;hb=e3f700d1e11788f176bf02c7b9969780e66dc167;hp=6164128bd660b0402b96513d5dd0a2402e82faf1;hpb=745a8dbbf4385e2a4fc18089a9cc57ca2fe80343;p=fa-stable.git diff --git a/config.php b/config.php index 6164128b..a28c6c65 100644 --- a/config.php +++ b/config.php @@ -53,10 +53,10 @@ // Main Title $app_title = "FrontAccounting"; // application version - $version = "1.14"; + $version = "2.0 Pre Alpha"; // Build for development purposes - $build_version = "79"; + $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; @@ -84,6 +87,12 @@ 2 = Islamic used by other arabic nations */ $date_system = 0; + /* 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(",", ".", " "); @@ -156,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/");