X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=applications%2Fsetup.php;h=31e4a34751723f072977395dd9aaff232bde020e;hb=16ba695b81cd7283faa18372a74670415b562eb5;hp=e8b3403172da82056af0eafc63ac397dafad14f4;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/applications/setup.php b/applications/setup.php index e8b34031..31e4a347 100644 --- a/applications/setup.php +++ b/applications/setup.php @@ -1,33 +1,49 @@ application("system",_("Setup")); $this->add_module(_("Company Setup")); - $this->add_lapp_function(0, _("Company Setup"),"admin/company_preferences.php?"); - $this->add_lapp_function(0, _("User Accounts Setup"),"admin/users.php?", 15); + $this->add_lapp_function(0, _("&Company Setup"),"admin/company_preferences.php?"); + $this->add_lapp_function(0, _("&User Accounts Setup"),"admin/users.php?", 15); $this->add_lapp_function(0, "",""); - $this->add_lapp_function(0, _("Display Setup"),"admin/display_prefs.php?"); - $this->add_lapp_function(0, _("Forms Setup"),"admin/forms_setup.php?"); - $this->add_rapp_function(0, _("Taxes"),"taxes/tax_types.php?"); - $this->add_rapp_function(0, _("Tax Groups"),"taxes/tax_groups.php?"); + $this->add_lapp_function(0, _("&Display Setup"),"admin/display_prefs.php?"); + $this->add_lapp_function(0, _("&Forms Setup"),"admin/forms_setup.php?"); + $this->add_rapp_function(0, _("&Taxes"),"taxes/tax_types.php?"); + $this->add_rapp_function(0, _("Tax &Groups"),"taxes/tax_groups.php?"); $this->add_rapp_function(0, "",""); - $this->add_rapp_function(0, _("System and General GL Setup"),"admin/gl_setup.php?"); - $this->add_rapp_function(0, _("Fiscal Years"),"admin/fiscalyears.php?"); + $this->add_rapp_function(0, _("System and &General GL Setup"),"admin/gl_setup.php?"); + $this->add_rapp_function(0, _("&Fiscal Years"),"admin/fiscalyears.php?"); + $this->add_rapp_function(0, _("&Print Profiles"),"admin/print_profiles.php?"); $this->add_module(_("Miscellaneous")); - $this->add_lapp_function(1, _("Payment Terms"),"admin/payment_terms.php?"); - $this->add_lapp_function(1, _("Shipping Company"),"admin/shipping_companies.php?"); + $this->add_lapp_function(1, _("Pa&yment Terms"),"admin/payment_terms.php?"); + $this->add_lapp_function(1, _("Shi&pping Company"),"admin/shipping_companies.php?"); + $this->add_rapp_function(1, _("&Points of Sale"),"sales/manage/sales_points.php?"); + $this->add_rapp_function(1, _("&Printers"),"admin/printers.php?"); $this->add_module(_("Maintanance")); - $this->add_lapp_function(2, _("Void a Transaction"),"admin/void_transaction.php?"); - $this->add_lapp_function(2, _("View or Print Transactions"),"admin/view_print_transaction.php?"); - $this->add_rapp_function(2, _("Backup and Restore"),"admin/backups.php?", 15); - $this->add_rapp_function(2, _("Create/Update Companies"),"admin/create_coy.php?", 14); - $this->add_rapp_function(2, _("Install/Update Languages"),"admin/inst_lang.php?", 14); + $this->add_lapp_function(2, _("&Void a Transaction"),"admin/void_transaction.php?"); + $this->add_lapp_function(2, _("View or &Print Transactions"),"admin/view_print_transaction.php?"); + $this->add_lapp_function(2, _("Attach Documents"),"admin/attachments.php?filterType=20"); + $this->add_rapp_function(2, _("&Backup and Restore"),"admin/backups.php?", 15); + $this->add_rapp_function(2, _("Create/Update &Companies"),"admin/create_coy.php?", 14); + $this->add_rapp_function(2, _("Install/Update &Languages"),"admin/inst_lang.php?", 14); + $this->add_rapp_function(2, _("Install/Update &Modules"),"admin/inst_module.php?", 15); + $this->add_rapp_function(2, _("Software &Upgrade"),"admin/inst_upgrade.php?", 15); + if (count($installed_modules) > 0) + { + foreach ($installed_modules as $mod) + { + if ($mod["tab"] == "system") + $this->add_rapp_function(2, $mod["name"], "modules/".$mod["path"]."/".$mod["filename"]."?"); + } + } } }