Removed redundant form_types functions and the file /reporting/includes/form_types...
[fa-stable.git] / config.php
index 3a86c9409ffbc66e5bd31bb359e0d45488a5ed92..a28c6c658ba1e8cc9277236241b939c443a92a9a 100644 (file)
        // 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(",", ".", " ");
                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/");