X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=config.php;h=a28c6c658ba1e8cc9277236241b939c443a92a9a;hb=e3f700d1e11788f176bf02c7b9969780e66dc167;hp=67683efcf13b19061c307caa4f3c4d8343ed42f1;hpb=eb173e05459027cfae901e4ac3759ec0a7bc72e0;p=fa-stable.git diff --git a/config.php b/config.php index 67683efc..a28c6c65 100644 --- a/config.php +++ b/config.php @@ -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; @@ -162,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/");